:root {
  --bg: #09090B;
  --surface: #171717;
  --glass: rgba(255, 255, 255, 0.05);
  --gold: #D4AF37;
  --purple: #6D28D9;
  --burgundy: #7F1D1D;
  --champagne: #F8F4E3;
  --text-primary: #FAFAFA;
  --text-secondary: #D4D4D8;
  --muted: #A1A1AA;
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Top Banner */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--bg);
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header */
.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 75px;
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

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

.brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  flex: 1;
}

.brand-logo span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 40px;
  flex: 2;
  justify-content: center;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
}

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

.header-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  background: var(--champagne);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: 1px solid var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

/* VIP Entry Room */
.vip-entry-section {
  position: relative;
  min-height: 100vh;
  padding-top: 135px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}

.vip-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.2;
}

.vip-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(9,9,11,0.8) 50%, rgba(9,9,11,0.4) 100%);
  z-index: -1;
}

.vip-grid {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 60px;
  align-items: center;
}

.welcome-panel h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--champagne);
}

.welcome-panel p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 90%;
}

.welcome-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  color: var(--muted);
}

.game-presentation {
  width: 100%;
}

.game-frame {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--gold);
  border-radius: 22px;
  padding: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
  backdrop-filter: blur(10px);
}

.game-controls {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.game-controls button {
  background: transparent;
  border: none;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.game-controls button:hover {
  color: var(--champagne);
}

.iframe-container {
  width: 100%;
  height: 65vh;
  min-height: 500px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  background: #000;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Game Lounge */
.game-lounge-section {
  padding: 100px 0;
  background: var(--bg);
}

.lounge-wrapper {
  display: flex;
  flex-direction: column;
}

.info-block {
  display: grid;
  grid-template-columns: 3fr 7fr;
  padding: 40px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.info-block:last-child {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.info-block h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 400;
}

.info-block p {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 300;
}

/* Event Panels */
.event-panels-section {
  padding: 60px 0;
  background: var(--surface);
}

.event-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  margin-bottom: 40px;
}

.event-panel.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.event-panel.reverse > * {
  direction: ltr;
}

.panel-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
}

.panel-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 80%;
  font-weight: 300;
}

.panel-image {
  position: relative;
  overflow: hidden;
}

.panel-image img {
  width: 100%;
  height: 100%;
  transition: transform 1.5s ease;
}

.event-panel:hover .panel-image img {
  transform: scale(1.05);
}

/* Panel Three - Centered */
.panel-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 150px 0;
  background: var(--bg);
}

.panel-centered .deco-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 40px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  padding: 5px;
}

.panel-centered .deco-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.panel-centered h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.panel-centered p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Member Lounge */
.member-lounge-section {
  padding: 150px 0;
  background: var(--bg);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 80px;
  align-items: center;
}

.editorial-text h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 30px;
}

.editorial-text .lead {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--champagne);
}

.editorial-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 300;
}

.editorial-image img {
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Support Desk */
.support-desk-section {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.support-info h2 {
  font-size: 3rem;
  margin-bottom: 50px;
}

.info-group {
  margin-bottom: 40px;
}

.info-group h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}

.support-email {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.info-text {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.faq-list {
  margin-top: 50px;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item h5 {
  font-size: 1.1rem;
  color: var(--champagne);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-secondary);
  font-weight: 300;
}

.contact-form-wrapper {
  background: var(--glass);
  padding: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
  color: var(--text-primary);
  font-family: var(--font-main);
  border-radius: 4px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.6);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 18px;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 40px 0;
  background-color: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

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

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-notices {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-notices span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.copyright {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Legal Pages Styling */
.legal-page {
  padding-top: 165px;
  padding-bottom: 100px;
}

.legal-header {
  margin-bottom: 60px;
  text-align: center;
}

.legal-header h1 {
  font-size: 3.5rem;
  color: var(--champagne);
  margin-bottom: 20px;
}

.legal-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  padding: 60px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--gold);
  margin: 40px 0 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-weight: 300;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 10px;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .vip-grid {
    grid-template-columns: 4fr 6fr;
  }
  .welcome-panel h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .top-banner {
    font-size: 0.6rem;
    line-height: 1.2;
    padding: 0 10px;
    text-align: center;
  }
  
  .main-nav, .header-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .vip-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .welcome-panel p {
    margin: 0 auto 30px;
  }
  
  .welcome-actions {
    justify-content: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .event-panel, .event-panel.reverse {
    grid-template-columns: 1fr;
  }
  
  .panel-content {
    padding: 60px 40px;
  }
  
  .panel-image {
    min-height: 400px;
  }
  
  .editorial-layout {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .info-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .vip-entry-section {
    padding-top: 115px;
  }
  
  .welcome-panel h2 {
    font-size: 2.5rem;
  }
  
  .iframe-container {
    height: 50vh;
    min-height: 400px;
  }
  
  .panel-content h2 {
    font-size: 2.5rem;
  }
  
  .panel-content p {
    max-width: 100%;
  }
  
  .panel-centered h2 {
    font-size: 2.5rem;
  }
  
  .legal-content {
    padding: 30px 20px;
  }
  
  /* Mobile Sticky Play */
  .mobile-sticky-play {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 999;
    display: block;
  }
}

/* Mobile Nav Active State */
.main-nav.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  background: var(--bg);
  padding: 40px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}