* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Protección contra inspección */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Contador de visitantes con tema dorado */
.visitor-counter {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.visitor-badge {
  background: linear-gradient(135deg, rgba(26, 10, 10, 0.9), rgba(10, 10, 10, 0.9));
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cinzel", serif;
  animation: float 3s ease-in-out infinite;
}

.visitor-icon {
  font-size: 24px;
  animation: pulse 2s ease-in-out infinite;
}

.visitor-info {
  text-align: left;
}

.visitor-label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.visitor-count {
  font-size: 24px;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  line-height: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.lang-btn {
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: translateY(-2px);
}

.lang-btn.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a0a0a;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #d4af37;
  border-radius: 50%;
  animation: float 10s infinite;
  opacity: 0.3;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://i.imgur.com/33lkX58.jpeg?height=1080&width=1920") center / cover;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
  margin-bottom: 30px;
}

.glow-text {
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite;
  text-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
}

@keyframes glow {
  0%,
  100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.3);
  }
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #b8b8b8;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-icon {
  font-size: 1.3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, transparent, #d4af37, transparent);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #d4af37;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 60px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Server Info Section */
.server-info {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a0a0a 0%, #0a0a0a 100%);
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: linear-gradient(135deg, rgba(26, 10, 10, 0.8), rgba(10, 10, 10, 0.8));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.info-title {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.info-description {
  color: #888;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  padding: 100px 20px;
  background: #0a0a0a;
}

.video-container {
  margin-bottom: 60px;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-wrapper:hover {
  border-color: #d4af37;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

/* Requirements */
.requirements {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 10, 10, 0.5), rgba(10, 10, 10, 0.5));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 40px;
}

.requirements-title {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: #d4af37;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.requirement-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.requirement-item strong {
  color: #d4af37;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.requirement-item span {
  color: #b8b8b8;
}

/* Footer */
.footer {
  background: #050505;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer p {
  color: #888;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .language-switcher {
    top: 10px;
    left: 10px;
    padding: 6px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 16px;
  }

  /* Responsive para contador de visitantes */
  .visitor-counter {
    top: 10px;
    right: 10px;
  }

  .visitor-badge {
    padding: 10px 12px;
    gap: 8px;
  }

  .visitor-icon {
    font-size: 20px;
  }

  .visitor-count {
    font-size: 20px;
  }

  .visitor-label {
    font-size: 9px;
  }
}
