/* =========================================
   UK CASINO GAMES ONLINE - REDESIGN 2025
   Premium Dark Theme with Gold Accents
   ========================================= */

/* Google Fonts - Outfit & DM Sans */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  /* Primary Colors */
  --bg-base: #0B1120;
  --bg-card: #111827;
  --bg-elevated: #1a2332;
  --bg-hover: #243044;
  
  /* Accent Colors */
  --gold: #D4A853;
  --gold-bright: #F5C563;
  --gold-glow: rgba(212, 168, 83, 0.3);
  
  /* Secondary Accents */
  --emerald: #10B981;
  --emerald-glow: rgba(16, 185, 129, 0.2);
  
  /* Text Colors */
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(212, 168, 83, 0.3);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4A853 0%, #B8860B 100%);
  --gradient-dark: linear-gradient(180deg, #0B1120 0%, #111827 100%);
  --gradient-card: linear-gradient(145deg, #1a2332 0%, #111827 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(212, 168, 83, 0.2);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   HEADER
   ========================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

header .logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
}

header .logo h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Menu */
.desk-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desk-menu li a {
  display: block;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
}

.desk-menu li a:hover {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
}

.desk-menu li:first-child a {
  color: var(--gold);
}

/* Mobile Menu Button */
header button.btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header button.btn img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* Mobile Offcanvas */
.offcanvas {
  background: var(--bg-base) !important;
  border-left: 1px solid var(--border-subtle) !important;
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px;
}

.offcanvas-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
}

.mobile-nav {
  padding: 20px;
}

.mobile-nav li {
  margin-bottom: 8px;
}

.mobile-nav a {
  display: block;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  margin-top: 80px;
}

.footer-section {
  padding: 60px 0 40px;
}

/* Play Responsibly Box */
.play-responsibly-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: 35px;
  text-align: center;
  margin-bottom: 30px;
}

.play-responsibly-box h5 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 12px;
}

.play-responsibly-box p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.play-responsibly-box .gap-4 {
  gap: 20px !important;
}

.play-responsibly-box a {
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(30%);
}

.play-responsibly-box a:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.play-responsibly-box img {
  height: 28px !important;
  width: auto !important;
}

/* Age Warning */
.age-warning {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-warning strong {
  color: #EF4444;
  font-size: 18px;
  font-weight: 700;
}

.age-warning span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Disclaimer Box */
.disclaimer-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 35px;
}

.disclaimer-box h6 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.disclaimer-box p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.disclaimer-box strong {
  color: var(--text-secondary);
}

/* Footer Links */
.footer-links {
  margin-bottom: 25px;
}

.footer-links a {
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  padding: 0 12px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* Footer Logos */
.logos {
  margin-bottom: 30px;
}

.logos img {
  height: 32px;
  margin: 0 15px;
  opacity: 0.6;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}

.logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Copyright */
.copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* =========================================
   UTILITIES
   ========================================= */
.text-warning {
  color: var(--gold) !important;
}

.text-white {
  color: var(--text-primary) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Selection */
::selection {
  background: var(--gold);
  color: var(--bg-base);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 40px var(--gold-glow); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 30px;
  }
  
  .play-responsibly-box {
    padding: 25px;
  }
  
  .play-responsibly-box h5 {
    font-size: 18px;
  }
  
  .age-warning {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
