/*
Theme Name: Evolution Play Promo Clean
Theme URI: https://example.com
Author: Custom Theme
Author URI: https://example.com
Description: A clean premium editorial WordPress theme for online entertainment, promotions, live experience and safe play guidance.
Version: 1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: evolution-play-promo-clean
*/

/* =========================================================
   VARIABLES
========================================================= */

:root {
  --bg: #17110c;
  --bg-soft: #241a12;
  --paper: #2b2118;
  --paper-2: #3a2a1d;

  --text: #f8ead7;
  --muted: #c8b59e;
  --muted-2: #a98f76;

  --navy: #f8ead7;
  --emerald: #d5a25f;
  --emerald-soft: rgba(213, 162, 95, 0.14);

  --gold: #c98b4a;
  --gold-soft: rgba(201, 139, 74, 0.16);

  --rose: #b66a4c;

  --border: rgba(248, 234, 215, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);

  --radius: 22px;
  --radius-lg: 34px;
}

/* =========================================================
   BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(201, 139, 74, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(213, 162, 95, 0.14), transparent 32%),
    linear-gradient(180deg, #17110c 0%, #21170f 46%, #120d09 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(23, 17, 12, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: var(--text);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  position: relative;
  box-shadow: 0 12px 34px rgba(201, 139, 74, 0.22);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #17110c;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

.main-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(213, 162, 95, 0.14);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d5a25f, #8f5a32);
  color: #17110c;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(201, 139, 74, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(248, 234, 215, 0.08);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   COMMON
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d5a25f, #8f5a32);
  color: #17110c;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(201, 139, 74, 0.22);
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(201, 139, 74, 0.3);
}

.btn-light {
  background: rgba(248, 234, 215, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--emerald-soft);
  color: var(--emerald);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.label.gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.link {
  color: var(--emerald);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  padding: 92px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 24px;
  max-width: 780px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -3px;
  color: var(--text);
}

.hero h1 span {
  color: var(--emerald);
  font-style: italic;
}

.hero p {
  max-width: 680px;
  margin: 0;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(180deg, #2b2118, #241a12);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================
   EDITORIAL PANEL
========================================================= */

.editorial-panel {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #2b2118, #241a12);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.editorial-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(213, 162, 95, 0.24);
  border-radius: 26px;
  pointer-events: none;
}

.panel-top {
  position: relative;
  z-index: 2;
  min-height: 250px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(213, 162, 95, 0.16), rgba(201, 139, 74, 0.12)),
    #21170f;
}

.panel-top h3 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.05;
  color: var(--text);
}

.panel-top p {
  margin: 0;
}

.score-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.score-item {
  padding: 18px;
  border-radius: 18px;
  background: #21170f;
  border: 1px solid var(--border);
}

.score-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--emerald);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
}

.score-item span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 82px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 760px;
}

.section h2,
.page-hero h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -1.8px;
}

.section-copy p {
  margin: 0;
}

.feature-grid,
.article-grid,
.metric-grid,
.news-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.article-card,
.metric-card,
.news-card,
.guide-card,
.content-card {
  background: linear-gradient(180deg, #2b2118, #241a12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.article-card,
.news-card,
.guide-card {
  padding: 28px;
  min-height: 310px;
  transition: 0.25s ease;
}

.feature-card:hover,
.article-card:hover,
.news-card:hover,
.guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 162, 95, 0.28);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(201, 139, 74, 0.16);
  color: var(--gold);
  font-size: 28px;
}

.feature-card:nth-child(2) .icon,
.article-card:nth-child(2) .icon,
.guide-card:nth-child(2) .icon {
  background: rgba(213, 162, 95, 0.14);
  color: var(--emerald);
}

.feature-card h3,
.article-card h3,
.news-card h3,
.guide-card h3,
.content-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.12;
}

.feature-card p,
.article-card p,
.news-card p,
.guide-card p {
  margin: 0 0 18px;
}

/* =========================================================
   SPLIT SECTION / METRICS
========================================================= */

.split-section {
  background:
    radial-gradient(circle at top left, rgba(201, 139, 74, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(43, 33, 24, 0.7), rgba(23, 17, 12, 0.72));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 110px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 18px;
  background: #21170f;
  border: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d5a25f, #8f5a32);
  color: #17110c;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.metric-card {
  padding: 30px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--emerald);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 46px;
  letter-spacing: -1.4px;
}

.metric-card span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.5;
}

/* =========================================================
   TABLES
========================================================= */

.table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #2b2118;
  box-shadow: var(--shadow);
}

.info-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.55;
  vertical-align: top;
}

.info-table th {
  background: #21170f;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--emerald-soft);
  color: var(--emerald);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

/* =========================================================
   PAGE HERO / CONTENT
========================================================= */

.page-hero {
  padding: 78px 0 34px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--emerald);
}

.page-hero p {
  max-width: 860px;
  font-size: 20px;
}

.page-content {
  padding: 54px 0 92px;
}

.content-card {
  padding: 34px;
  margin-bottom: 24px;
}

.content-card h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.note {
  padding: 24px;
  margin: 28px 0;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(201, 139, 74, 0.16);
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================
   FAQ
========================================================= */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(180deg, #2b2118, #241a12);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-button span {
  color: var(--emerald);
}

.faq-content {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-content {
  display: block;
}

/* =========================================================
   CTA
========================================================= */

.cta {
  padding: 42px 0 96px;
}

.cta-box {
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(213, 162, 95, 0.18), transparent 34%),
    linear-gradient(135deg, #3a2a1d, #21170f);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  border: 1px solid var(--border);
}

.cta-box h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -1.8px;
}

.cta-box p {
  max-width: 720px;
  color: var(--muted);
}

.cta-box .btn {
  background: linear-gradient(135deg, #d5a25f, #c98b4a);
  color: #17110c;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: rgba(18, 13, 9, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  max-width: 680px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.age {
  color: var(--emerald);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1020px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .feature-grid,
  .article-grid,
  .metric-grid,
  .news-grid,
  .guide-grid,
  .two-col,
  .score-box {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    padding: 16px;
    border-radius: 22px;
    background: #2b2118;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    letter-spacing: -1.8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 34px 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 74px;
  }

  .logo span:last-child {
    max-width: 180px;
    line-height: 1.1;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -1.4px;
  }

  .content-card,
  .feature-card,
  .article-card,
  .news-card,
  .guide-card {
    padding: 24px;
    border-radius: 20px;
  }

  .info-table th,
  .info-table td {
    padding: 14px;
  }
}