/* ============================================
   WINGO SHELL - PROFESSIONAL STYLESHEET
   ============================================ */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #00ff41;
  font-family: 'JetBrains Mono', monospace;
  overflow-x: hidden;
}

/* Global Glow Effects */
.glow-text {
  text-shadow: 0 0 5px #00ff41, 0 0 10px #00ff41;
}

.glow-box {
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.glow-button {
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
  transition: all 0.3s ease;
}

.glow-button:active {
  transform: scale(0.95);
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
}

/* Custom Scrollbar for Hacker Theme */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #00ff41;
  border-radius: 10px;
}

/* Scanline Animation */
@keyframes scan {
  0% {
    top: -10%;
  }

  100% {
    top: 110%;
  }
}

.scanline {
  width: 100%;
  height: 2px;
  background: rgba(0, 255, 65, 0.1);
  position: fixed;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  animation: scan 4s linear infinite;
}

/* Mobile Container */
#root {
  display: flex;
  justify-content: center;
  background-color: #050505;
  min-height: 100vh;
}

.mobile-container {
  width: 100%;
  max-width: 420px;
  min-height: 100vh;
  background-color: #000;
  position: relative;
  border-left: 1px solid rgba(0, 255, 65, 0.1);
  border-right: 1px solid rgba(0, 255, 65, 0.1);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-bottom: 128px;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background-color: #000;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 64px;
  height: 64px;
  border: 4px solid #00ff41;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loading-text {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-subtext {
  font-size: 10px;
  margin-top: 8px;
  opacity: 0.5;
  font-family: 'JetBrains Mono', monospace;
}

/* ============================================
   CONTENT VISIBILITY
   ============================================ */
.content {
  display: none;
  position: relative;
  z-index: 10;
  flex-direction: column;
  width: 100%;
}

.content.show {
  display: flex;
}

/* ============================================
   MATRIX BACKGROUND
   ============================================ */
#matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 420px;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 65, 0.3);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-box {
  width: 32px;
  height: 32px;
  border: 1px solid #00ff41;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@keyframes pulse-bg {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }
}

.logo-box-inner {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 255, 65, 0.2);
  animation: pulse-bg 2s ease-in-out infinite;
}

.logo-text {
  font-size: 12px;
  font-weight: bold;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  z-index: 1;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-tagline {
  font-size: 8px;
  color: #00ff41;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Menu Button */
.menu-button {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-line {
  width: 24px;
  height: 2px;
  background-color: #00ff41;
  transition: all 0.3s ease;
}

.menu-button.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.menu-button.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-button.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Drawer */
.mobile-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(0, 255, 65, 0.3);
  display: none;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
}

.mobile-drawer.open {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-drawer a {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #00ff41;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-drawer a:hover {
  color: #fff;
}

.drawer-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(0, 255, 65, 0.3);
}

.status-text {
  font-size: 10px;
  color: #166534;
  font-style: italic;
}

.status-value {
  color: #22c55e;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
  gap: 48px;
  margin-top: 80px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-top: 32px;
}

.badge-wrapper {
  position: relative;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.badge-glow {
  position: absolute;
  inset: -4px;
  background-color: rgba(0, 255, 65, 0.2);
  border-radius: 8px;
  filter: blur(8px);
  opacity: 0.5;
  transition: opacity 1s ease;
}

.badge-wrapper:hover .badge-glow {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.badge {
  position: relative;
  background-color: #000;
  border: 1px solid rgba(0, 255, 65, 0.3);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.badge-text {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.3em;
  color: #00ff41;
  text-transform: uppercase;
  font-style: italic;
}

.hero-title {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.hero-highlight {
  color: #000;
  background-color: #00ff41;
  padding: 0 8px;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.hero-desc {
  font-size: 12px;
  color: rgba(0, 255, 65, 0.7);
  font-family: 'JetBrains Mono', monospace;
  max-width: 280px;
}

/* Stats */
.stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 20px;
  font-weight: bold;
}

.stat-label {
  font-size: 8px;
  opacity: 0.6;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: #166534;
}

.separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 255, 65, 0.5), transparent);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes ping {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.ping-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff41;
  border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

.feature-card {
  position: relative;
}

.feature-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #00ff41;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-highlight {
  width: 100%;
}

.feature-content {
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 10;
  transition: border-color 0.3s ease;
}

.feature-card:hover .feature-content {
  border-color: rgba(0, 255, 65, 0.6);
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-title {
  color: #00ff41;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: -0.05em;
}

.feature-icon {
  font-size: 18px;
}

.feature-desc {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(0, 255, 65, 0.8);
}

.feature-status {
  font-size: 9px;
  color: #166534;
  font-family: 'JetBrains Mono', monospace;
  text-align: right;
}

/* ============================================
   TERMINAL OUTPUT
   ============================================ */
.terminal {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 65, 0.4);
  border-radius: 4px;
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #166534;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red {
  background-color: rgba(239, 68, 68, 0.5);
}

.dot-yellow {
  background-color: rgba(234, 179, 8, 0.5);
}

.dot-green {
  background-color: rgba(0, 255, 65, 0.5);
}

.terminal-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #166534;
}

.terminal-content {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.terminal-line {
  font-size: 10px;
  color: #22c55e;
  word-break: break-all;
  animation: fadeInSlide 0.5s ease-out;
}

.cursor {
  display: inline-block;
  color: #00ff41;
  font-size: 10px;
  animation: pulse 1s ease-in-out infinite;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-title {
  font-size: 20px;
  font-weight: bold;
}

.cta-desc {
  font-size: 12px;
  color: rgba(0, 255, 65, 0.8);
  line-height: 1.6;
  padding: 0 16px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding-top: 32px;
  padding-bottom: 96px;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 65, 0.3);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-link {
  font-size: 10px;
  color: #00ff41;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

.copyright {
  font-size: 9px;
  color: #166534;
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  z-index: 40;
  padding: 20px;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.9), transparent);
}

.download-button {
  width: 100%;
  background-color: #00ff41;
  color: #000;
  font-weight: 900;
  padding: 16px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-button:hover {
  background-color: #22c55e;
}

.download-button:active {
  transform: scale(0.95);
}

.download-icon {
  width: 24px;
  height: 24px;
}

.download-text {
  letter-spacing: -0.05em;
  font-size: 18px;
  text-transform: uppercase;
  font-style: italic;
}

.download-info {
  margin-top: 8px;
  text-align: center;
}

.download-subtext {
  font-size: 9px;
  color: rgba(0, 255, 65, 0.6);
  font-family: 'JetBrains Mono', monospace;
}

/* ============================================
   PAGE-SPECIFIC STYLES (PRIVACY, TERMS, CONTACT)
   ============================================ */

/* Back Button in Header */
.back-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(0, 255, 65, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-button:hover {
  background-color: rgba(0, 255, 65, 0.1);
  border-color: #00ff41;
}

.back-button svg {
  stroke: #00ff41;
}

/* Page Content Layout */
.page-content {
  padding: 0 24px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.page-header {
  text-align: center;
  margin-bottom: 48px;
}

.page-badge {
  display: inline-block;
  background-color: rgba(0, 255, 65, 0.1);
  border: 1px solid rgba(0, 255, 65, 0.3);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.page-title {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  text-shadow: 0 0 10px #00ff41;
}

.page-subtitle {
  font-size: 11px;
  color: rgba(0, 255, 65, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Content Blocks */
.content-block {
  margin-bottom: 40px;
}

.intro-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(0, 255, 65, 0.9);
  margin-bottom: 24px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-icon {
  color: #00ff41;
  font-size: 24px;
  font-weight: normal;
}

.section-text {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(0, 255, 65, 0.85);
  margin-bottom: 16px;
}

.section-text strong {
  color: #00ff41;
  font-weight: bold;
}

/* Lists */
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.privacy-list li {
  font-size: 12px;
  color: rgba(0, 255, 65, 0.8);
  padding: 10px 0 10px 24px;
  position: relative;
  border-left: 2px solid rgba(0, 255, 65, 0.3);
  margin-bottom: 8px;
}

.privacy-list li:before {
  content: "›";
  position: absolute;
  left: 8px;
  color: #00ff41;
  font-size: 16px;
  font-weight: bold;
}

/* Port List Grid */
.port-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.port-item {
  background-color: rgba(0, 255, 65, 0.05);
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.port-item:hover {
  background-color: rgba(0, 255, 65, 0.1);
  border-color: rgba(0, 255, 65, 0.5);
}

.port-number {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #00ff41;
  margin-bottom: 4px;
}

.port-label {
  display: block;
  font-size: 9px;
  color: rgba(0, 255, 65, 0.6);
  letter-spacing: 0.2em;
}

/* Warning Box */
.warning-box {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 4px;
  padding: 16px;
  margin: 24px 0;
  display: flex;
  gap: 12px;
}

.warning-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.warning-content {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 193, 7, 0.9);
}

.warning-content strong {
  color: #ffc107;
  font-weight: bold;
}

/* Requirements Grid */
.requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.requirement-item {
  background-color: rgba(0, 255, 65, 0.05);
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.req-icon {
  color: #00ff41;
  font-size: 18px;
  font-weight: bold;
}

.req-text {
  font-size: 11px;
  color: rgba(0, 255, 65, 0.8);
}

/* Contact Cards */
.contact-grid {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.contact-card {
  background-color: rgba(0, 255, 65, 0.05);
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background-color: rgba(0, 255, 65, 0.1);
  border-color: rgba(0, 255, 65, 0.5);
  transform: translateY(-2px);
}

.contact-icon {
  margin-bottom: 16px;
}

.contact-title {
  font-size: 16px;
  font-weight: bold;
  color: #00ff41;
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 13px;
  color: rgba(0, 255, 65, 0.9);
  margin-bottom: 8px;
  word-break: break-word;
}

.contact-response {
  font-size: 10px;
  color: rgba(0, 255, 65, 0.6);
  font-style: italic;
}

/* FAQ Items */
.faq-list {
  margin: 20px 0;
}

.faq-item {
  background-color: rgba(0, 255, 65, 0.03);
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(0, 255, 65, 0.08);
  border-color: rgba(0, 255, 65, 0.4);
}

.faq-question {
  font-size: 13px;
  font-weight: bold;
  color: #00ff41;
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(0, 255, 65, 0.8);
}

/* Hours Grid */
.hours-grid {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.hours-item {
  background-color: rgba(0, 255, 65, 0.05);
  border: 1px solid rgba(0, 255, 65, 0.2);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hours-day {
  font-size: 12px;
  color: rgba(0, 255, 65, 0.9);
  font-weight: bold;
}

.hours-time {
  font-size: 11px;
  color: rgba(0, 255, 65, 0.7);
  font-family: 'JetBrains Mono', monospace;
}

/* Back to Home Button */
.back-to-home {
  margin: 48px 0 32px;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #00ff41;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.btn-primary:hover {
  background-color: #22c55e;
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.6);
  transform: translateY(-2px);
}

.btn-primary svg {
  stroke: #000;
}

/* Page Footer */
.page-footer {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 255, 65, 0.2);
  text-align: center;
}

.footer-text {
  font-size: 9px;
  color: #166534;
  letter-spacing: 0.1em;
}

/* ============================================
   FORMS & INPUT STYLES (PREMIUM HACKER UI)
   ============================================ */
.terminal-section {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(0, 255, 65, 0.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);

}

.terminal-header {
  background: rgba(0, 255, 65, 0.1);
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.terminal-title {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #00ff41;
}

.terminal-dots {
  display: flex;
  gap: 5px;
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.terminal-dot-red {
  background: #ff5f56;
}

.terminal-dot-yellow {
  background: #ffbd2e;
}

.terminal-dot-green {
  background: #27c93f;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 65, 0.2);
  color: #00ff41;
  padding: 12px 15px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #00ff41;
  background: rgba(0, 255, 65, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.form-input::placeholder {
  color: rgba(0, 255, 65, 0.2);
}

/* Custom Select Styling */
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ff41' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  padding-right: 40px;
}

/* Buttons */
.cta-button {
  width: 100%;
  background: #00ff41;
  color: #000;
  border: none;
  padding: 15px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.cta-button:hover {
  background: #22c55e;
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.6);
  transform: translateY(-2px);
}

.cta-button:disabled {
  background: #166534;
  color: rgba(0, 0, 0, 0.5);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.button-icon {
  font-size: 20px;
  line-height: 1;
}

/* Messages */
#message {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  animation: fadeIn 0.3s ease-out;
  padding: 12px;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success/Error colors */
.msg-success {
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid #00ff41;
  color: #00ff41;
}

.msg-error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff0000;
  color: #ff0000;
}