/* ==========================================================================
   WORD GAME BOT - ULTRA PREMIUM MODERN STYLESHEET
   Aesthetics: Deep Dark Theme, Glassmorphism, Neon Gradients, Micro-Animations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-main: #090A10;
  --bg-secondary: #0F111E;
  --bg-card: rgba(18, 21, 37, 0.7);
  --bg-card-hover: rgba(26, 30, 52, 0.85);
  --bg-glass: rgba(15, 17, 30, 0.65);

  --primary: #6366F1;
  --primary-hover: #4F46E5;
  --primary-glow: rgba(99, 102, 241, 0.35);

  --accent-purple: #8B5CF6;
  --accent-pink: #EC4899;
  --accent-cyan: #06B6D4;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
  --accent-rose: #F43F5E;

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);

  --grad-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  --grad-cyan: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
  --grad-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Background Grid Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: -1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--tr-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-cyan {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #090A10;
}
::-webkit-scrollbar-thumb {
  background: #1E2238;
  border-radius: 5px;
  border: 2px solid #090A10;
}
::-webkit-scrollbar-thumb:hover {
  background: #6366F1;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--tr-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
  border-radius: 10px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #A5B4FC;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 10, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--tr-smooth);
}

.site-header.scrolled {
  background: rgba(9, 10, 16, 0.92);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 22px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 160px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 20px 0;
  line-height: 1.15;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features-chips {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.chip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.chip-item i {
  color: var(--accent-emerald);
}

/* ==========================================================================
   DISCORD SIMULATOR (INTERACTIVE PLAYABLE PREVIEW)
   ========================================================================== */

.discord-simulator-wrapper {
  background: #1E1F22;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(99, 102, 241, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 580px;
  position: relative;
}

.discord-sim-header {
  background: #111214;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-channel-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #F2F3F5;
}

.sim-channel-info i {
  color: #80848E;
  font-size: 16px;
}

.sim-topic {
  font-size: 12px;
  color: #949BA4;
  font-weight: 500;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #35363C;
}

.sim-badges-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-badge-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #2B2D31;
  color: #DBDEE1;
  font-weight: 600;
}

/* Pinned Banner inside Simulator */
.sim-pinned-banner {
  background: #2B2D31;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}

.pinned-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F2F3F5;
  font-weight: 600;
}

.pinned-left i {
  color: var(--accent-amber);
}

.streak-meter {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 11.5px;
}

/* Messages Stream */
.discord-sim-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}

.sim-msg {
  display: flex;
  gap: 14px;
  font-size: 14px;
  animation: fadeInMsg 0.3s ease-out;
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.sim-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #FFFFFF;
}

.avatar-bot {
  background: var(--grad-primary);
}

.avatar-user1 {
  background: linear-gradient(135deg, #10B981, #059669);
}

.avatar-user2 {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.avatar-user3 {
  background: linear-gradient(135deg, #EC4899, #BE185D);
}

.sim-msg-body {
  flex: 1;
}

.sim-msg-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.sim-username {
  font-weight: 700;
  font-size: 14px;
  color: #F2F3F5;
}

.sim-bot-tag {
  background: #5865F2;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: uppercase;
}

.sim-time {
  font-size: 11px;
  color: #949BA4;
}

.sim-text {
  color: #DBDEE1;
  line-height: 1.45;
}

.sim-word-bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2B2D31;
  border: 1px solid #35363C;
  padding: 4px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 4px;
}

.sim-word-bubble .highlight-last {
  color: #EC4899;
  font-weight: 900;
  text-decoration: underline;
}

.sim-reaction {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #2B2D31;
  border: 1px solid #3B82F6;
  padding: 2px 7px;
  border-radius: 8px;
  font-size: 12px;
  margin-top: 6px;
  color: #DBDEE1;
  font-weight: 600;
}

.sim-embed-card {
  background: #2B2D31;
  border-left: 4px solid #5865F2;
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 6px;
  max-width: 90%;
}

.sim-embed-title {
  font-weight: 800;
  color: #FFFFFF;
  font-size: 13.5px;
  margin-bottom: 4px;
}

.sim-embed-desc {
  font-size: 12.5px;
  color: #B5BAC1;
  line-height: 1.4;
}

/* Simulator Input Bar */
.discord-sim-input-bar {
  background: #111214;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-input-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.sim-lang-btn, .sim-sfx-btn, .sim-hint-btn, .sim-reset-btn {
  background: #2B2D31;
  border: 1px solid #35363C;
  color: #DBDEE1;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr-fast);
}

.sim-lang-btn:hover, .sim-sfx-btn:hover, .sim-hint-btn:hover, .sim-reset-btn:hover {
  background: #35363C;
  color: #FFFFFF;
}

.sim-form {
  display: flex;
  align-items: center;
  background: #383A40;
  border-radius: 10px;
  padding: 4px 12px;
  gap: 10px;
}

.sim-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #F2F3F5;
  font-size: 14.5px;
  font-family: var(--font-body);
  padding: 8px 0;
}

.sim-form input::placeholder {
  color: #80848E;
}

.sim-submit-btn {
  background: #5865F2;
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr-fast);
}

.sim-submit-btn:hover {
  background: #4752C4;
}

/* ==========================================================================
   STATISTICS COUNTER SECTION
   ========================================================================== */

.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(15, 17, 30, 0.4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--tr-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon-purple { background: rgba(99, 102, 241, 0.15); color: #818CF8; }
.icon-pink { background: rgba(236, 72, 153, 0.15); color: #F472B6; }
.icon-emerald { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.icon-cyan { background: rgba(6, 182, 212, 0.15); color: #38BDF8; }

.stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 38px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.features-section {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px 30px;
  transition: var(--tr-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.feature-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   HOW TO PLAY SECTION (3 STEPS)
   ========================================================================== */

.how-to-play-section {
  padding: 100px 0;
  background: rgba(15, 17, 30, 0.5);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px var(--primary-glow);
}

.step-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   COMMANDS SHOWCASE
   ========================================================================== */

.commands-section {
  padding: 120px 0;
}

.commands-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.command-tabs {
  display: flex;
  gap: 10px;
}

.cmd-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--tr-fast);
}

.cmd-tab-btn.active, .cmd-tab-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cmd-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--tr-smooth);
}

.cmd-item-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.cmd-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cmd-name {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #A5B4FC;
  background: rgba(99, 102, 241, 0.12);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.cmd-perm-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.cmd-desc {
  font-size: 14.5px;
  color: var(--text-muted);
}

.cmd-copy-btn {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}

.cmd-copy-btn:hover {
  color: #A5B4FC;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
  padding: 100px 0;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--tr-smooth);
}

.faq-item.active {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question i {
  font-size: 14px;
  transition: transform var(--tr-smooth);
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT & SUPPORT SECTION (İLETİŞİM & DESTEK)
   ========================================================================== */

.contact-section {
  padding: 110px 0 60px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--tr-smooth);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.contact-card.web-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.15);
}

.contact-card.discord-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(88, 101, 242, 0.45);
  box-shadow: 0 20px 45px rgba(88, 101, 242, 0.22);
}

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--tr-fast);
}

.contact-icon-wrapper.web-icon {
  background: rgba(6, 182, 212, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.contact-icon-wrapper.discord-icon {
  background: rgba(88, 101, 242, 0.18);
  color: #5865F2;
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}

.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.contact-badge-pill.web-badge {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #38BDF8;
}

.contact-badge-pill.discord-badge {
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #818CF8;
}

.online-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  display: inline-block;
  animation: pulseDot 2s infinite;
}

.contact-card-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.contact-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-perks-list li i {
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.web-card .contact-perks-list li i {
  color: #38BDF8;
}

.discord-card .contact-perks-list li i {
  color: #818CF8;
}

.contact-perks-list li b {
  color: var(--text-main);
}

.contact-card-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.contact-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  flex: 1;
  justify-content: center;
}

.btn-discord {
  background: #5865F2;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.5);
  color: #FFFFFF;
}

.btn-copy-invite {
  padding: 13px 18px;
}

.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.contact-direct-link a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--tr-fast);
}

.contact-direct-link a:hover {
  color: #FFFFFF;
}

/* Support Info Strip */
.support-info-strip {
  background: rgba(18, 21, 37, 0.55);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 24px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  backdrop-filter: blur(12px);
}

.support-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #818CF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.support-info-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #FFFFFF;
}

.support-info-text p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */

.cta-section {
  padding: 80px 0 120px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%), #121525;
  border: 1px solid var(--border-glow);
  border-radius: 32px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(99, 102, 241, 0.2);
}

.cta-card h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.cta-card p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #06070B;
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 18px 0 22px;
  max-width: 320px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: #34D399;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-dim);
}

/* ==========================================================================
   LEGAL / POLICY PAGES (Hizmet Koşulları & Gizlilik)
   ========================================================================== */

.legal-page-header {
  padding: 150px 0 60px;
  text-align: center;
  background: rgba(15, 17, 30, 0.4);
  border-bottom: 1px solid var(--border-glass);
}

.legal-page-header h1 {
  font-size: 46px;
  margin-bottom: 14px;
}

.legal-last-updated {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-content-section {
  padding: 80px 0 120px;
}

.legal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 920px;
  margin: 0 auto;
}

.legal-box h2 {
  font-size: 24px;
  margin: 36px 0 14px;
  color: #FFFFFF;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 8px;
}

.legal-box h2:first-of-type {
  margin-top: 0;
}

.legal-box p {
  font-size: 15.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.legal-box ul {
  margin: 0 0 20px 24px;
  color: var(--text-muted);
}

.legal-box li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-actions, .hero-features-chips {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .support-info-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #090A10;
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .features-grid, .steps-grid, .commands-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 32px 22px;
  }
  .contact-btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .support-info-strip {
    padding: 20px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .discord-simulator-wrapper {
    height: 520px;
  }
  .legal-box {
    padding: 28px 20px;
  }
}
