/*
Theme Name: CasinoMoan V6
Description: Premium dark casino WordPress theme with stunning visuals
Version: 1.0
Text Domain: casinomoanv6
*/

:root {
  --primary-dark: #0d0d0d;
  --secondary-dark: #1a1a2e;
  --accent-purple: #120e1a;
  --gold-primary: #d4af37;
  --gold-light: #ffd700;
  --text-light: #ffffff;
  --text-gray: #b8b8b8;
  --gradient-hero: linear-gradient(135deg, #120e1a 0%, #1a1a2e 50%, #0d0d0d 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  --gradient-purple: linear-gradient(135deg, #6a0dad 0%, #4169e1 100%);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(13, 13, 13, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  padding: 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.main-navigation a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.main-navigation a:hover {
  color: var(--gold-primary);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.main-navigation a:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(106, 13, 173, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -2px;
  animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
  to { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)); }
}

.hero-subheadline {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 3rem;
  color: var(--text-gray);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

/* Floating Elements */
.hero-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Content Sections */
.content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; color: var(--gold-primary); }
h2 { font-size: 2rem; color: var(--text-light); }
h3 { font-size: 1.5rem; color: var(--text-light); }

p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

a {
  color: var(--gold-primary);
  transition: var(--transition);
}

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

/* Buttons */
.wp-block-button .wp-block-button__link,
.button {
  background: var(--gradient-gold) !important;
  color: var(--primary-dark) !important;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.wp-block-button .wp-block-button__link:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Footer */
.site-footer {
  background: var(--secondary-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

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

.age-notice {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-container {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .content-area {
    padding: 2rem 1rem;
  }
  
  .page-content {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-subheadline {
    font-size: 1.1rem;
  }
  
  .page-content {
    padding: 1.5rem 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states */
a:focus,
button:focus,
.hero-cta:focus,
.header-cta:focus {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}