:root {
  --bg-main: #06080F;
  --bg-secondary: #0A0D17;
  --bg-glass: rgba(16, 20, 36, 0.6);
  --border-glass: rgba(255, 255, 255, 0.05);
  --accent-cyan: #00E5FF;
  --accent-violet: #B400FF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --success: #10B981;
  --error: #EF4444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Background Animations */
.bg-elements {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  filter: blur(100px);
  opacity: 0.4;
  border-radius: 50%;
  animation: float 20s infinite alternate ease-in-out;
}
.blob-1 {
  width: 400px; height: 400px;
  background: var(--accent-violet);
  top: -100px; left: -100px;
}
.blob-2 {
  width: 300px; height: 300px;
  background: var(--accent-cyan);
  bottom: 20%; right: -50px;
  animation-delay: -5s;
}
.blob-3 {
  width: 500px; height: 500px;
  background: rgba(0, 102, 255, 0.2);
  top: 40%; left: 30%;
  animation-delay: -10s;
}
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(6, 8, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.brand {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
.brand span {
  color: var(--accent-cyan);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.15rem;
}
.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: var(--text-main);
}
.nav-menu a.active {
  color: var(--accent-cyan);
}
.btn-discord {
  padding: 0.6rem 1.5rem;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid #5865F2;
  color: #5865F2;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-discord:hover {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

/* Hero Section */
.hero-section {
  padding: 8.5rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tagline {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.stat span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-pill {
  border: 1px solid rgba(0, 229, 255, 0.24);
  background: rgba(0, 229, 255, 0.08);
  color: var(--text-main);
  font-family: inherit;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.hero-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.14);
}

.page-section {
  display: none;
}
.page-section.active {
  display: block;
  animation: fadeIn 0.35s ease forwards;
}
.page-section:not(.hero-section) {
  min-height: 100vh;
  padding-top: 8.5rem;
}

/* Chatbot / Activation Glass */
.hero-activation {
  position: relative;
}
.hero-activation::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  filter: blur(40px);
  opacity: 0.15;
  border-radius: 24px;
  z-index: 0;
}
.activation-glass {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.5rem;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.act-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.pulse-dot {
  width: 12px; height: 12px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.act-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.act-subtitle {
  font-size: 0.8rem;
  color: var(--success);
}

/* Activation Tabs Custom Styling */
.act-tabs {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
}
.act-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.act-tab-btn:hover {
  color: var(--text-main);
}
.act-tab-btn.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}
.act-tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.act-tab-content.active {
  display: block;
}
.hwid-warning-box {
  margin-top: 1rem;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.hwid-warning-box strong {
  color: var(--error);
}

.act-messages {
  height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 0.5rem;
}
.act-messages::-webkit-scrollbar {
  width: 6px;
}
.act-messages::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.msg {
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
}
.msg-avatar {
  font-size: 1.5rem;
}
.msg-bubble {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  padding: 1rem;
  border-radius: 12px 12px 12px 2px;
  font-size: 0.95rem;
  max-width: 85%;
}
.user-msg {
  flex-direction: row-reverse;
}
.user-msg .msg-bubble {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(180, 0, 255, 0.1));
  border-color: rgba(0, 229, 255, 0.2);
  border-radius: 12px 12px 2px 12px;
}
.act-input-area {
  display: flex;
  gap: 0.8rem;
}
#chatInput {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0 1rem;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}
#chatInput:focus {
  border-color: var(--accent-cyan);
}
#sendBtn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  border: none;
  width: 48px; height: 48px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
#sendBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}
#sendBtn svg {
  width: 20px; height: 20px;
}

/* Sections Global */
.section-head {
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.text-center {
  text-align: center;
}

/* Tabs Section */
.info-section {
  padding-bottom: 5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.tabs-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
}
.tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border-glass);
  padding-right: 2rem;
}
.tab-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-btn:hover {
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
}
.tab-btn.active {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border-left: 3px solid var(--accent-cyan);
}
.tabs-content {
  padding: 1rem 0;
}
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.tab-pane.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-pane h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.tab-pane p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.styled-list {
  list-style: none;
}
.styled-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.styled-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-main);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(0,229,255,0.05);
}

/* Features Grid */
.features-section {
  padding-bottom: 5rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.f-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.f-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255,255,255,0.1);
}
.f-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.f-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.f-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Grid */
.pricing-section {
  padding-bottom: 6rem;
  background: var(--bg-secondary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
.price-card {
  background: var(--bg-main);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.price-card:hover {
  transform: translateY(-10px);
}
.price-card.popular {
  border-color: var(--accent-violet);
  background: linear-gradient(180deg, rgba(180, 0, 255, 0.05) 0%, var(--bg-main) 100%);
  padding: 4rem 2rem;
}
.popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.plan-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.plan-features li {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.btn-buy {
  display: block;
  padding: 1rem;
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-buy:hover {
  background: rgba(255,255,255,0.05);
}
.btn-buy.glow {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
}
.btn-buy.glow:hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Footer */
footer {
  background: #000;
  padding: 4rem 0;
  border-top: 1px solid var(--border-glass);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
}
.footer-brand span {
  color: var(--accent-cyan);
}
.footer-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.5rem;
}
.footer-copy {
  text-align: right;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Chat Output Formatting */
.license-reveal {
  margin-top: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  text-align: center;
}
.license-key-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}
.copy-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.copy-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* Responsive */
@media(max-width: 992px) {
  .hero-container, .tabs-container {
    grid-template-columns: 1fr;
  }
  .tabs-nav {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
    padding-right: 0;
    padding-bottom: 2rem;
    flex-direction: row;
    overflow-x: auto;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer-copy {
    text-align: center;
  }
}
@media(max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .nav-menu {
    display: none;
  }
  .hero-section {
    padding-top: 7rem;
  }
  .page-section:not(.hero-section) {
    padding-top: 7rem;
  }
  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   Video Rehberler Section
   ========================================================================== */
.videos-section {
  padding-bottom: 5rem;
  background: var(--bg-main);
  border-top: 1px solid var(--border-glass);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}
@media(max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.video-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-info {
  padding: 2rem;
}
.video-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Ekran Görüntüleri (Gallery) Section
   ========================================================================== */
.gallery-section {
  padding-bottom: 5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.gallery-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 0, 255, 0.25);
  box-shadow: 0 15px 30px rgba(180, 0, 255, 0.1);
}
.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(6, 8, 15, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.zoom-icon {
  font-size: 2rem;
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transition: transform 0.3s ease;
}
.gallery-item:hover .zoom-icon {
  transform: scale(1.1);
}
.gallery-info {
  padding: 1.2rem;
}
.gallery-info h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}
.gallery-info p {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 5rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(3, 4, 8, 0.95);
  backdrop-filter: blur(15px);
}
.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 40px rgba(0, 229, 255, 0.15);
  animation: zoomIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes zoomIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--text-muted);
  font-size: 2.5rem;
  font-weight: 300;
  transition: color 0.3s, transform 0.2s;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
}
.lightbox-close:hover {
  color: var(--text-main);
  transform: rotate(90deg);
  background: rgba(255,255,255,0.08);
}
.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  text-align: center;
  color: var(--text-main);
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  animation: fadeIn 0.4s ease;
}

/* ==========================================================================
   Footer Links & Legal Modal Styles
   ========================================================================== */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-cyan);
}

.legal-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(3, 4, 8, 0.8);
  backdrop-filter: blur(15px);
  padding: 4rem 1rem;
  align-items: center;
  justify-content: center;
}
.legal-modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  width: 100%;
  max-width: 750px;
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(0, 229, 255, 0.1);
  animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: auto;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.legal-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}
.legal-modal-close:hover {
  color: var(--text-main);
  transform: rotate(90deg);
  background: rgba(255,255,255,0.08);
}
.legal-modal-body {
  margin-top: 1.5rem;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}
.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}
.legal-modal-body h3 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.legal-modal-body p {
  margin-bottom: 1.2rem;
}
.legal-modal-body strong {
  color: var(--text-main);
}
