/* Modern Promotion Page Design */

/* Global Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Custom Reset & Base */
:root {
  /* Modern Color Palette */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Colors */
  --primary: #667eea;
  --secondary: #f5576c;
  --accent: #4facfe;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Glassmorphism */
  --glass-light: rgba(255, 255, 255, 0.1);
  --glass-medium: rgba(255, 255, 255, 0.15);
  --glass-strong: rgba(255, 255, 255, 0.2);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-primary: 'Inter', 'Sarabun', sans-serif;
  --font-display: 'Space Grotesk', 'Prompt', sans-serif;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--dark-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px; /* Space for sticky buttons */
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

/* Container System */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles - From Homepage */
.header {
  background-color: #111111;
  border-bottom: 1px solid #333333;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Navigation */
.desktop-nav {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #ff6b35;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 1px;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background-color: #1a1a1a;
  border-top: 1px solid #333333;
  padding: 1rem 0;
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.mobile-nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: #ff6b35;
  padding-left: 10px;
}

.mobile-cta-button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-decoration: none;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles - From Homepage */
.footer {
  background-color: #111111;
  border-top: 1px solid #333333;
  padding: 2rem 0;
  margin-top: 4rem;
}

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

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #cccccc;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.footer-link:hover {
  color: #ff6b35;
  transform: translateY(-1px);
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-link:hover::after {
  width: 100%;
}

/* Sticky Buttons Styles - From Homepage */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #333333;
}

.sticky-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.sticky-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.sticky-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.sticky-button:hover::before {
  left: 100%;
}

.login-btn {
  background: linear-gradient(135deg, #1a1a1a, #333333);
  color: #ffffff;
  border-color: #444444;
}

.login-btn:hover {
  background: linear-gradient(135deg, #333333, #1a1a1a);
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.register-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
}

.register-btn:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.credit-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Glassmorphism Components */
.glass-card {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: inherit;
  z-index: -1;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* Hero Section Redesign */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3)); }
  to { filter: drop-shadow(0 0 30px rgba(245, 87, 108, 0.3)); }
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-bottom: var(--space-xl);
}

/* Modern Button System */
.cta-primary, .cta-secondary, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 18px 36px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.cta-secondary {
  background: var(--secondary-gradient);
  color: white;
  box-shadow: 0 10px 40px rgba(245, 87, 108, 0.3);
}

.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(245, 87, 108, 0.4);
}

/* New Member Promotions Section */
.new-member-promotions {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  position: relative;
}

.promotion-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.promotion-card {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.promotion-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-size: 2rem;
}

.bonus-list ul {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-list li::before {
  content: '🎁';
  font-size: 1.5rem;
  flex-shrink: 0;
}

.promotion-cta {
  margin-top: var(--space-2xl);
  text-align: center;
}

/* Steps Design */
.promotion-steps {
  background: var(--glass-medium);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Existing Member Promotions */
.existing-member-promotions {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
}

.daily-promotions {
  margin-bottom: var(--space-3xl);
}

.promotions-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.promotion-item {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  transition: all 0.3s ease;
}

.promotion-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.promotion-item h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-item ul {
  list-style: none;
  padding: 0;
}

.promotion-item li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-item li::before {
  content: '💎';
  font-size: 1.2rem;
}

/* Game Promotions Section */
.game-promotions {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.game-promo-card {
  background: var(--glass-medium);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.game-promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--accent-gradient);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.game-promo-card h3 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.promo-features ul {
  list-style: none;
  padding: 0;
}

.promo-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-features li::before {
  content: '🎰';
  font-size: 1.3rem;
}

/* VIP Membership Section */
.vip-membership {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.95) 0%, rgba(71, 85, 105, 0.95) 100%);
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.vip-level {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.vip-level:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.vip-level.bronze { border-image: linear-gradient(135deg, #CD7F32, #B87333) 1; }
.vip-level.silver { border-image: linear-gradient(135deg, #C0C0C0, #A8A8A8) 1; }
.vip-level.gold { border-image: linear-gradient(135deg, #FFD700, #FFA500) 1; }
.vip-level.platinum { border-image: linear-gradient(135deg, #E5E4E2, #BCC6CC) 1; }

.vip-level h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.vip-level ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.vip-level li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-level li::before {
  content: '👑';
  font-size: 1.1rem;
}

/* Monthly Promotions */
.monthly-promotions {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
}

.event-highlight {
  background: var(--glass-medium);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  margin: var(--space-2xl) 0;
  position: relative;
}

.event-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--secondary-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.event-features ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

.event-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.event-features li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.event-features li::before {
  content: '🎉';
  font-size: 1.5rem;
  flex-shrink: 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.activity {
  background: var(--glass-light);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.activity:hover {
  transform: translateY(-5px);
  background: var(--glass-medium);
}

.activity p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Festival Promotions */
.festival-grid {
  display: grid;
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.festival-item {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.festival-item h4 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.festival-item ul {
  list-style: none;
  padding: 0;
}

.festival-item li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.festival-item li::before {
  content: '🎊';
  font-size: 1.2rem;
}

/* Promo Code Guide */
.promo-code-guide {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
}

.code-steps {
  margin: var(--space-2xl) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.guide-step {
  background: var(--glass-light);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.guide-step:hover {
  transform: translateY(-5px);
  background: var(--glass-medium);
}

.guide-step .step-number {
  margin: 0 auto var(--space-md) auto;
}

.guide-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.tips-section {
  background: var(--glass-medium);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.tips-section h4 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.tips-section ul {
  list-style: none;
  padding: 0;
}

.tips-section li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tips-section li::before {
  content: '💡';
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Games Section */
.games-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
}

.games-content {
  display: grid;
  gap: var(--space-3xl);
}

.slots-games, .baccarat-games {
  background: var(--glass-medium);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
}

.slots-games h3, .baccarat-games h3 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.games-highlight, .new-games, .baccarat-rooms {
  margin-bottom: var(--space-2xl);
}

.games-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.games-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.games-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.games-list li::before {
  content: '🎲';
  font-size: 1.3rem;
  flex-shrink: 0;
}

.baccarat-rooms ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.baccarat-rooms li::before {
  content: '🃏';
}

/* Terms and Conditions */
.terms-conditions {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
}

.terms-grid {
  display: grid;
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.terms-section {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.terms-section h4 {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.terms-group {
  margin-bottom: var(--space-xl);
}

.terms-group h5 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.terms-section ul {
  list-style: none;
  padding: 0;
}

.terms-section li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section li::before {
  content: '📋';
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.98) 0%, rgba(71, 85, 105, 0.98) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.faq-item {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  background: var(--glass-medium);
  box-shadow: var(--shadow-xl);
}

.faq-item h4 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Follow Promotions Section */
.follow-promotions {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
}

.channels-grid {
  margin: var(--space-2xl) 0;
}

.channel-section {
  background: var(--glass-medium);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
}

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-xl) 0;
}

.channel-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.channel-group h5 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.channel-group ul {
  list-style: none;
  padding: 0;
}

.channel-group li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-group li::before {
  content: '📱';
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* VIP Benefits */
.vip-benefits {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.vip-benefits-section, .vip-gifts-section {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.vip-benefits-section h5, .vip-gifts-section h5 {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.vip-benefits-section ul, .vip-gifts-section ul {
  list-style: none;
  padding: 0;
}

.vip-benefits-section li, .vip-gifts-section li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-benefits-section li::before {
  content: '🎁';
  font-size: 1.2rem;
}

.vip-gifts-section li::before {
  content: '💝';
  font-size: 1.2rem;
}

/* Summary Section */
.summary {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
  padding: var(--space-3xl) 0 120px 0;
}

.summary-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.highlights {
  background: var(--glass-medium);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  margin: var(--space-2xl) 0;
}

.highlights h3 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xl);
}

.highlights ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-md);
  text-align: left;
}

.highlights li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.highlights li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.highlights li::before {
  content: '⭐';
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefits {
  margin: var(--space-3xl) 0;
}

.benefits h3 {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2xl);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.benefit-item {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  background: var(--glass-medium);
  box-shadow: var(--shadow-xl);
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.benefit-content h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.benefit-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.final-cta {
  margin: var(--space-3xl) 0;
}

.cta-primary.large {
  padding: 24px 48px;
  font-size: 1.3rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
  text-align: left;
}

.disclaimer p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.brand-statement {
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0;
}

/* Utility Classes */
.center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .promotion-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .vip-levels {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --space-xs: 0.2rem;
    --space-sm: 0.4rem;
    --space-md: 0.8rem;
    --space-lg: 1.2rem;
    --space-xl: 1.6rem;
    --space-2xl: 2.4rem;
    --space-3xl: 3.2rem;
  }

  .container {
    padding: 0 15px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .footer {
    padding: 1.5rem 0;
    margin-top: 3rem;
  }

  .footer-nav {
    gap: 1.5rem;
    flex-direction: column;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  section {
    padding: var(--space-2xl) 0;
  }

  .hero {
    padding: 80px 0;
    min-height: 70vh;
  }

  .glass-card {
    padding: var(--space-xl);
  }

  .steps-list {
    gap: var(--space-md);
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .promotions-flex {
    grid-template-columns: 1fr;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .channels {
    grid-template-columns: 1fr;
  }

  .vip-features {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .mobile-nav-link {
    font-size: 1rem;
  }

  .mobile-cta-button {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .cta-primary, .cta-secondary, .cta-button {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .cta-primary.large {
    padding: 18px 32px;
    font-size: 1.1rem;
  }

  .promotion-card, .promotion-item, .game-promo-card {
    padding: var(--space-lg);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
  .glass-card {
    animation: fadeInUp 0.6s ease-out;
  }

  .glass-card:nth-child(odd) {
    animation-delay: 0.1s;
  }

  .glass-card:nth-child(even) {
    animation-delay: 0.2s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

/* Print styles */
@media print {
  .hero::before,
  .glass-card::before,
  .promotion-card::before,
  .event-highlight::before {
    display: none;
  }

  .glass-card {
    background: white;
    color: black;
    border: 1px solid #ccc;
  }
}