body {
    background: linear-gradient(135deg, #0f2027 0%, #232526 100%);
    color: #e0e0e0;
    font-family: 'JetBrains Mono', 'Inter', monospace, sans-serif;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0,255,174,0.10) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0,124,240,0.10) 0%, transparent 25%);
    background-attachment: fixed;
}
:root {
    --primary-color: #00ffae;
    --primary-dark: #181a20;
    --primary-light: #ffd166;
    --secondary-color: #ef4444;
    --accent-color: #ffd166;
    --matrix-green: #00ff41;
    --card-bg: rgba(24, 26, 32, 0.85);
    --border-color: #00ffae;
    --text-light: #e0e0e0;
    --text-muted: #ffd166;
    --hacker-glow: 0 0 24px 0 #00ffae99, 0 0 2px 0 #00ffae;
}
/* Glitch effect for headings */
.glitch {
    position: relative;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 0 16px var(--primary-color), 2px 0 var(--primary-color), -2px 0 #00ffd0;
    animation: glitch-anim 1.5s infinite linear alternate-reverse;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0;
    width: 100%; overflow: hidden;
    color: var(--primary-color);
    background: transparent;
}
.glitch::before {
    left: 2px; text-shadow: -2px 0 #00ffd0;
    animation: glitch-anim-2 1.5s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px; text-shadow: 2px 0 var(--accent-color);
    animation: glitch-anim-3 1.5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { text-shadow: 0 0 16px var(--primary-color), 2px 0 var(--primary-color), -2px 0 #00ffd0; }
    20% { text-shadow: 2px 2px 0 #00ffd0, 0 0 8px var(--accent-color); }
    40% { text-shadow: -2px -2px 0 var(--accent-color), 0 0 8px var(--primary-color); }
    60% { text-shadow: 2px -2px 0 #00ffd0, 0 0 8px var(--accent-color); }
    80% { text-shadow: -2px 2px 0 var(--accent-color), 0 0 8px var(--primary-color); }
    100% { text-shadow: 0 0 16px var(--primary-color), 2px 0 var(--primary-color), -2px 0 #00ffd0; }
}
@keyframes glitch-anim-2 {
    0%, 100% { clip-path: inset(0 0 80% 0); }
    50% { clip-path: inset(80% 0 0 0); }
}
@keyframes glitch-anim-3 {
    0%, 100% { clip-path: inset(80% 0 0 0); }
    50% { clip-path: inset(0 0 80% 0); }
}
.matrix-accent {
    color: var(--matrix-green);
    text-shadow: 0 0 8px var(--matrix-green), 0 0 2px var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    margin-top: 1rem;
}
.glass-card {
    background: var(--card-bg) !important;
    border-radius: 20px !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 32px 0 #00ffae33, 0 0 2px 0 #00ffae;
    font-family: 'JetBrains Mono', monospace;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.glass-card:hover {
    box-shadow: 0 0 48px #00ffae, 0 0 8px #ffd166;
    border-color: #ffd166;
}
.btn-neon {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--primary-dark) !important;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 0 24px var(--primary-color)55;
    transition: box-shadow 0.3s, background 0.3s;
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative;
}
.btn-neon:hover {
    box-shadow: 0 0 32px var(--accent-color), 0 0 8px var(--primary-color);
    background: var(--primary-dark);
    color: var(--accent-color) !important;
}
.btn-glass {
    background: rgba(0,255,174,0.10);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    border-radius: 14px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 0 16px var(--primary-color)33;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
.btn-glass:disabled, .btn-glass[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-glass:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--primary-dark) !important;
    box-shadow: 0 0 32px var(--accent-color), 0 0 8px var(--primary-color);
}
.form-control {
    background: rgba(24, 26, 32, 0.8);
    border: 2px solid #00ffd0;
    color: #00ffae;
    border-radius: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
    border-color: #00ffae;
    box-shadow: 0 0 8px #00ffd0;
    color: #00ffae;
}
.form-control::placeholder {
    color: #00ffae !important;
    opacity: 1 !important;
    font-family: 'JetBrains Mono', monospace;
}
.input-group-text {
    color: #00ffae !important;
    background: rgba(24, 26, 32, 0.8) !important;
    border: 1.5px solid var(--border-color);
}
.form-text {
    color: #ffd166 !important;
    text-shadow: 0 0 6px #ffd16699;
    font-family: 'JetBrains Mono', monospace;
}
.navbar, .card, .login-card, .package-card, .key-feature-card, .update-card {
    background: rgba(20, 30, 40, 0.85) !important;
    border-radius: 20px !important;
    border: 2px solid #00ffae !important;
    box-shadow: 0 0 32px 0 #00ffae33, 0 0 2px 0 #00ffae;
    font-family: 'JetBrains Mono', monospace;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.navbar:hover, .card:hover, .login-card:hover, .package-card:hover, .key-feature-card:hover, .update-card:hover {
    box-shadow: 0 0 48px #00ffae, 0 0 8px #00ffd0;
    border-color: #00ffd0;
}
.card-header h1, .card-header h2, .card-header h3, .card-header h4, .hero-title-gradient, .key-features-title, .comparison-title, .packages-title, .contact-title, .faq-title, .terms-title {
    font-family: 'JetBrains Mono', monospace;
    color: #00ffae;
    background: linear-gradient(90deg, #00ffae, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px #00ffae88;
    letter-spacing: 2px;
    animation: glitch 2s infinite alternate-reverse;
}
@keyframes glitch {
    0% { text-shadow: 2px 2px 0 #00bfff, 0 0 8px #00ffae; }
    20% { text-shadow: -2px -2px 0 #00ffae, 0 0 8px #00bfff; }
    40% { text-shadow: 2px -2px 0 #00ffae, 0 0 8px #00bfff; }
    60% { text-shadow: -2px 2px 0 #00bfff, 0 0 8px #00ffae; }
    80% { text-shadow: 2px 2px 0 #00ffae, 0 0 8px #00bfff; }
    100% { text-shadow: 0 0 2px #00ffae, 0 0 8px #00bfff; }
}
.form-label, .input-group-text {
    font-family: 'JetBrains Mono', monospace;
}
.btn, .btn-primary, .btn-outline-primary, .btn-light, .forgot-btn {
    border: 1.5px solid #00ffae;
    background: linear-gradient(90deg, #00ffae 0%, #00bfff 100%);
    color: #181e2a !important;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 4px #00ffae88;
    box-shadow: 0 0 8px #00ffae55;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn:hover, .btn-primary:hover, .btn-outline-primary:hover, .btn-light:hover, .forgot-btn:hover {
    background: #181e2a;
    color: #00ffae !important;
    border-color: #00ffae;
    box-shadow: 0 0 16px #00ffae;
}
#googleLoginBtn {
    border: 2px solid #4285F4 !important;
    color: #4285F4 !important;
    background: rgba(255,255,255,0.95) !important;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 16px #4285F433;
    transition: box-shadow 0.3s, border-color 0.3s;
}
#googleLoginBtn:hover {
    background: #4285F4 !important;
    color: #fff !important;
    box-shadow: 0 0 32px #4285F4;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ffae 0%, #00bfff 100%);
}
a.matrix-accent {
    color: #00ffae !important;
    text-shadow: 0 0 8px #00ffae, 0 0 2px #00ffae;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s, text-shadow 0.2s;
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative;
}
a.matrix-accent:hover, a.matrix-accent:focus {
    color: #ffd166 !important;
    text-shadow: 0 0 16px #ffd166, 0 0 4px #00ffae;
    text-decoration: underline;
}
/* --- Discount Badge Modern Glow --- */
.discount-badge {
  position: relative;
  width: 140px;
  height: 140px;
  min-width: 140px;
  min-height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #ffd166 100%);
  box-shadow: 0 0 32px 0 #ffd16655, 0 4px 32px 0 #6366f144, 0 0 60px 0 #ffd16633;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-right: 2.5rem;
  margin-bottom: 0;
  overflow: visible;
}
.discount-badge .discount-percentage {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 0 16px #fff8, 0 2px 18px #ffd16699, 0 2px 12px #6366f199;
}
.discount-badge .discount-off {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  letter-spacing: 1.5px;
  text-shadow: 0 0 16px #fff8, 0 2px 18px #ffd16699;
}
.discount-badge .discount-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.93;
  color: #fff;
  margin-top: 0.5rem;
  text-shadow: 0 0 8px #ffd16699;
}

/* --- Toggle Group Box --- */
.toggle-group {
  background: rgba(36,41,61,0.85);
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 #0008, 0 2px 16px 0 #6366f144;
  padding: 1.5rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  margin: 0 1.2rem;
  border: 1.5px solid rgba(129,140,248,0.18);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  position: relative;
}
.toggle-label {
  color: #ffd166;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.toggle-label i {
  color: #ffd166;
  font-size: 1.2rem;
}
.discount-toggle-wrapper {
  width: 210px;
  height: 48px;
  background: rgba(0,255,174,0.10);
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px #6366f133, 0 4px 24px 0 #0008;
  margin-top: 0.5rem;
  padding: 0 8px;
}
.discount-toggle-label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.18rem;
  font-weight: 700;
  background: none;
  padding: 0;
}
.discount-toggle-text {
  flex: 1;
  text-align: center;
  color: #b0b8c9;
  z-index: 2;
  transition: color 0.2s, font-weight 0.2s;
  line-height: 48px;
  position: relative;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.discount-toggle-input:checked + .discount-toggle-label .discount-toggle-text.right,
.discount-toggle-input:not(:checked) + .discount-toggle-label .discount-toggle-text.left {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 8px #ffd16699, 0 0 2px #fff;
}
.discount-toggle-input:checked + .discount-toggle-label .discount-toggle-text.left,
.discount-toggle-input:not(:checked) + .discount-toggle-label .discount-toggle-text.right {
  color: #b0b8c9;
  font-weight: 700;
  text-shadow: none;
}
.discount-toggle-handle {
  position: absolute;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffd166 0%, #00ffae 100%) !important;
  border-radius: 50%;
  top: 2px;
  left: 4px;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  box-shadow: 0 2px 12px #ffd16655, 0 2px 12px #00ffae55, 0 0 24px #ffd16677;
  z-index: 1;
  border: 2px solid #fff2;
}
.discount-toggle-input:checked + .discount-toggle-label .discount-toggle-handle {
  left: calc(100% - 48px);
  background: linear-gradient(135deg, #ffd166 0%, #00ffae 100%);
}
@media (max-width: 900px) {
  .toggle-group {
    min-width: 0;
    padding: 1.1rem 0.7rem;
  }
  .discount-toggle-wrapper {
    width: 140px;
    height: 32px;
    padding: 0 2px;
  }
  .discount-toggle-handle {
    width: 24px;
    height: 24px;
    top: 4px;
  }
  .discount-toggle-label {
    font-size: 1rem;
  }
  .discount-toggle-text {
    line-height: 32px;
    font-size: 1rem;
  }
}

/* --- How to Get Started Section --- */
.get-started-section {
  max-width: 900px;
  margin: 56px auto 0 auto;
  text-align: center;
  padding: 0 12px;
}
.get-started-title {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
  position: relative;
  letter-spacing: 1.5px;
}
.get-started-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ffae, #ffd166, transparent) !important;
}
.get-started-steps {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.get-started-step {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: linear-gradient(120deg, rgba(24,26,32,0.92) 0%, rgba(0,255,174,0.10) 100%) !important;
  border-radius: 20px;
  padding: 2.2rem 2.2rem;
  box-shadow: 0 6px 20px rgba(0,255,174,0.13), 0 2px 10px 0 #000a;
  border: 1.2px solid #00ffae !important;
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
  min-height: 120px;
  width: 100%;
  transition: box-shadow 0.3s;
  box-sizing: border-box;
}
.get-started-step:hover {
  box-shadow: 0 10px 28px rgba(99,102,241,0.15), 0 2px 10px 0 #000a;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  background: linear-gradient(135deg, #00ffae 0%, #ffd166 100%) !important;
  border-radius: 16px;
  margin-right: 1.1rem;
  box-shadow: 0 2px 8px rgba(99,102,241,0.13);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  flex-direction: row;
  gap: 0.4rem;
  position: relative;
}
.step-icon span:first-child {
  font-size: 1.1rem;
  background: linear-gradient(135deg, #00ffae, #ffd166);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.15rem;
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(99,102,241,0.10);
  color: #fff;
}
.step-emoji {
  font-size: 1.3rem;
  margin-left: 0.05rem;
}
.step-title {
  font-size: 1.18rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.13rem;
  text-align: left;
  letter-spacing: 0.01em;
}
.step-desc {
  color: #ffd166;
  font-size: 1.05rem;
  text-align: left;
  font-weight: 600;
  margin-top: 0.2rem;
}
@media (max-width: 800px) {
  .get-started-section {
    max-width: 98vw;
    padding: 0 2px;
  }
  .get-started-title {
    font-size: 1.3rem;
  }
  .get-started-step {
    padding: 0.9rem 0.3rem;
    border-radius: 12px;
    gap: 0.7rem;
  }
  .step-icon {
    min-width: 36px;
    min-height: 36px;
    font-size: 1rem;
    margin-right: 0.3rem;
    border-radius: 8px;
  }
  .step-icon span:first-child {
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
  }
  .step-emoji {
    font-size: 1rem;
  }
  .step-title {
    font-size: 0.95rem;
  }
  .step-desc {
    font-size: 0.85rem;
  }
}

/* --- Terms of Service Section --- */
.terms-section {
  margin: 60px auto 0 auto;
  max-width: 1100px;
  padding: 2rem 0;
}
.terms-title {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-align: center;
  color: #00ffea;
  text-shadow: 0 0 16px #00ffea, 0 0 8px #00ffd0;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 2px;
  animation: glitch 2s infinite alternate-reverse;
}
.terms-content {
  background: rgba(24, 26, 32, 0.85);
  border-radius: 16px;
  border: 2px solid #00ffea;
  padding: 2.2rem 2.2rem;
  box-shadow: 0 0 32px 0 #00ffae33, 0 0 2px 0 #00ffae;
  font-family: 'JetBrains Mono', monospace;
  margin: 0 auto;
}
.terms-text {
  color: #ffd166;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.terms-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.terms-list li {
  color: #ffd166;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.05rem;
  font-weight: 600;
}
.terms-list li::before {
  content: "•";
  color: #00ffae;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: 0.1rem;
}
@media (max-width: 600px) {
  .get-started-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0.5rem;
    border-radius: 10px;
    min-height: 0;
    gap: 0.7rem;
    width: 100%;
    margin-bottom: 0.7rem;
  }
  .step-icon {
    min-width: 32px;
    min-height: 32px;
    font-size: 1rem;
    margin-right: 0;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }
  .step-icon span:first-child {
    font-size: 0.8rem;
    width: 18px;
    height: 18px;
  }
  .step-emoji {
    font-size: 1rem;
  }
  .step-title {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
  }
  .step-desc {
    font-size: 0.85rem;
  }
  .terms-content {
    padding: 1.2rem 0.7rem;
    border-radius: 10px;
  }
  .terms-title {
    font-size: 1.3rem;
  }
} 