/* Unified Stylesheet for Centro Strategico Rinascimento */

/* ==========================================================================
   File: css/reset.css
   ========================================================================== */

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   File: css/variables.css
   ========================================================================== */

:root {
  --color-bg-primary: #0D0F1A;        /* Deep navy-black */
  --color-bg-secondary: #13172B;      /* Slightly lighter panel */
  --color-bg-card: #1A1F38;          /* Card backgrounds */
  --color-accent-gold: #C9A84C;       /* Primary gold accent */
  --color-accent-gold-light: #E8CB7A; /* Hover/highlight gold */
  --color-accent-crimson: #8B1A2F;    /* Secondary accent */
  --color-text-primary: #F0EDE6;      /* Warm white */
  --color-text-secondary: #A8A5B0;    /* Muted grey */
  --color-text-gold: #C9A84C;
  --color-border: #2C3154;
  --color-border-gold: #C9A84C;
  --color-success: #2E7D5E;
  --color-error: #8B1A2F;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Courier Prime', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 20px rgba(201,168,76,0.25);

  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;
}

/* ==========================================================================
   File: css/global.css
   ========================================================================== */

/* Global Styles */
body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
  min-width: 320px;
}

@media (min-width: 600px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 900px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1440px;
    padding: 0 80px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-primary);
}

h1 {
  font-size: 52px;
  font-weight: 700;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

em {
  font-style: italic;
  color: var(--color-accent-gold-light);
}

.text-gold {
  color: var(--color-text-gold);
}

.bg-secondary {
  background-color: var(--color-bg-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  cursor: pointer;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-full {
  display: flex;
  width: 100%;
}

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

.btn-gold:hover {
  background-color: var(--color-accent-gold-light);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
}

.btn-outline:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-gold);
}

/* Sections */
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 50px;
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 18px;
  color: var(--color-text-secondary);
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-text {
  flex: 1;
}

.section-image {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 15, 26, 0.85);
  backdrop-filter: blur(4px);
  padding: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

@media (min-width: 900px) {
  .section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
  
  .section-grid--image-right .section-image {
    order: 2;
  }
  
  .section-grid--image-right .section-text {
    order: 1;
  }
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  padding: 12px 16px;
  transition: var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.15);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 4px;
}

.form-checkbox a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

.field-error {
  display: block;
  color: #ff5555;
  font-size: 12px;
  margin-top: 5px;
  min-height: 18px;
}

.form-success {
  background-color: rgba(46, 125, 94, 0.15);
  border: 1px solid var(--color-success);
  color: #62c39d;
  padding: 15px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

/* ==========================================================================
   File: css/header.css
   ========================================================================== */

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  transition: var(--transition-base);
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }
}

.site-header.scrolled {
  background: rgba(13, 15, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(44, 49, 84, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1010;
}

.header-logo img {
  width: 48px;
  height: 48px;
}

@media (max-width: 768px) {
  .header-logo img {
    width: 36px;
    height: 36px;
  }
}

.header-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.5px;
}

.header-brand-name em {
  font-style: italic;
  color: var(--color-accent-gold);
}

@media (max-width: 480px) {
  .header-brand-name {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }
  .header-logo img {
    width: 32px;
    height: 32px;
  }
  .header-logo {
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .header-brand-name {
    font-size: 12px;
  }
  .header-logo img {
    width: 28px;
    height: 28px;
  }
}

/* Primary Nav */
.header-nav {
  display: none;
}

@media (min-width: 1400px) {
  .header-nav {
    display: block;
  }
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: var(--transition-base);
  padding: 8px 0;
  position: relative;
}

.header-nav a:hover {
  color: var(--color-accent-gold-light);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Actions: Lang Toggle + Auth CTA */
.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1400px) {
  .header-actions {
    display: flex;
  }
}

.lang-toggle {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  transition: var(--transition-base);
}

.lang-toggle span {
  transition: var(--transition-base);
}

.lang-toggle span.active {
  color: var(--color-accent-gold);
}

.lang-toggle:hover {
  color: var(--color-text-primary);
}

.lang-sep {
  opacity: 0.5;
  cursor: default;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 0;
}

@media (min-width: 1400px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Dropdown */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--color-bg-secondary);
  border-left: 1px solid var(--color-border);
  padding: 100px 30px 40px;
  transition: var(--transition-slow);
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: var(--transition-base);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(44, 49, 84, 0.3);
}

.mobile-nav a:hover {
  color: var(--color-accent-gold);
  padding-left: 5px;
}

/* ==========================================================================
   File: css/footer.css
   ========================================================================== */

/* Footer Styles */
.site-footer {
  background-color: #080A12;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 0;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 0;
  }
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 600px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

/* Brand info */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-secondary);
  max-width: 300px;
}

/* Social links */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: var(--transition-base);
}

.footer-socials a img {
  width: 20px;
  height: 20px;
  filter: invert(72%) sepia(31%) saturate(583%) hue-rotate(5deg) brightness(91%) contrast(85%); /* gold color filter */
}

.footer-socials a:hover {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}

.footer-socials a:hover img {
  filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%); /* black icon on gold */
}

/* Payments */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-payments img {
  height: 26px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition-base);
}

.footer-payments img:hover {
  opacity: 1;
}

/* Partners (GamCare / BeGambleAware) */
.footer-partners {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-partners a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  opacity: 0.9;
  transition: all 0.25s ease-in-out;
  color: #080a12;
}

.footer-partners a:hover {
  opacity: 1;
  border-color: var(--color-accent-gold);
  background-color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.footer-partners img {
  height: 32px;
  width: auto;
  display: block;
}

/* Nav Columns */
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-gold);
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: var(--transition-base);
}

.footer-nav-col a:hover {
  color: var(--color-accent-gold-light);
  padding-left: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  background-color: #06070c;
  padding: 40px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  padding: 20px;
  border-radius: var(--radius-md);
}

@media (max-width: 600px) {
  .footer-disclaimer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.age-badge {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--color-accent-gold);
  border: 2px solid var(--color-accent-gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.footer-disclaimer p {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.footer-disclaimer a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

.footer-legal-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 12px;
  color: #7b7885;
  line-height: 1.7;
}

.footer-legal-text p {
  color: inherit;
  margin: 0;
}

/* ==========================================================================
   File: css/cookie-banner.css
   ========================================================================== */

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-secondary);
  border-top: 2px solid var(--color-accent-gold);
  z-index: 2000;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
  padding: 24px 0;
  font-family: var(--font-body);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.cookie-banner-text p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 10px;
}

.cookie-banner-text a {
  font-size: 13px;
  color: var(--color-accent-gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
    min-width: 120px;
  }
}

/* Preferences panel */
.cookie-preferences {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-pref-item {
  display: flex;
  align-items: center;
}

.cookie-pref-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.cookie-pref-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent-gold);
}

.cookie-preferences button {
  align-self: flex-start;
}

/* ==========================================================================
   File: css/ai-chat.css
   ========================================================================== */

/* AI Chat Widget Styles */
.ai-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  font-family: var(--font-body);
}

@media (max-width: 480px) {
  .ai-chat-widget {
    bottom: 20px;
    right: 20px;
  }
}

.ai-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-base);
  padding: 0;
}

.ai-chat-toggle:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
  transform: scale(1.05);
}

.ai-chat-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.ai-chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-accent-crimson);
  color: var(--color-text-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

/* Chat Panel */
.ai-chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  height: 480px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), var(--shadow-gold);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ai-chat-panel.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 480px) {
  .ai-chat-panel {
    width: calc(100vw - 40px);
    height: 400px;
    right: 0;
  }
}

.ai-chat-header {
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat-header span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent-gold-light);
}

#aiChatClose {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-base);
}

#aiChatClose:hover {
  color: var(--color-text-primary);
}

.ai-chat-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: rgba(13, 15, 26, 0.4);
}

.ai-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  line-height: 1.5;
}

.ai-msg.ai {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.ai-msg.user {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
  align-self: flex-end;
  font-weight: 500;
  border-bottom-right-radius: 0;
}

.ai-chat-input-wrap {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-secondary);
}

.ai-chat-input-wrap input {
  flex-grow: 1;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  outline: none;
  font-size: 13.5px;
  transition: var(--transition-base);
}

.ai-chat-input-wrap input:focus {
  border-color: var(--color-accent-gold);
}

.ai-chat-input-wrap .btn {
  padding: 10px 16px;
}

/* ==========================================================================
   File: css/age-gate.css
   ========================================================================== */

/* Age Gate Styles */
.age-gate {
  position: fixed;
  inset: 0;
  background-color: rgba(13, 15, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.age-gate.visible {
  display: flex;
  opacity: 1;
}

.age-gate-box {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-gold);
}

@media (max-width: 480px) {
  .age-gate-box {
    padding: 30px 20px;
  }
}

.age-gate-box img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.age-gate-box h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 15px;
}

.age-gate-box p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.age-gate-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .age-gate-actions {
    flex-direction: column;
  }
  .age-gate-actions .btn {
    width: 100%;
  }
}

.age-gate-note {
  font-size: 12px;
  color: #7b7885;
}

.age-gate-note a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

/* ==========================================================================
   File: css/cards.css
   ========================================================================== */

/* Cards Styles */
.games-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
}

.games-preview-header h3 {
  margin: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 600px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card item */
.game-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 76, 0.15);
}

.game-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.game-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.game-card:hover .game-card-img-wrap img {
  transform: scale(1.05);
}

/* Hover overlay slide up */
.game-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 15, 26, 0.98) 0%, rgba(13, 15, 26, 0.7) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.game-card:hover .game-card-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tap-to-show overlay trigger class */
.game-card.touch-active .game-card-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.game-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars {
  color: var(--color-accent-gold);
  font-size: 14px;
}

.rating-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.game-card-hover-overlay .game-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text-primary);
}

.game-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-card-actions .btn {
  width: 100%;
}

/* Bottom info panel (visible by default) */
.game-card-info {
  padding: 16px;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 12px;
}

.game-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  background-color: rgba(201, 168, 76, 0.08);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-right: 6px;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   File: css/hero.css
   ========================================================================== */

/* Hero Section Styles */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(13, 15, 26, 0.4) 0%, rgba(13, 15, 26, 0.95) 100%),
              linear-gradient(to bottom, rgba(13, 15, 26, 0.6) 0%, rgba(13, 15, 26, 0.98) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-accent-gold-light);
  letter-spacing: 2px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  background: rgba(201, 168, 76, 0.05);
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
  width: 100%;
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  border-top: 1px solid rgba(44, 49, 84, 0.5);
  padding-top: 40px;
  max-width: 600px;
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 15px;
    padding-top: 30px;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent-gold);
  line-height: 1;
}

@media (max-width: 480px) {
  .stat-num {
    font-size: 28px;
  }
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   File: css/pages/home.css
   ========================================================================== */

/* Homepage Specific Styles */

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Pros and Cons Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.pros-card, .cons-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 480px) {
  .pros-card, .cons-card {
    padding: 24px;
  }
}

.pros-card h3, .cons-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.pros-card h3 {
  color: #62c39d;
  border-bottom-color: rgba(46, 125, 94, 0.3);
}

.cons-card h3 {
  color: #ff5555;
  border-bottom-color: rgba(139, 26, 47, 0.3);
}

.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pros-list li, .cons-list li {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

/* Custom list markers to replace emojis */
.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(46, 125, 94, 0.15);
  border: 1px solid var(--color-success);
  color: #62c39d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.cons-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(139, 26, 47, 0.15);
  border: 1px solid var(--color-error);
  color: #ff5555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* Editorial Columns */
.editorial-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .editorial-columns {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.editorial-block h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.editorial-block p {
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

/* Comparison Table */
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background-color: var(--color-bg-card);
  color: var(--color-accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.comparison-table td {
  color: var(--color-text-secondary);
  background-color: var(--color-bg-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.yes {
  color: #62c39d;
  font-weight: 500;
}

.comparison-table td.neutral {
  color: var(--color-text-primary);
}

.mobile-label {
  display: none;
}

/* Responsive Table styling for mobile */
@media (max-width: 768px) {
  .comparison-table-wrap {
    overflow-x: visible;
    border: none;
    box-shadow: none;
  }

  .comparison-table {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table tr {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
  }

  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    border: none;
  }

  .comparison-table th {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--color-accent-gold);
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: 1px solid var(--color-border);
  }

  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background-color: transparent;
    border-bottom: 1px solid rgba(44, 49, 84, 0.25);
  }

  .comparison-table td:last-child {
    border-bottom: none;
  }

  .mobile-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
  }

  .cell-value {
    display: block;
    font-size: 14px;
    text-align: right;
  }
}

/* FAQ Accordions */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-accent-gold);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  outline: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--color-accent-gold);
  transition: var(--transition-base);
}

.faq-question[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(13, 15, 26, 0.3);
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Conclusion wrap */
.conclusion-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

@media (max-width: 480px) {
  .conclusion-wrap {
    padding: 30px 20px;
  }
}

.conclusion-wrap h2 {
  margin-bottom: 20px;
}

.conclusion-wrap p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.conclusion-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 480px) {
  .conclusion-cta {
    flex-direction: column;
  }
  .conclusion-cta .btn {
    width: 100%;
  }
}

/* ==========================================================================
   File: css/pages/policy.css
   ========================================================================== */

/* Policy Page Styles */
.policy-page {
  padding: 140px 0 80px;
  background-color: var(--color-bg-primary);
}

@media (max-width: 768px) {
  .policy-page {
    padding: 100px 0 60px;
  }
}

.policy-container {
  max-width: 960px;
  margin: 0 auto;
}

.policy-container h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 10px;
  color: var(--color-text-primary);
  text-align: left;
}

@media (max-width: 768px) {
  .policy-container h1 {
    font-size: 32px;
  }
}

.policy-effective {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  letter-spacing: 1px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
}

.policy-body {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
}

.policy-body h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 40px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-body h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: var(--color-accent-gold);
  border-radius: var(--radius-sm);
}

.policy-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.policy-body ul, .policy-body ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.policy-body ul {
  list-style-type: square;
}

.policy-body ol {
  list-style-type: decimal;
}

.policy-body li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--color-text-secondary);
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.policy-table th, .policy-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
}

.policy-table th {
  background-color: var(--color-bg-secondary);
  color: var(--color-accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.policy-table td {
  color: var(--color-text-secondary);
  background-color: var(--color-bg-primary);
}

.policy-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   File: css/pages/game-detail.css
   ========================================================================== */

/* Game Detail Page Styles */

/* Page Hero */
.game-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .game-hero {
    min-height: auto;
    padding-top: 100px;
  }
}

.game-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.25;
}

.game-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
}

.game-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 15, 26, 0.8) 0%, rgba(13, 15, 26, 1) 100%);
  z-index: 2;
}

.game-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .game-hero-content {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }
}

.game-hero-text h1 {
  font-size: 46px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .game-hero-text h1 {
    font-size: 32px;
  }
}

.game-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.game-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-hero-text p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
}

.game-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-accent-gold);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  aspect-ratio: 1/1;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .game-hero-img {
    max-width: 100%;
  }
}

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

/* Demo Section */
.game-demo-section {
  padding: 60px 0;
  background-color: var(--color-bg-secondary);
}

.game-demo-container {

  margin: 0 auto;
}

.game-demo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.game-demo-placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: var(--transition-slow);
}

.game-demo-placeholder:hover .game-demo-placeholder-img {
  opacity: 0.45;
  transform: scale(1.02);
}

.game-demo-play-btn {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.play-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-base);
  color: var(--color-bg-primary);
}

.play-icon-circle svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  margin-left: 4px;
  /* offset play triangle slightly for balance */
}

.game-demo-placeholder:hover .play-icon-circle {
  background-color: var(--color-accent-gold-light);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

.play-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Specifications Table */
.game-specs-table-wrap {
  margin: 40px 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.game-specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.game-specs-table th,
.game-specs-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}

.game-specs-table th {
  background-color: var(--color-bg-secondary);
  color: var(--color-accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  width: 35%;
}

.game-specs-table td {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.game-specs-table tr:last-child th,
.game-specs-table tr:last-child td {
  border-bottom: none;
}

/* Description Details */
.game-details-content {
  padding: 80px 0;
}

.game-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 900px) {
  .game-details-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }
}

.game-review-body h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-text-primary);
}

.game-review-body h2:first-child {
  margin-top: 0;
}

.game-review-body p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: justify;
}

/* Related Games section */
.related-games {
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
}

.related-games h2 {
  text-align: center;
  margin-bottom: 40px;
}

.related-games .games-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .related-games .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Iframe container styling */
.qeq {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-bg-primary);
}

.qeq iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   File: css/pages/auth.css
   ========================================================================== */

/* Authentication Page Styles */
.auth-section {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-primary);
}

@media (max-width: 768px) {
  .auth-section {
    padding: 100px 0 60px;
  }
}

.auth-container {
  display: flex;
  justify-content: center;
}

.auth-card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

@media (max-width: 480px) {
  .auth-card {
    padding: 30px 20px;
  }
}

.auth-card h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 480px) {
  .auth-card h1 {
    font-size: 26px;
  }
}

.auth-card p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.form-row--space-between {
  justify-content: space-between;
}

.form-checkbox-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-checkbox-inline input {
  accent-color: var(--color-accent-gold);
}

.link-gold {
  color: var(--color-accent-gold);
  font-weight: 500;
  transition: var(--transition-base);
}

.link-gold:hover {
  color: var(--color-accent-gold-light);
  text-decoration: underline;
}

.auth-switch {
  text-align: center;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--color-text-secondary);
}

.auth-switch a {
  color: var(--color-accent-gold);
  font-weight: 600;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   File: css/pages/contact.css
   ========================================================================== */

/* Contact Page Styles */
.contact-hero {
  padding: 140px 0 60px;
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 40px;
  }
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.contact-main {
  padding: 80px 0;
  background-color: var(--color-bg-primary);
}

@media (max-width: 768px) {
  .contact-main {
    padding: 60px 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

.contact-form-wrap, .contact-info-wrap {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 480px) {
  .contact-form-wrap, .contact-info-wrap {
    padding: 24px;
  }
}

.contact-form-wrap h2, .contact-info-wrap h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

/* Info wrap specific list styling */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-info-block p {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-info-block p strong {
  color: var(--color-text-primary);
  font-size: 16px;
}

.contact-info-block a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

.contact-info-block a:hover {
  color: var(--color-accent-gold-light);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.contact-map iframe {
  display: block;
}

/* ==========================================================================
   Pricing Cards Section (Virtual Currency Page)
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

@media (min-width: 600px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pricing-card {
  position: relative;
  width: 100%;
  background-color: rgba(18, 20, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 45px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.pricing-card:hover {
  transform: translateY(-8px);
}

/* Card Borders & Glows */
.pricing-card.bronze {
  border-color: #c59b6c;
}
.pricing-card.bronze:hover {
  box-shadow: 0 0 20px rgba(197, 155, 108, 0.25);
}

.pricing-card.silver {
  border-color: #9c27b0;
}
.pricing-card.silver:hover {
  box-shadow: 0 0 25px rgba(156, 39, 176, 0.4);
}

.pricing-card.gold {
  border-color: var(--color-accent-gold);
}
.pricing-card.gold:hover {
  box-shadow: var(--shadow-gold);
}

.pricing-card.platinum {
  border-color: #70d6ff;
}
.pricing-card.platinum:hover {
  box-shadow: 0 0 20px rgba(112, 214, 255, 0.25);
}

/* Popular Ribbon */
.pricing-card.popular {
  border-width: 2.5px;
  border-color: #e91e63;
  overflow: hidden;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: -32px;
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 35px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

/* Typography & Layout inside Cards */
.pricing-card .plan-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-card .plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 25px;
}

.pricing-card .plan-price .price-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-top: 6px;
  margin-right: 2px;
}

.pricing-card .plan-price .price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
}

.pricing-card .plan-price .price-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  align-self: flex-end;
  margin-left: 4px;
}

.pricing-card .plan-features {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  flex-grow: 1;
  padding: 0;
  list-style: none;
}

.pricing-card .plan-features li {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-card .plan-features li.check::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .plan-features li.cross::before {
  content: '✗';
  color: #8b1a2f;
  font-weight: 700;
  font-size: 16px;
}

.pricing-card .plan-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-text-primary);
  text-align: center;
}

.pricing-card .plan-btn:hover {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: #080a12;
  box-shadow: var(--shadow-gold);
}

.pricing-card.silver .plan-btn {
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.pricing-card.silver .plan-btn:hover {
  background: linear-gradient(135deg, #b43fc4, #f43878);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
  transform: translateY(-2px);
  color: #fff;
}


.footer-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  margin-top: 24px;
  font-size: 13px;
  color: #7b7885;
}

.footer-address-text {
  text-align: right;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-copyright-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-address-text {
    text-align: center;
  }
}




