/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
  color: #e8e8e8;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 16px;
}

/* Hintergrundvideo */
#bgVideo, #bgVideo2 {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.15) sepia(0.4) hue-rotate(250deg) saturate(1.5);
}

/* Navigation Menu Styles */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 2px solid #00d9ff;
  z-index: 1001;
  box-shadow: 0 4px 25px rgba(0, 217, 255, 0.3);
  backdrop-filter: blur(15px);
  height: 70px;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.navigation.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 8px;
  gap: 0;
  background: rgba(26, 26, 46, 0.9);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#age-continue {
  background: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 100%);
  color: #fff;
  border: 2px solid #00d9ff;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

#age-continue:hover {
  background: linear-gradient(135deg, #00f5ff 0%, #9d4edd 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.7);
}

#age-exit {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ff6b6b;
  border: 2px solid #ff4757;
}

#age-exit:hover {
  background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

/* Mobile Navigation Anpassungen */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .navigation {
    height: 70px;
    top: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    flex-direction: column;
    box-shadow: 0 10px 35px rgba(0, 217, 255, 0.4);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 25px 25px;
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-top: none;
    padding: 25px 20px;
    z-index: 1002;
    height: auto;
    gap: 12px;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 18px 25px;
    min-width: auto;
    font-size: 1.05rem;
    border-radius: 15px;
    margin-bottom: 5px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(123, 44, 191, 0.05) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
  }

  .nav-link:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(123, 44, 191, 0.15) 100%);
    transform: translateY(-2px);
  }

  .nav-link.active {
    background: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 50%, #9d4edd 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
  }

  .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }

  .navigation.hidden .nav-menu.active {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }

  .giveaway-title {
    font-size: 2.2rem;
  }
  
  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .prize-amount {
    font-size: 1.8rem;
  }
  
  .step {
    padding: 18px;
  }
  
  .step-content {
    margin-left: 18px;
  }

  .casino-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .casino-header {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    height: 170px;
    margin-top: 15px;
  }

  .hero-logo {
    width: 400vw;
    height: 440px;
  }

  .cta-button, .discord-link {
    padding: 18px 28px;
    font-size: 1.05rem;
  }

  .navigation {
    will-change: transform;
  }

  .casino-title h2 {
    font-size: 1.8rem;
  }

  .contact-header {
    font-size: 1.8rem;
  }

  .age-modal {
    padding: 35px 25px;
    max-width: 90%;
  }

  .age-modal p {
    font-size: 1.1rem;
  }

  .age-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .age-buttons button {
    width: 100%;
  }

  /* Casino Cards auf Mobile wieder untereinander */
  .casino-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Tablet Ansicht - auch 2 Spalten */
@media (min-width: 769px) and (max-width: 1200px) {
  .casino-list {
    gap: 20px;
    padding: 0 15px;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 28px;
  color: #00d9ff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 22px;
  min-width: 140px;
  justify-content: center;
  background: transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: rgba(0, 217, 255, 0.15);
  transform: translateY(-2px);
  color: #00f5ff;
}

.nav-link.active {
  background: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 50%, #9d4edd 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link.active:hover {
  background: linear-gradient(135deg, #00f5ff 0%, #9d4edd 50%, #c77dff 100%);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
}

.nav-link i {
  margin-right: 10px;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(0, 217, 255, 0.5));
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #00d9ff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

/* Body Padding */
body {
  padding-top: 70px;
}

/* Wrapper */
.wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 70px);
  margin-top: 0;
  padding-top: 0;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100vw;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: visible;
  z-index: 1;
  margin-top: 30px;
}

.hero-logo {
  width: 300vw;
  max-width: 1920px;
  height: 320px;
  object-fit: contain;
  border: none;
  position: relative;
  z-index: 2;
  background: transparent;
  filter: drop-shadow(0 8px 30px rgba(0, 217, 255, 0.6));
}

/* Container */
.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

/* Content Sections */
.content-section {
  display: none;
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.content-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Casino Cards Styles */
.casino-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.casino-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #16213e 0%, #0f3460 100%);
  border: 2px solid #00d9ff;
  border-radius: 20px;
  padding: 0;
  width: 100%;
  box-shadow: 0 10px 35px rgba(0, 217, 255, 0.3), inset 0 1px 0 rgba(0, 217, 255, 0.2);
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.casino-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 50px rgba(0, 217, 255, 0.5), 0 5px 20px rgba(0, 245, 255, 0.3);
  border-color: #00f5ff;
}

.casino-header {
  display: flex;
  align-items: center;
  padding: 28px 30px;
  background: linear-gradient(135deg, #0a0e27 0%, #16213e 100%);
  border-bottom: 1px solid rgba(0, 217, 255, 0.3);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.casino-header img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  object-fit: contain;
  border: 2px solid rgba(0, 217, 255, 0.3);
  transition: all 0.3s ease;
}

.casino-card:hover .casino-header img {
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.6);
  border-color: #00f5ff;
}

.casino-title {
  flex: 1;
}

.casino-title h2 {
  margin: 0 0 10px 0;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #00d9ff 0%, #00f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.casino-subtitle {
  color: #a8dadc;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 500;
}

.casino-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px;
  background: rgba(10, 14, 39, 0.6);
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 14px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(15, 52, 96, 0.3) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.info-item:hover::before {
  left: 100%;
}

.info-item:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(15, 52, 96, 0.5) 100%);
  border-color: #00f5ff;
  transform: translateY(-3px);
}

.info-label {
  font-size: 0.9rem;
  color: #00d9ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 217, 255, 0.4);
}

.info-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e8e8e8;
  word-break: break-word;
}

/* NEUE STYLES für hervorgehobene Werte */
.info-value.highlight {
  background: linear-gradient(135deg, #ffeb3b 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.6rem;
  font-weight: 900;
  text-shadow: 0 0 25px rgba(255, 235, 59, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

/* Spezielle Hervorhebung für Wager-Werte */
.info-item:nth-child(2) .info-value {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

/* Spezielle Hervorhebung für Bonus Code */
.info-item:nth-child(3) .info-value {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.casino-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 30px;
  background: linear-gradient(135deg, #0a0e27 0%, #16213e 100%);
  border-top: 1px solid rgba(0, 217, 255, 0.3);
  position: relative;
  z-index: 1;
}

.cta-button {
  background: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 50%, #9d4edd 100%);
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid rgba(0, 217, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #00f5ff 0%, #9d4edd 50%, #c77dff 100%);
  box-shadow: 0 12px 40px rgba(0, 245, 255, 0.6);
  transform: translateY(-3px);
  border-color: #00f5ff;
}

.cta-button:active {
  transform: translateY(-1px);
}

/* Giveaway Styles */
.giveaway-card {
  background: linear-gradient(145deg, #16213e 0%, #0f3460 100%);
  border: 3px solid #00d9ff;
  border-radius: 25px;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4), inset 0 1px 0 rgba(0, 217, 255, 0.2);
  color: white;
  overflow: hidden;
  animation: glow 3s ease-in-out infinite alternate;
  position: relative;
}

@keyframes glow {
  from { box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4); }
  to { box-shadow: 0 15px 50px rgba(0, 245, 255, 0.7); }
}

.giveaway-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 217, 255, 0.2) 90deg, transparent 180deg);
  animation: rotate 8s linear infinite;
  pointer-events: none;
}

.giveaway-header {
  background: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 50%, #9d4edd 100%);
  color: #fff;
  text-align: center;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.giveaway-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

.giveaway-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.prize-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 2.5rem;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

.giveaway-content {
  padding: 35px;
  position: relative;
  z-index: 1;
}

.prizes-section {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(15, 52, 96, 0.2) 100%);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 35px;
  border: 2px solid rgba(0, 217, 255, 0.4);
  box-shadow: inset 0 2px 10px rgba(0, 217, 255, 0.1);
}

.prizes-title {
  font-size: 2rem;
  background: linear-gradient(135deg, #00d9ff 0%, #00f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 800;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}

.prize-item {
  background: linear-gradient(135deg, #0a0e27 0%, #16213e 100%);
  border: 2px solid #00d9ff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prize-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prize-item:hover::before {
  opacity: 1;
}

.prize-item:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: #00f5ff;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.6);
}

.prize-place {
  font-size: 1.2rem;
  color: #00d9ff;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 217, 255, 0.5);
}

.prize-amount {
  font-size: 2.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffeb3b 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 235, 59, 0.6);
}

.steps-section {
  margin-bottom: 35px;
}

.steps-title {
  font-size: 2rem;
  background: linear-gradient(135deg, #00d9ff 0%, #00f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  font-weight: 800;
}

.step {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(15, 52, 96, 0.15) 100%);
  border-left: 4px solid #00d9ff;
  padding: 25px;
  margin-bottom: 18px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-left-width: 4px;
}

.step:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(15, 52, 96, 0.25) 100%);
  transform: translateX(5px);
  border-left-color: #00f5ff;
}

.step-number {
  position: absolute;
  left: -18px;
  top: 20px;
  background: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 100%);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.6);
  border: 2px solid #0a0e27;
}

.step-content {
  margin-left: 25px;
}

.deadline-section {
  background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
  color: white;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 35px;
  border: 2px solid #ff6b6b;
  box-shadow: 0 8px 30px rgba(255, 71, 87, 0.4);
}

.deadline-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.deadline-date {
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.important-notes {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.15) 0%, rgba(255, 99, 72, 0.1) 100%);
  border: 2px solid rgba(255, 107, 107, 0.4);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 35px;
}

.notes-title {
  font-size: 1.6rem;
  color: #ff6b6b;
  margin-bottom: 18px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.note-item {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.7;
}

.note-item::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 0;
}

.discord-link {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: white;
  padding: 16px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-block;
  margin: 12px 5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
  border: 2px solid rgba(88, 101, 242, 0.3);
}

.discord-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.6);
  background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
}

/* Footer */
footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 50px 20px;
  color: #a8dadc;
  font-size: 0.95rem;
  margin-top: auto;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.4) 100%);
}

.contact-header {
  background: linear-gradient(135deg, #00d9ff 0%, #00f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 28px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  letter-spacing: 0.12em;
  font-weight: 800;
}

.footer-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d9ff, transparent);
  margin: 25px auto;
  width: 220px;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.social-links {
  margin-bottom: 25px;
}

.social-links a {
  color: #00d9ff;
  margin: 0 15px;
  font-size: 2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0, 217, 255, 0.4));
}

.social-links a:hover,
.social-links a:focus {
  color: #00f5ff;
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 8px 15px rgba(0, 245, 255, 0.6));
  outline: none;
}

/* Age Verification Overlay Styles */
#age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  font-family: 'Montserrat', sans-serif;
  backdrop-filter: blur(10px);
}

.age-modal {
  background: linear-gradient(145deg, #16213e 0%, #0f3460 100%);
  border: 3px solid #00d9ff;
  border-radius: 25px;
  padding: 50px;
  max-width: 650px;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 217, 255, 0.6), inset 0 1px 0 rgba(0, 245, 255, 0.3);
}

.age-modal p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  background: linear-gradient(135deg, #00d9ff 0%, #00f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.8;
  font-weight: 600;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.age-buttons button {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}