/* HIGH-END DARK AVIATION THEME FOR ADAPT TEST SUITE */

:root {
  --bg-dark: #070b14;
  --bg-gradient: linear-gradient(135deg, #070b14 0%, #0d1527 50%, #080c18 100%);
  
  --panel-bg: rgba(13, 20, 36, 0.82); /* Glassmorphic dark slate panel */
  --panel-border: rgba(255, 255, 255, 0.1);
  --panel-border-hover: rgba(0, 243, 255, 0.35);

  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  
  --accent-cyan: #00f3ff;
  --accent-blue: #3b82f6;
  --accent-purple: #a855f7;
  --accent-green: #10b981;

  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  background: var(--bg-dark);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Lighting Glows & Grid */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 550px;
  height: 550px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.12), transparent 70%);
}

.glow-2 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Outer Main Wrapper (Accommodates 240px Left and Right Side Ads) */
.main-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  padding-left: 260px;
  padding-right: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* TOP NAVBAR HEADER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  margin-top: 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-symbol {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--accent-cyan);
}

.brand-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4));
  vertical-align: middle;
  flex: none;
}

.brand-text, .brand-link {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-decoration: none;
}

.accent-cyan {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.accent-purple {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 243, 255, 0.3);
}

/* CENTER LAUNCHER CONTENT */
.launcher-center-content {
  flex-grow: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-bottom: 30px;
}

/* HERO HEADER */
.hero-header {
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.main-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

.yellow-feature-bar {
  background: rgba(250, 204, 21, 0.08) !important;
  border: 1px solid rgba(250, 204, 21, 0.45) !important;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.25), 0 4px 16px rgba(0, 0, 0, 0.4) !important;
  padding: 8px 24px !important;
  margin-top: 0px !important;
}

.yellow-pill {
  color: #facc15 !important;
  font-family: var(--font-mono) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.5) !important;
}

.yellow-sep {
  color: rgba(250, 204, 21, 0.5) !important;
  font-size: 0.9rem !important;
}

/* GAME SELECTION CARDS ROW */
.game-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
}

.simple-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.simple-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.card-fast:hover {
  border-color: rgba(0, 243, 255, 0.45);
}

.card-ball:hover {
  border-color: rgba(168, 85, 247, 0.45);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-emoji {
  font-size: 2.2rem;
  line-height: 1;
}

.type-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
}

.cyan-tag {
  background: rgba(0, 243, 255, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 243, 255, 0.3);
}

.purple-tag {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.game-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

.game-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 48px;
}

.play-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-cyan {
  background: linear-gradient(135deg, #00f3ff 0%, #0284c7 100%);
  color: #040814;
  box-shadow: 0 6px 20px rgba(0, 243, 255, 0.35);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.6);
}

.btn-purple {
  background: linear-gradient(135deg, #c084fc 0%, #8f00ff 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.6);
}

/* CONTACT PAGE CARD & FORM STYLES */
.contact-card {
  width: 100%;
  max-width: 680px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.contact-header {
  text-align: center;
  margin-bottom: 24px;
}

.contact-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  background: rgba(0, 243, 255, 0.12);
  border: 1px solid rgba(0, 243, 255, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.direct-email-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 243, 255, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
}

.linkedin-card-box {
  border-color: rgba(143, 0, 255, 0.35);
  background: rgba(143, 0, 255, 0.05);
}

.email-icon {
  font-size: 1.8rem;
}

.email-info {
  display: flex;
  flex-direction: column;
}

.email-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.email-link {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-decoration: none;
}

.linkedin-link {
  color: #a855f7;
}

.email-link:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0284c7 100%);
  color: #040814;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(0, 243, 255, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 243, 255, 0.5);
}

.feedback-msg {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-green);
  text-align: center;
  margin-top: 8px;
}

.feedback-msg.hidden {
  display: none;
}

/* FOOTER BAR */
.site-footer {
  margin-top: auto;
  padding: 20px 24px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer-left {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-brand {
  color: #ffffff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--accent-cyan);
}

.dot-sep {
  color: rgba(255, 255, 255, 0.2);
}

.footer-email {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
}

/* ABOUT PAGE STYLES */
.about-card {
  width: 100%;
  max-width: 780px;
  margin: 20px auto 40px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 44px 48px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.about-header {
  text-align: center;
  margin-bottom: 32px;
}

.about-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  background: rgba(0, 243, 255, 0.12);
  border: 1px solid rgba(0, 243, 255, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.about-subtitle {
  font-size: 0.95rem;
  color: var(--accent-purple);
  font-weight: 600;
  font-family: var(--font-mono);
}

.about-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
  border: 1px solid rgba(0, 243, 255, 0.25);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 24px;
}

.author-avatar-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 243, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
  flex: none;
}

.author-greeting {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.author-subtext {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
}

.about-content-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.about-content-body p strong {
  color: var(--accent-cyan);
}

.about-quote-box {
  background: rgba(168, 85, 247, 0.08);
  border-left: 4px solid var(--accent-purple);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  margin: 6px 0;
}

.quote-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f8fafc;
  font-style: italic;
}

.about-disclaimer-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-disclaimer-icon {
  font-size: 1.4rem;
  flex: none;
  line-height: 1;
  margin-top: 2px;
}

.about-disclaimer-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #fef3c7;
}

.about-disclaimer-text strong {
  color: #fbbf24;
}

/* RESPONSIVE LAYOUT FOR TABLETS & MOBILES */
@media (max-width: 1100px) {
  .main-wrapper {
    padding-left: 180px;
    padding-right: 180px;
  }
}

@media (max-width: 768px) {
  .main-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .game-cards-row {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
