:root {
  --royal-blue: #14213d;
  --gold: #ffd166;
  --sky-blue: #3b82f6;
  --gold-dim: #c9a84c;
  --text-light: #e8eaf0;
  --card-bg: #1a2d52;
  --border-gold: 1px solid #ffd166;
}

* { box-sizing: border-box; }

html,
body {
  overflow-x: clip;
  width: 100%;
}

body {
  background-color: var(--royal-blue);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}

.navbar {
  background: #0d1a30;
  border-bottom: 2px solid var(--gold);
  padding: 0.6rem 1rem;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler { border-color: var(--gold); }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffd166' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-gold {
  background: var(--gold);
  color: #14213d;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 0.45rem 1.2rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover {
  background: #f0c040;
  transform: translateY(-1px);
  color: #14213d;
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  padding: 0.45rem 1.2rem;
  background: transparent;
  transition: all 0.2s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #14213d;
}

.hero-section {
  background: linear-gradient(135deg, #0d1a30 0%, #14213d 50%, #1a2d52 100%);
  padding: 80px 0 60px;
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
}

.hero-section h1 span { color: var(--gold); }

.hero-copy {
  color: #b0bcd4;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-badge {
  display: inline-block;
  background: var(--sky-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.image-placeholder {
  background: transparent;
}

.hero-img {
  border-radius: 12px;
  border: 2px solid var(--gold);
  width: 100%;
  height: 380px;
  max-height: 380px;
}

.intro-img,
.editorial-img {
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  width: 100%;
  min-height: 360px;
}

.break-img {
  width: 100%;
  height: 340px;
  max-height: 340px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.3rem;
}

.section-title span { color: var(--gold); }

.title-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 2rem;
}

.title-left { margin: 0 0 1.5rem; }

.eyebrow {
  color: var(--sky-blue);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.body-copy {
  color: #b0bcd4;
  line-height: 1.8;
}

.section-subtitle {
  color: #8899bb;
  max-width: 560px;
  margin: 0 auto;
}

.gold-card {
  background: var(--card-bg);
  border: var(--border-gold);
  border-radius: 12px;
  padding: 1.5rem;
  height: auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gold-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,209,102,0.15);
}

.gold-card .icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255,209,102,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.gold-card h5 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gold-card p {
  color: #b0bcd4;
  font-size: 0.9rem;
  margin: 0;
}

.step-card {
  background: var(--card-bg);
  border: var(--border-gold);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #14213d;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h5 {
  color: #fff;
  font-size: 1.05rem;
}

.step-card p {
  color: #b0bcd4;
  font-size: 0.88rem;
  margin: 0;
}

.plan-card {
  background: var(--card-bg);
  border: var(--border-gold);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}

.plan-card:hover { transform: translateY(-5px); }

.plan-card.featured {
  border-color: var(--sky-blue);
  box-shadow: 0 0 30px rgba(59,130,246,0.25);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-card .plan-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.plan-card .plan-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
}

.plan-card .plan-price span {
  font-size: 1rem;
  color: #b0bcd4;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  text-align: left;
}

.plan-card ul li {
  color: #c8d4e8;
  font-size: 0.9rem;
  padding: 5px 0;
}

.plan-card ul li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 8px;
  font-weight: 700;
}

.privacy-notice {
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--sky-blue);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
}

.privacy-notice .bi {
  color: var(--sky-blue);
  font-size: 1.3rem;
}

.privacy-notice h5 {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 0.4rem;
}

.privacy-notice p {
  color: #b0bcd4;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.privacy-notice p:last-child { margin: 0; }

.privacy-notice a {
  color: var(--sky-blue);
  text-decoration: underline;
}

.stats-strip {
  background: #0d1a30;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 0;
}

.stat-item { text-align: center; }

.stat-item .stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: #8899bb;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-thumb {
  border-radius: 10px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.game-thumb:hover {
  border-color: var(--gold);
  transform: scale(1.03);
}

.game-image-placeholder {
  width: 100%;
  height: 180px;
  display: block;
  background: transparent;
}

.game-thumb .game-label {
  background: #0d1a30;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 10px;
  text-align: center;
}

.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 50px 0; }
.alt-section { background: #111e35; }

.responsible-box {
  background: var(--card-bg);
  border: var(--border-gold);
  border-radius: 14px;
  padding: 2rem;
}

.responsible-box h4 {
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 0.5rem;
}

.responsible-box h4 .bi { color: #ef4444; }

.responsible-box p {
  color: #b0bcd4;
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

footer {
  background: #0a1525;
  border-top: 2px solid var(--gold);
  padding: 50px 0 24px;
}

footer .footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}

footer .footer-desc {
  color: #7a8faa;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  max-width: 280px;
}

footer h6 {
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

footer a {
  color: #8899bb;
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}

footer a:hover { color: var(--gold); }

.footer-email {
  color: #4a5f7a;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid #1e3060;
  margin-top: 2rem;
  padding-top: 1.2rem;
  color: #4a5f7a;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero-section { padding: 50px 0 40px; }
  .section-pad { padding: 50px 0; }
  .hero-img { height: 300px; }
  .intro-img,
  .editorial-img { min-height: 260px; }
  .break-img { height: 240px; }
}

.site-logo { height: 44px; width: auto; max-width: 150px; object-fit: contain; display: block; }

main,
.hero-section,
.page-hero,
.section-pad,
.section-pad-sm {
  position: relative;
}

body {
  background:
    linear-gradient(180deg, #0a1525 0%, #14213d 34%, #111e35 100%);
}

.hero-section,
.page-hero {
  padding: 72px 0 52px;
}

.hero-section .row,
.page-hero .row {
  row-gap: 2rem;
}

.hero-section .container,
.page-hero .container,
.section-pad .container,
.section-pad-sm .container,
footer .container {
  max-width: 1180px;
}

.section-pad {
  padding: 64px 0;
}

.section-pad-sm {
  padding: 46px 0;
}

.section-pad + .section-pad,
.section-pad-sm + .section-pad,
.section-pad + .section-pad-sm {
  border-top: 1px solid rgba(255, 209, 102, 0.08);
}

.gold-card,
.step-card,
.plan-card,
.responsible-box,
.privacy-notice {
  border-radius: 8px;
  min-height: 100%;
}

.gold-card,
.step-card,
.plan-card {
  display: flex;
  flex-direction: column;
}

.gold-card p,
.step-card p,
.plan-card p {
  flex: 1;
}

.hero-img,
.intro-img,
.editorial-img,
.break-img,
.game-image-placeholder {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.hero-img {
  aspect-ratio: 16 / 11;
  height: auto;
  max-height: none;
}

.intro-img,
.editorial-img {
  aspect-ratio: 4 / 3;
  min-height: 0;
  object-fit: cover;
}

.break-img {
  height: auto;
  aspect-ratio: 21 / 8;
  object-fit: cover;
}

.stats-strip .row {
  align-items: stretch;
}

.stat-item {
  padding: 0.85rem 0.5rem;
}

footer {
  padding: 58px 0 24px;
}

footer .row {
  row-gap: 2rem;
}

footer a {
  line-height: 1.45;
  margin-bottom: 8px;
}

.footer-bottom {
  align-items: flex-start;
}

@media (min-width: 992px) {
  .hero-section,
  .page-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
  }

  footer .col-lg-4 {
    padding-right: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section,
  .page-hero {
    padding: 58px 0 44px;
  }

  .section-pad {
    padding: 52px 0;
  }
}

@media (max-width: 575.98px) {
  .hero-section,
  .page-hero {
    padding: 44px 0 34px;
  }

  .section-pad {
    padding: 42px 0;
  }

  .section-pad-sm {
    padding: 34px 0;
  }

  .hero-img,
  .intro-img,
  .editorial-img {
    aspect-ratio: 1 / 1;
  }

  .break-img {
    aspect-ratio: 4 / 3;
  }

  footer {
    padding: 42px 0 22px;
  }
}

body {
  background: #091527;
}

body > section:not(.hero-section):not(.page-hero):not(.stats-strip),
main > section:not(.hero-section):not(.page-hero):not(.stats-strip) {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero-section,
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  border: 1px solid rgba(255, 209, 102, 0.7);
  border-bottom: 1px solid rgba(255, 209, 102, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(13, 26, 48, 0.98), rgba(20, 33, 61, 0.94)),
    #0d1a30;
  padding: 46px;
  min-height: 0;
  overflow: hidden;
}

.hero-section::before,
.page-hero::before,
.page-hero::after {
  display: none;
}

.hero-section .container,
.page-hero .container {
  padding-left: 0;
  padding-right: 0;
}

.hero-section .row,
.page-hero .row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 2rem;
  margin-left: 0;
  margin-right: 0;
}

.hero-section .row > [class*="col-"],
.page-hero .row > [class*="col-"] {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.hero-section h1,
.page-hero h1 {
  max-width: 760px;
}

.hero-copy,
.page-hero p[style*="line-height"] {
  max-width: 680px !important;
}

.stats-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
  border: 1px solid rgba(255, 209, 102, 0.55);
  border-radius: 8px;
  background: #0d1a30;
}

.section-pad,
.section-pad-sm {
  background: transparent;
}

.section-pad .container,
.section-pad-sm .container {
  background: rgba(13, 26, 48, 0.45);
  border: 1px solid rgba(255, 209, 102, 0.14);
  border-radius: 8px;
  padding: 34px;
}

.alt-section {
  background: transparent;
}

.alt-section .container {
  background: rgba(17, 30, 53, 0.72);
}

.gold-card,
.step-card,
.plan-card,
.responsible-box,
.privacy-notice {
  background: #10223d;
  border-color: rgba(255, 209, 102, 0.45);
}

.gold-card:hover,
.step-card:hover,
.plan-card:hover {
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 209, 102, 0.18);
}

.hero-img,
.intro-img,
.editorial-img,
.break-img,
.game-image-placeholder {
  border-radius: 8px;
  border-color: rgba(255, 209, 102, 0.7);
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 18px;
  border: 1px solid rgba(255, 209, 102, 0.7);
  border-radius: 8px;
  background: #081323;
}

footer .container {
  padding-left: 34px;
  padding-right: 34px;
}

footer .row {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 2rem;
}

footer .row > [class*="col-"] {
  width: auto;
  max-width: none;
}

@media (max-width: 991.98px) {
  .hero-section,
  .page-hero {
    padding: 34px;
  }

  .hero-section .row,
  .page-hero .row {
    grid-template-columns: 1fr;
  }

  footer .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  body > section:not(.hero-section):not(.page-hero):not(.stats-strip),
  main > section:not(.hero-section):not(.page-hero):not(.stats-strip),
  .hero-section,
  .page-hero,
  .stats-strip,
  footer {
    width: calc(100% - 20px);
  }

  .hero-section,
  .page-hero,
  .section-pad .container,
  .section-pad-sm .container,
  footer .container {
    padding: 22px;
  }

  footer .row {
    grid-template-columns: 1fr;
  }
}
