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

body {
    background: black;
    color: white;
    font-family: 'Cinzel', serif;
    height: 100vh;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
}



/* FONDO GIF */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("") center / cover no-repeat;
  opacity: 0.35;
  z-index: -1;
}

/* 🔥 IMPORTANTE PARA CLICKS */
body::before,
body::after {
    pointer-events: none;
}

/* HEADER */
header {
    position: absolute;
    width: 100%;
    top: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    align-items: center;
}

/* CONTENEDORES */
.icons-left,
.icons-right {
    display: flex;
}

/* BOTONES CIRCULARES */
.circle {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(243, 212, 38, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    margin-right: 12px;
    transition: all 0.3s ease;
    position: relative;
}

/* ICONOS */
.circle i {
    font-size: 14px;
}

/* HOVER PRO */
.circle:hover {
    background: rgb(250, 213, 113);
    box-shadow: 0 0 10px rgb(129, 129, 129), 0 0 25px rgb(94, 93, 93);
    transform: scale(1.1);
}

/* DESACTIVADOS */
.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* CENTRO */
.top-center a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    border: 1px solid rgb(245, 188, 33);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgb(235, 228, 228), 0 0 40px rgb(182, 180, 180);
    border: 3px solid hsl(245, 188, 33);
    padding: 12px 22px;
    border-radius: 20px;
    font-size: 12px;
    left: 45%;
    top: 0px;
    position: absolute;
}
/* MAIN */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* TITULO */
h1 {
    font-size: 120px;
    text-shadow: 0 0 15px rgb(49, 49, 49), 0 0 40px rgb(245, 188, 33);
}

/* SUBTITULO */
.subtitle {
    font-size: 20px;
    letter-spacing: 4px;
    opacity: 0.7;
    margin-top: 10px;
}

/* BOTON */
.btn {
    margin-top: 25px;
    padding: 16px 54px;
    border: 1px solid rgb(245, 188, 33);
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.btn:hover {
    background: black;
    color: rgb(241, 239, 239);
}

/* MENU */
.bottom-menu {
    position: absolute;
    bottom: 40px;
    text-shadow: 0 0 20px rgb(252, 252, 252), 0 0 40px rgb(255, 230, 0);
}

.bottom-menu a {
    margin: 0 25px;
    color: white;
    text-decoration: none;
}

/* COLORES */
.vip:hover { color: rgb(255, 13, 5); }
.maps:hover { color: rgb(255, 9, 202); }
.rules:hover { color: rgb(242, 99, 247); }
.modes:hover { color: cyan; }

/* CONTENEDOR */
.cards-container {
    margin-top: 120px;
    text-align: center;
    font-family: 'Cinzel', serif;
    color: white;
}

/* TITULOS */
.top-title h1 {
    font-size: 50px;
    color: #eeedec;
    text-shadow: 0 0 20px #d4af37;
}

.top-title p {
    color: #7a7a7a;
    margin-bottom: 40px;
}

/* GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARDS */
.card {
    background: #000;
    border: 1px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

/* ✨ AURA DORADA */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212,175,55,0.5), transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.card:hover::before {
    opacity: 1;
}

/* HOVER */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px #d4af37, 0 0 50px rgba(212,175,55,0.7);
}

/* 2 GRANDES */
.main {
    grid-column: span 3;
}

/* BENEFITS */
.benefits-title {
    grid-column: span 6;
    margin: 20px 0;
    font-size: 40px;
    color: #eeedec;
}

.benefits-title h2 {
    color: #ffffff;
    text-shadow: 0 0 15px #d4af37;
}

/* 7 CUADROS */
.small {
    grid-column: span 2;
    text-align: left;
}

/* TEXTO */
.card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.5;
}

/* 💛 PRECIO */
.price {
    display: block;
    color: #f5d77a;
    font-weight: bold;
    margin: 10px 0 15px;
    text-shadow: 0 0 10px #d4af37;
}

/* LISTA */
.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card ul li {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

/* PUNTITO DORADO */
.card ul li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
}

/* ✨ EMOJIS DORADOS */
.emoji {
    font-size: 28px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px #d4af37);
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .main, .small, .benefits-title {
        grid-column: span 1;
    }
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #000; /* opcional */
}
/* SECCION FINAL SIN FONDO */
.final-section {
    position: relative;
    background: #000; /* negro puro */
    padding: 120px 40px;
    text-align: center;
    z-index: 1;
}

/* ESTO BLOQUEA EL GIF SOLO AQUÍ */
.final-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    z-index: -1;
}

/* TITULOS */
.final-section h2 {
    font-size: 32px;
    text-shadow: 0 0 10px red;
}

.final-sub {
    opacity: 0.6;
    margin-bottom: 50px;
}

/* SECCION NEGRA */
.final-section {
    position: relative;
    background: #000;
    padding: 60px 40px;
    text-align: center;
    z-index: 1;
}

/* BLOQUEA EL GIF */
.final-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    z-index: -1;
}

/* TITULO */
.final-section h2 {
    font-size: 32px;
    text-shadow: 0 0 10px rgb(255, 176, 5);
}

.final-sub {
    opacity: 0.6;
    margin-bottom: 60px;
}

/* LISTA */
.team-list {
    max-width: 600px;
    margin: auto;
}

/* ITEMS */
.team-item {
    padding: 15px 0;
    border-bottom: 1px solid rgb(255, 136, 0);
}

/* NOMBRE */
.team-item h3 {
    font-size: 18px;
}

/* DESCRIPCION */
.team-item span {
    font-size: 14px;
    opacity: 0.6;
}

/* EFECTO HOVER SUAVE */
.team-item:hover {
    color: rgb(255, 187, 0);
}