:root {
    --bg-main: #090909;
    --bg-secondary: #111111;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-strong: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-soft: #b8b8b8;
    --gold: #d4af37;
    --gold-soft: #f0d77a;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    --blur: blur(16px);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* Fondo global */
.site-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 25%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08), transparent 20%),
        linear-gradient(180deg, #0a0a0a 0%, #080808 50%, #050505 100%);
    z-index: -2;
}

.site-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: var(--blur);
    background: rgba(10, 10, 10, 0.65);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.97rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--text-main);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    color: var(--text-main);
    font-size: 1.7rem;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 90%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 130%;
}

.btn i,
.btn span {
    position: relative;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #111;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.30);
}

.btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    backdrop-filter: var(--blur);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.12);
}

/* Hero */
.hero {
    padding: 110px 0 80px;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-soft);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.hero-text h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
}

.hero-text p {
    max-width: 720px;
    color: var(--text-soft);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.28);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.hero-side {
    display: flex;
    justify-content: center;
}

.hero-panel {
    width: 100%;
    max-width: 430px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.16);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 35%);
    pointer-events: none;
}

.hero-panel h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--gold-soft);
}

.hero-panel p {
    color: var(--text-soft);
    margin-bottom: 22px;
}

.hero-panel ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-panel li {
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #eaeaea;
}

/* Secciones generales */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.section-title span {
    display: inline-block;
    color: var(--gold-soft);
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 0.83rem;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--text-soft);
    font-size: 1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Roles */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.role-card {
    min-height: 220px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 34%);
    opacity: 0.5;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.role-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.role-card:hover::before {
    opacity: 1;
    transform: scale(1.08);
}

/* Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0f0f0f;
    box-shadow: var(--shadow);
    min-height: 260px;
    position: relative;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Comunidad */
.community-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
    backdrop-filter: var(--blur);
}

.community-text span {
    display: inline-block;
    color: var(--gold-soft);
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.community-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.community-text p {
    color: var(--text-soft);
    max-width: 700px;
}

.community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Footer */
.footer {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--blur);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 0 26px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.footer-brand h3 {
    margin-bottom: 2px;
}

.footer-brand p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--text-soft);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-soft);
}

.footer-copy {
    padding: 18px 16px 28px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-copy p {
    color: #9e9e9e;
    font-size: 0.92rem;
}

/* Animaciones reveal */
.hidden-fade {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    filter: blur(8px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Páginas internas */
.page-hero {
    padding: 110px 0 40px;
}

.section-title.left {
    text-align: left;
    margin: 0 0 20px 0;
}

.rules-section,
.steps-section {
    padding-top: 30px;
}

.rules-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rule-card,
.step-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.rule-card::before,
.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.rule-card:hover,
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
}

.rule-card:hover::before,
.step-card:hover::before {
    opacity: 1;
}

.rule-card h3,
.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.rule-card p,
.step-card p {
    color: var(--text-soft);
    margin-bottom: 18px;
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #111;
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

/* Iconos */
.feature-card i,
.role-card i,
.rule-card i,
.step-card i,
.stat-card i,
.btn i,
.badge i,
.nav-menu i {
    color: var(--gold-soft);
    transition: transform 0.25s ease, color 0.25s ease;
}

.feature-card:hover i,
.role-card:hover i,
.rule-card:hover i,
.step-card:hover i {
    transform: scale(1.08);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-container,
    .features-grid,
    .roles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rules-grid,
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-container {
        align-items: start;
    }

    .hero-side {
        justify-content: stretch;
    }

    .hero-panel {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 84px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 18px;
        background: rgba(12, 12, 12, 0.95);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .hero-container,
    .features-grid,
    .roles-grid,
    .gallery-grid,
    .hero-stats,
    .rules-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .community-box,
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
    }

    .hero-text h1 {
        line-height: 1;
    }
}

@media (max-width: 600px) {
    .navbar {
        position: sticky;
    }

    .nav-container {
        min-height: 76px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo span {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons,
    .community-actions {
        width: 100%;
        flex-direction: column;
    }

    section {
        padding: 72px 0;
    }

    .feature-card,
    .role-card,
    .rule-card,
    .step-card,
    .hero-panel,
    .community-box {
        padding: 22px;
    }

    .gallery-item {
        min-height: 220px;
    }

    .footer-links {
        gap: 14px;
    }
}


:root {
    --bg-main: #090909;
    --bg-secondary: #111111;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-strong: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-soft: #b8b8b8;
    --gold: #d4af37;
    --gold-soft: #f0d77a;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    --blur: blur(16px);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* Fondo global */
.site-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 25%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08), transparent 20%),
        linear-gradient(180deg, #0a0a0a 0%, #080808 50%, #050505 100%);
    z-index: -2;
}

.site-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: var(--blur);
    background: rgba(10, 10, 10, 0.65);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.97rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--text-main);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    color: var(--text-main);
    font-size: 1.7rem;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 90%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 130%;
}

.btn i,
.btn span {
    position: relative;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #111;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.30);
}

.btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    backdrop-filter: var(--blur);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.12);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.82)),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    animation: heroFade 1.2s ease forwards;
}

.hero-side {
    animation: heroFade 1.2s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-soft);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.hero-text h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
}

.hero-sub {
    max-width: 720px;
    color: #e4e4e4;
    font-size: 1.12rem;
    font-weight: 500;
    margin-bottom: 14px;
    opacity: 0.88;
}

.hero-text p {
    max-width: 720px;
    color: var(--text-soft);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
    animation: heroFade 1.2s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.28);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.hero-side {
    display: flex;
    justify-content: center;
}

.hero-panel {
    width: 100%;
    max-width: 430px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.16);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 35%);
    pointer-events: none;
}

.hero-panel h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--gold-soft);
}

.hero-panel p {
    color: var(--text-soft);
    margin-bottom: 22px;
}

.hero-panel ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-panel li {
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #eaeaea;
}

/* Secciones generales */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.section-title span {
    display: inline-block;
    color: var(--gold-soft);
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 0.83rem;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--text-soft);
    font-size: 1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Roles */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.role-card {
    min-height: 220px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 34%);
    opacity: 0.5;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.role-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.role-card:hover::before {
    opacity: 1;
    transform: scale(1.08);
}

/* Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0f0f0f;
    box-shadow: var(--shadow);
    min-height: 260px;
    position: relative;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Comunidad */
.community-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
    backdrop-filter: var(--blur);
}

.community-text span {
    display: inline-block;
    color: var(--gold-soft);
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.community-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.community-text p {
    color: var(--text-soft);
    max-width: 700px;
}

.community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Footer */
.footer {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--blur);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 0 26px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.footer-brand h3 {
    margin-bottom: 2px;
}

.footer-brand p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--text-soft);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-soft);
}

.footer-copy {
    padding: 18px 16px 28px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-copy p {
    color: #9e9e9e;
    font-size: 0.92rem;
}

/* Animaciones reveal */
.hidden-fade {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    filter: blur(8px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Páginas internas */
.page-hero {
    padding: 110px 0 40px;
}

.section-title.left {
    text-align: left;
    margin: 0 0 20px 0;
}

.rules-section,
.steps-section {
    padding-top: 30px;
}

.rules-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rule-card,
.step-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.rule-card::before,
.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.rule-card:hover,
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
}

.rule-card:hover::before,
.step-card:hover::before {
    opacity: 1;
}

.rule-card h3,
.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.rule-card p,
.step-card p {
    color: var(--text-soft);
    margin-bottom: 18px;
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #111;
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

/* Iconos */
.feature-card i,
.role-card i,
.rule-card i,
.step-card i,
.stat-card i,
.btn i,
.badge i,
.nav-menu i {
    color: var(--gold-soft);
    transition: transform 0.25s ease, color 0.25s ease;
}

.feature-card:hover i,
.role-card:hover i,
.rule-card:hover i,
.step-card:hover i {
    transform: scale(1.08);
    color: var(--gold);
}

/* Keyframes */
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-container,
    .features-grid,
    .roles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rules-grid,
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-container {
        align-items: start;
    }

    .hero-side {
        justify-content: stretch;
    }

    .hero-panel {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 84px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 18px;
        background: rgba(12, 12, 12, 0.95);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .hero-container,
    .features-grid,
    .roles-grid,
    .gallery-grid,
    .hero-stats,
    .rules-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .community-box,
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
    }

    .hero-text h1 {
        line-height: 1;
    }

    .hero-video {
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero::before {
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
            radial-gradient(circle at center, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.30));
    }
}

@media (max-width: 600px) {
    .navbar {
        position: sticky;
    }

    .nav-container {
        min-height: 76px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo span {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons,
    .community-actions {
        width: 100%;
        flex-direction: column;
    }

    section {
        padding: 72px 0;
    }

    .feature-card,
    .role-card,
    .rule-card,
    .step-card,
    .hero-panel,
    .community-box {
        padding: 22px;
    }

    .gallery-item {
        min-height: 220px;
    }

    .footer-links {
        gap: 14px;
    }
}