/* ==========================================================
   Custom Styles — Evolua Digital Showcase
   Color Palette:
   --red:           #e63946
   --light:         #f1faee
   --light-blue:    #a8dadc
   --blue:          #457b9d
   --dark-blue:     #1d3557
   ========================================================== */

:root {
  --red: #e63946;
  --light: #f1faee;
  --light-blue: #a8dadc;
  --blue: #457b9d;
  --dark-blue: #1d3557;
  --text: #2c3e50;
  --text-muted: #6c7a89;
  --white: #ffffff;
  --border: #e0e6ed;
  --shadow: 0 2px 16px rgba(29, 53, 87, 0.08);
  --shadow-lg: 0 8px 32px rgba(29, 53, 87, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

/* --- Base --- */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-blue);
  font-weight: 600;
}

a {
  color: var(--blue);
  transition: color var(--transition);
}

a:hover {
  color: var(--dark-blue);
}

/* --- Navbar --- */
.navbar {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-blue);
  letter-spacing: -0.02em;
}

.navbar .navbar-brand:hover {
  color: var(--blue);
}

.navbar .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: color var(--transition);
}

.navbar .nav-link:hover {
  color: var(--red);
}

.navbar .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  padding: 0.35rem 2rem 0.35rem 0.75rem;
  background-color: var(--light);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(69, 123, 157, 0.2);
}

/* --- Hero Section --- */
.hero-section {
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 3rem;
}

.hero-section h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-section .lead {
  color: var(--light-blue);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}

.btn-hero {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: all var(--transition);
}

.btn-hero:hover,
.btn-hero:focus {
  background-color: #c1303b;
  border-color: #c1303b;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
  transform: translateY(-2px);
}

/* --- Services Section --- */
.services-section {
  padding: 3rem 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-blue);
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: var(--light-blue);
}

.service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--blue);
  transition: color var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--dark-blue);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- Section Headings --- */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 1rem auto 2.5rem;
}

/* --- About Section --- */
.about-section {
  padding: 4rem 0;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.about-section p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-highlight {
  border-left: 4px solid var(--red);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

/* --- CTA Section --- */
.cta-section {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.cta-section h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--light-blue);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn-primary {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  border-radius: var(--radius-sm);
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  transition: all var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #152a45;
  border-color: #152a45;
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.3);
}

.btn-outline-light {
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all var(--transition);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

/* --- Alerts --- */
.alert {
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.9rem;
}

.alert-info {
  background-color: rgba(168, 218, 220, 0.2);
  color: var(--dark-blue);
}

.alert-danger {
  background-color: rgba(230, 57, 70, 0.1);
  color: #842029;
}

/* --- Footer --- */
.footer {
  background: var(--dark-blue) !important;
  padding: 2rem 0;
  margin-top: auto;
}

.footer p {
  color: var(--light-blue);
  font-size: 0.85rem;
  margin: 0;
}

.footer .footer-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer .footer-tagline {
  color: var(--light-blue);
  font-size: 0.85rem;
}

.footer .footer-copy {
  color: rgba(168, 218, 220, 0.6);
  font-size: 0.8rem;
}

/* --- Error Pages --- */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.error-page .error-code {
  font-size: 7rem;
  font-weight: 700;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page h2 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.error-page p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* --- Language Selector --- */
.lang-globe-icon {
  color: var(--text-muted);
}

.lang-select {
  width: auto;
}

/* --- Utility --- */
.bg-app {
  background-color: var(--light);
}

/* --- Privacy Policy Page --- */
.policy-section {
  padding: 4rem 0 5rem;
}

.policy-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.policy-updated {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.policy-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-table {
  font-size: 0.9rem;
}

.policy-table thead th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.policy-table td code {
  background-color: #f1f3f5;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem 2.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }
}

/* --- Featured Projects Section --- */
.projects-section {
  padding: 80px 0;
  background: #fff;
}

.project-card-link {
  text-decoration: none;
  display: block;
}

.project-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.project-icon {
  font-size: 2rem;
  line-height: 1;
}

.project-status-badge {
  display: inline-block;
  background: rgba(0, 200, 120, 0.1);
  color: #00a86b;
  border: 1px solid rgba(0, 200, 120, 0.3);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.project-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.project-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

/* ================================================================
   GUESS THE GOOGLE — Presentation Page
   Color palette: #9b5de5 #f15bb5 #fee440 #00bbf9 #00f5d4
   ================================================================ */

/* --- Shared section layout --- */
.gtg-section { padding: 80px 0; }
.gtg-section-light { background: var(--light); }
.gtg-section-white { background: #fff; }
.gtg-section-dark { background: #0f1e30; }

.gtg-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gtg-section-header-dark .gtg-section-title,
.gtg-section-header-dark .gtg-section-sub {
  color: #fff;
}
.gtg-section-header-dark .gtg-section-sub { color: rgba(255,255,255,0.6); }

.gtg-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}
.gtg-section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* --- Hero --- */
.gtg-hero {
  position: relative;
  background: #0f1e30;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}
.gtg-hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.gtg-orb-1 {
  width: 500px; height: 500px;
  background: #9b5de5;
  top: -180px; left: -120px;
}
.gtg-orb-2 {
  width: 400px; height: 400px;
  background: #f15bb5;
  top: -100px; right: -100px;
}
.gtg-orb-3 {
  width: 300px; height: 300px;
  background: #00bbf9;
  bottom: -100px; left: 40%;
}
.gtg-hero-inner { position: relative; z-index: 1; }

.gtg-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.gtg-pill-type {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.gtg-pill-live {
  display: inline-flex;
  align-items: center;
  background: rgba(0,200,120,0.15);
  color: #00e090;
  border: 1px solid rgba(0,200,120,0.35);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 600;
}
.gtg-live-dot {
  font-size: 0.45rem;
  animation: gtg-pulse 1.8s ease-in-out infinite;
}
@keyframes gtg-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.gtg-hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
}
.gtg-title-accent {
  background: linear-gradient(90deg, #fee440, #f15bb5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gtg-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.gtg-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.gtg-btn-play {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #9b5de5, #f15bb5);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(155,93,229,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}
.gtg-btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(155,93,229,0.6);
  color: #fff;
}
.gtg-btn-play-lg {
  font-size: 1.15rem;
  padding: 18px 44px;
}
.gtg-btn-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 24px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.gtg-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

/* --- Stat strip --- */
.gtg-stat-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px 36px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}
.gtg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.gtg-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fee440;
  line-height: 1;
}
.gtg-stat-unit {
  font-size: 1.1rem;
  font-weight: 600;
}
.gtg-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.gtg-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* --- How to Play: steps --- */
.gtg-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gtg-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.gtg-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.gtg-step-num-1 { background: linear-gradient(135deg, #9b5de5, #7b3fc4); }
.gtg-step-num-2 { background: linear-gradient(135deg, #f15bb5, #d43d96); }
.gtg-step-num-3 { background: linear-gradient(135deg, #00bbf9, #0090c8); }
.gtg-step-num-4 { background: linear-gradient(135deg, #00f5d4, #00c4a8); }
.gtg-step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}
.gtg-step-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* --- Game UI Mockup --- */
.gtg-mockup {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}
.gtg-mockup-bar {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gtg-mockup-dots { display: flex; gap: 6px; }
.gtg-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.gtg-dot-red { background: #ff5f57; }
.gtg-dot-yellow { background: #febc2e; }
.gtg-dot-green { background: #28c840; }
.gtg-mockup-url {
  flex: 1;
  background: #0f1e30;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  text-align: center;
}
.gtg-mockup-body {
  background: #162032;
  padding: 20px;
}

.gtg-ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 16px;
}
.gtg-ui-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 2px;
}
.gtg-ui-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.gtg-ui-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gtg-ui-timer .gtg-ui-value { font-size: 1.5rem; }
.gtg-color-purple { color: #9b5de5 !important; }
.gtg-color-yellow { color: #fee440 !important; }
.gtg-ui-jokers {
  text-align: right;
}
.gtg-joker-icon { font-size: 1rem; }
.gtg-joker-used { opacity: 0.25; }

.gtg-ui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.gtg-ui-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.25);
}
.gtg-tile-a { background: rgba(155,93,229,0.35); }
.gtg-tile-b { background: rgba(241,91,181,0.35); }
.gtg-tile-c { background: rgba(254,228,64,0.25); }
.gtg-tile-d { background: rgba(0,187,249,0.3); }
.gtg-tile-e { background: rgba(155,93,229,0.25); }
.gtg-tile-f { background: rgba(0,245,212,0.25); }
.gtg-tile-g { background: rgba(241,91,181,0.25); }
.gtg-tile-h { background: rgba(0,187,249,0.25); }
.gtg-tile-i { background: rgba(254,228,64,0.2); }

.gtg-ui-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.gtg-ui-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
}
.gtg-ui-input-placeholder {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.gtg-ui-submit {
  background: linear-gradient(135deg, #9b5de5, #f15bb5);
  border: none;
  border-radius: 8px;
  width: 42px;
  color: #fff;
  font-size: 0.9rem;
  cursor: default;
}
.gtg-ui-streak {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding-top: 4px;
}
.gtg-ui-streak strong { color: #fee440; }

/* --- Game Modes --- */
.gtg-mode-card {
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease;
}
.gtg-mode-card:hover { transform: translateY(-4px); }
.gtg-mode-solo {
  background: linear-gradient(145deg, rgba(155,93,229,0.15), rgba(155,93,229,0.05));
  border-color: rgba(155,93,229,0.25);
}
.gtg-mode-versus {
  background: linear-gradient(145deg, rgba(0,187,249,0.15), rgba(0,187,249,0.05));
  border-color: rgba(0,187,249,0.25);
}
.gtg-mode-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.gtg-mode-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.gtg-mode-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.gtg-mode-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gtg-mode-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.gtg-mode-solo .gtg-mode-perks li i { color: #9b5de5; }
.gtg-mode-versus .gtg-mode-perks li i { color: #00bbf9; }

/* --- Feature cards --- */
.gtg-feat-card {
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  border-left: 4px solid;
  background: #fff;
  box-shadow: 0 2px 12px rgba(29,53,87,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gtg-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(29,53,87,0.12);
}
.gtg-feat-purple { border-left-color: #9b5de5; }
.gtg-feat-pink   { border-left-color: #f15bb5; }
.gtg-feat-yellow { border-left-color: #fee440; }
.gtg-feat-cyan   { border-left-color: #00bbf9; }
.gtg-feat-teal   { border-left-color: #00f5d4; }

.gtg-feat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.gtg-feat-purple .gtg-feat-icon { color: #9b5de5; }
.gtg-feat-pink   .gtg-feat-icon { color: #f15bb5; }
.gtg-feat-yellow .gtg-feat-icon { color: #c8a800; }
.gtg-feat-cyan   .gtg-feat-icon { color: #00bbf9; }
.gtg-feat-teal   .gtg-feat-icon { color: #00c4a8; }

.gtg-feat-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.4rem;
}
.gtg-feat-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* --- Tech grid --- */
.gtg-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.gtg-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gtg-tech-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gtg-tech-icon { font-size: 1.8rem; }
.gtg-tech-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-blue);
}

/* --- Play CTA section --- */
.gtg-play-cta {
  position: relative;
  background: #0f1e30;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.gtg-play-cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,93,229,0.3), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.gtg-play-cta-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00e090;
  font-weight: 600;
  margin-bottom: 1rem;
}
.gtg-play-cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.gtg-play-cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}
.gtg-play-cta-back {
  margin-top: 2rem;
  margin-bottom: 0;
}
.gtg-back-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.gtg-back-link:hover { color: rgba(255,255,255,0.8); }
