:root {
  --primary: #1dba84;
  --secondary: #0e7c66;
  --accent: #f3c85a;
  --background: #081311;
  --surface: #12211d;
  --text-primary: #eaf7f2;
  --text-secondary: #a9c5bb;
  --border: rgba(29, 186, 132, 0.2);
  --font-heading: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

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

.section-padding {
  padding: 5rem 0;
}

.surface-tint {
  background-color: var(--surface);
}

.mb-4 {
  margin-bottom: 2rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}

/* Typography & Utilities */
.kinetic-text {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -1px;
  background: linear-gradient(90deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 186, 132, 0.3);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--background);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--background);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--background);
}

.btn-text {
  background: none;
  color: var(--accent);
  padding: 0.5rem;
}

.btn-text:hover {
  background: rgba(243, 200, 90, 0.1);
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  background-color: rgba(8, 19, 17, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding-block: 10px;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.burger-line:nth-child(1) {
  top: 0;
}
.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger-line:nth-child(3) {
  bottom: 0;
}

/* Hero Dashboard (Asymmetric) */
.hero-dashboard-command {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(29, 186, 132, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(14, 124, 102, 0.2) 0%,
      transparent 50%
    );
  border-bottom: 1px solid var(--border);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 1.5rem;
}

.hero-emphasis-trust-first {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.trust-badge {
  background-color: rgba(29, 186, 132, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-support-trust-strip {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-stat strong {
  font-size: 1.5rem;
  color: var(--accent);
  font-family: var(--font-heading);
}

.trust-stat span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-dashboard-panel {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dashboard-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.dashboard-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.dashboard-header p {
  color: var(--primary);
  font-size: 0.9rem;
}

.control-group {
  margin-bottom: 1.2rem;
}

.control-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.dashboard-controls select,
.dashboard-controls input,
.filter-input {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  border-radius: 4px;
  outline: none;
  font-size: 1rem;
  transition: var(--transition);
}

.dashboard-controls select:focus,
.dashboard-controls input:focus,
.filter-input:focus {
  border-color: var(--primary);
}

/* Games Ribbon */
.games-ticker {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--surface);
}

.games-ticker::-webkit-scrollbar {
  height: 6px;
}
.games-ticker::-webkit-scrollbar-track {
  background: var(--surface);
}
.games-ticker::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

.game-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  white-space: nowrap;
}

.game-chip:hover {
  background-color: rgba(29, 186, 132, 0.1);
  transform: translateY(-2px);
}

.game-chip-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.game-chip-label {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Featured Tournaments / Catalog Grid */
.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.featured-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tournament-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.tournament-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-media {
  position: relative;
  height: 180px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-accent {
  background-color: var(--accent);
  color: var(--background);
}

.badge-dark {
  background-color: rgba(8, 19, 17, 0.8);
  color: var(--primary);
  backdrop-filter: blur(4px);
  border: 1px solid var(--primary);
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.game-title {
  color: var(--primary);
  font-weight: 600;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-facts {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.card-facts li {
  margin-bottom: 0.4rem;
}

.card-facts strong {
  color: var(--text-primary);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin-top: auto;
}

/* Trust Story */
.split-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-proof-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.proof-card {
  background-color: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.proof-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.proof-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Compare Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.process-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(29, 186, 132, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Editorial Guide */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.editorial-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 3rem;
}

.editorial-column h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.editorial-column h3:first-child {
  margin-top: 0;
}

.editorial-column p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Article Cards */
.editorial-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 8px;
}

.article-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.article-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Division Matrix & Checklist */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.check-item {
  background-color: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.check-item h5 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.check-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Reviews */
.review-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--background);
  padding: 2rem;
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-quote {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-quote strong {
  color: var(--primary);
}

.review-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Local Guide */
.local-guide-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Accordion FAQ */
.accordion-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "+";
  color: var(--primary);
  font-size: 1.5rem;
}

.accordion-header[aria-expanded="true"]::after {
  content: "-";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Catalog specific */
.sticky-filter-bar {
  position: sticky;
  top: 80px;
  background-color: rgba(18, 33, 29, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 90;
  border-bottom: 1px solid var(--border);
}

.filter-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-container > * {
  flex: 1;
  min-width: 150px;
}

.filter-container .btn {
  flex: 0 0 auto;
}

/* Compare Tray */
.compare-tray {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--surface);
  border-top: 2px solid var(--primary);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.compare-tray.active {
  transform: translateY(0);
}

.compare-tray-inner {
  padding: 1.5rem;
}

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

.compare-tray-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.compare-item {
  background-color: var(--background);
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
}

.compare-item h5 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.9rem;
  padding-right: 20px;
}

.compare-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.remove-compare {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Visual Games Grid */
.game-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.wide-card {
  grid-column: 1 / -1;
}

.game-visual-card {
  position: relative;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.game-visual-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.game-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.game-visual-card:hover .game-card-bg {
  transform: scale(1.05);
}

.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(8, 19, 17, 0.95) 0%,
    rgba(8, 19, 17, 0.4) 60%,
    rgba(8, 19, 17, 0.1) 100%
  );
}

.game-visual-card:hover .game-card-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 19, 17, 0.9) 0%,
    rgba(8, 19, 17, 0.3) 60%,
    rgba(8, 19, 17, 0) 100%
  );
}

.game-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.game-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.game-fit-bullets {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

.game-fit-bullets li {
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
}

.game-fit-bullets li::before {
  content: "→";
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Division Matrix Table */
.matrix-table-wrapper {
  overflow-x: auto;
}

.division-matrix {
  width: 100%;
  border-collapse: collapse;
}

.division-matrix th,
.division-matrix td {
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: left;
}

.division-matrix th {
  background-color: var(--background);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.division-matrix td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Tournament Detail Tabs / Content */
.tournament-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.tournament-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.tournament-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    var(--background) 0%,
    rgba(8, 19, 17, 0.6) 100%
  );
  z-index: 1;
}

.tournament-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.detail-sidebar {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  height: fit-content;
}

.fact-item {
  margin-bottom: 1.5rem;
}

.fact-item h6 {
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.fact-item p {
  font-size: 1.1rem;
  font-weight: 500;
}

.detail-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}
.tab-pane p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 19, 17, 0.9);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-links ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--surface);
  border: 1px solid var(--primary);
  padding: 1rem 2rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1500;
  transition: bottom 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 600px;
}

.cookie-banner.active {
  bottom: 20px;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 108px;
    left: 0;
    width: 100%;
    background-color: rgba(8, 19, 17, 0.95);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.active {
    display: flex;
  }
  .burger-menu {
    display: block;
    margin-left: 1rem;
  }
  .header-actions {
    display: flex;
    align-items: end;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .split-story-layout,
  .editorial-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .compare-tray-items {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .kinetic-text {
    font-size: 2rem;
  }
  .section-padding {
    padding: 3rem 0;
  }
}

/* Social Casino — Tournaments Page */
.page-social-casino .catalog-hero {
  position: relative;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--background);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.age-badge-hero {
  margin-bottom: 1.5rem;
}

.age-badge-large {
  min-width: 3.25rem;
  height: 3.25rem;
  font-size: 1.15rem;
}

.age-badge-footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  min-width: 2.5rem;
  height: 2.5rem;
}

.register-form-card {
  max-width: 560px;
  margin: 3rem auto 0;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.register-form-card h3 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.register-form-lead {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.register-form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.game-iframe-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.game-demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-embed-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.casino-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.casino-game-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.casino-game-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(29, 186, 132, 0.15);
}

.casino-game-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--background);
}

.casino-game-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casino-game-preview .badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.casino-game-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
}

.casino-game-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.casino-game-genre {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.casino-game-body .btn {
  margin-top: auto;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  transition: var(--transition);
}

.social-link-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.social-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.social-icon-telegram {
  background: linear-gradient(135deg, #2aabee, #229ed9);
}
.social-icon-telegram::before {
  content: "TG";
}
.social-icon-discord {
  background: linear-gradient(135deg, #5865f2, #4752c4);
}
.social-icon-discord::before {
  content: "DC";
}
.social-icon-vk {
  background: linear-gradient(135deg, #4c75a3, #3d6289);
}
.social-icon-vk::before {
  content: "VK";
}
.social-icon-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}
.social-icon-youtube::before {
  content: "YT";
}

.social-link-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.social-link-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.disclaimer-block {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.disclaimer-block h3 {
  color: var(--accent);
  margin-bottom: 0;
}

.disclaimer-block p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.disclaimer-block p:last-child {
  margin-bottom: 0;
}

.help-resources {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.help-resources h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.help-resources-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.help-resources-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.help-resources-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .game-iframe-wrapper {
    aspect-ratio: 4 / 3;
  }

  .register-form-card {
    padding: 1.5rem;
  }

  .disclaimer-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

input, select {
  min-height: 40px;
  width: 100%;
  padding: 0 10px;
  background: #59595988;
  border: none;
  color: #fff;
}

textarea {
  min-height: 100px;
  width: 100%;
  padding: 0 10px;
  background: #59595988;
  border: none;
  color: #fff;
}