/* DeSocialPrize.com - Premium Gaming Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables - Premium Gaming Colors */
:root {
  /* Primary Gaming Colors */
  --gaming-dark: #0a0a0f;
  --gaming-darker: #050508;
  --gaming-medium: #1a1a2e;
  --gaming-light: #16213e;
  --gaming-accent: #2d3561;
  --luxury-gold: #ffd700;
  --luxury-gold-light: #ffed4e;
  --luxury-gold-dark: #cc9900;
  
  /* Gaming Gradients */
  --gold-gradient: linear-gradient(135deg, #ffd700, #ffed4e);
  --dark-gradient: linear-gradient(135deg, #0a0a0f, #1a1a2e);
  --gaming-gradient: linear-gradient(135deg, #1a1a2e, #2d3561);
  --accent-gradient: linear-gradient(135deg, #16213e, #2d3561);
  --glow-gradient: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  
  /* Gaming Shadows & Glows */
  --gaming-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --gold-glow: 0 0 20px rgba(255, 215, 0, 0.5);
  --gold-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  --deep-shadow: 0 12px 48px rgba(0, 0, 0, 0.8);
  --neon-glow: 0 0 30px rgba(255, 215, 0, 0.6);
  
  /* Gaming Text */
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #b0b0b0;
  --text-light: #888888;
  --text-gold: #ffd700;
  
  /* Borders */
  --border-light: 1px solid #e0e0e0;
  --border-gold: 1px solid var(--luxury-gold);
  --border-dark: 1px solid #333333;
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gaming-dark);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Gaming Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45, 53, 97, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(22, 33, 62, 0.2) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Gaming Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  color: var(--luxury-gold);
}

h3 {
  font-size: 1.8rem;
  color: var(--text-gold);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Gaming Header */
.header {
  background: var(--gaming-medium);
  border-bottom: 2px solid var(--luxury-gold);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(26, 26, 46, 0.95);
  box-shadow: var(--gaming-shadow);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--luxury-gold);
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: var(--gold-glow);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
  100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.logo::before {
  content: '⬟';
  color: var(--luxury-gold-light);
  margin-right: 0.5rem;
  font-size: 1.2rem;
  animation: logoSpin 4s linear infinite;
}

@keyframes logoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--luxury-gold);
  text-shadow: var(--gold-glow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
  box-shadow: var(--gold-glow);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Gaming Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--gaming-dark);
  border: 2px solid var(--luxury-gold);
  box-shadow: var(--gold-glow);
}

.btn-primary:hover {
  background: var(--luxury-gold-light);
  color: var(--gaming-darker);
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--luxury-gold);
  border: 2px solid var(--luxury-gold);
  box-shadow: var(--gold-glow);
}

.btn-secondary:hover {
  background: var(--luxury-gold);
  color: var(--gaming-dark);
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
}

.btn-outline {
  background: var(--gaming-gradient);
  color: var(--text-secondary);
  border: 2px solid var(--gaming-accent);
}

.btn-outline:hover {
  background: var(--accent-gradient);
  color: var(--luxury-gold);
  border-color: var(--luxury-gold);
  box-shadow: var(--gold-glow);
}

/* Gaming Cards */
.card {
  background: var(--gaming-gradient);
  border: 2px solid var(--gaming-accent);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--deep-shadow);
  border-color: var(--luxury-gold);
  box-shadow: var(--gold-glow);
}

.card-luxury {
  background: var(--accent-gradient);
  border: 2px solid var(--luxury-gold);
  position: relative;
  box-shadow: var(--gold-glow);
}

.card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  box-shadow: var(--gold-glow);
}

/* Gaming Hero Section */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--dark-gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glow-gradient);
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: var(--neon-glow);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  100% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Game Cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.game-card {
  background: var(--luxury-white);
  border: var(--border-light);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--deep-shadow);
}

.game-card:hover .game-image {
  transform: scale(1.05);
}

.game-image {
  height: 240px;
  background: var(--light-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  border-bottom: var(--border-light);
}

.game-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-image::before {
  opacity: 1;
}

.game-content {
  padding: 2rem;
}

.game-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--luxury-black);
  margin-bottom: 0.5rem;
}

.game-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 18+ Badge */
.age-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--luxury-gold);
  color: var(--luxury-white);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
  font-family: 'Inter', sans-serif;
}

.header-badge {
  position: static;
  display: inline-block;
  margin-left: 1.5rem;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  background: var(--luxury-gold);
  color: var(--luxury-white);
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--luxury-dark-gray);
  color: var(--text-on-dark);
}

.section-light {
  background: var(--luxury-light-gray);
}

/* Footer */
.footer {
  background: var(--luxury-black);
  color: var(--text-on-dark);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--luxury-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--luxury-medium-gray);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Disclaimer */
.disclaimer {
  background: var(--luxury-light-gray);
  border-left: 4px solid var(--luxury-gold);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.disclaimer .age-badge {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Gaming Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gaming-medium);
  border-top: 3px solid var(--luxury-gold);
  padding: 2rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: var(--gaming-shadow), var(--gold-glow);
  backdrop-filter: none;
  opacity: 1;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text h3 {
  color: var(--luxury-gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  text-shadow: var(--gold-glow);
}

.cookie-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 1rem 2rem;
  border: 2px solid var(--luxury-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Orbitron', monospace;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.cookie-btn::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;
}

.cookie-btn:hover::before {
  left: 100%;
}

.cookie-btn.accept {
  background: var(--gold-gradient);
  color: var(--gaming-dark);
  box-shadow: var(--gold-glow);
}

.cookie-btn.accept:hover {
  background: var(--luxury-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--neon-glow);
}

.cookie-btn.decline {
  background: var(--gaming-gradient);
  color: var(--text-secondary);
  border: 2px solid var(--gaming-accent);
}

.cookie-btn.decline:hover {
  background: var(--accent-gradient);
  color: var(--luxury-gold);
  border-color: var(--luxury-gold);
  box-shadow: var(--gold-glow);
}

/* Form Styles */
.form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--luxury-black);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: var(--border-light);
  background: var(--luxury-white);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Game Warning */
.game-warning {
  background: var(--luxury-light-gray);
  border-left: 4px solid var(--luxury-gold);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 2rem 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Luxury Dividers */
.divider {
  width: 100px;
  height: 1px;
  background: var(--luxury-gold);
  margin: 3rem auto;
}

.divider-full {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--luxury-gold), transparent);
  margin: 3rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .hero {
    padding: 4rem 2rem;
  }
  
  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .nav > div {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .header-badge {
    margin-left: 0;
    align-self: center;
  }

  .hero {
    padding: 3rem 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .card {
    padding: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .form-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .card {
    padding: 1.5rem;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }

  .age-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .header-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .games-grid {
    gap: 1rem;
  }

  .game-content {
    padding: 1.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* Luxury Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.gold-shimmer {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  background-size: 200% 100%;
  animation: goldShimmer 2s ease-in-out infinite;
}

/* Luxury Focus States */
.luxury-focus:focus {
  outline: 2px solid var(--luxury-gold);
  outline-offset: 2px;
}

/* Premium Spacing */
.luxury-spacing {
  margin: 4rem 0;
}

.luxury-spacing-large {
  margin: 6rem 0;
}
