* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: rgba(5, 5, 5, .97);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 35px rgba(0,0,0,.35);
}

.header-inner {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 18px 30px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* LOGO */

.brand {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    text-align: center;
    line-height: .9;
}

.brand-main {
    color: #e10600;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 0 25px rgba(225,6,0,.18);
}

.brand-sub {
    margin-top: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
    opacity: .85;
}

/* FILA MENÚ */

.menu-row {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* NAVEGACIÓN */

.main-nav {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;
    gap: 3px;
}

.main-nav a {
    position: relative;

    color: #aaa;
    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;

    padding: 13px 15px;
    border-radius: 4px;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 6px;

    height: 2px;

    background: #e10600;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .25s ease;
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.045);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

/* MEMBER ONLY */

.main-nav .premium-nav {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            rgba(225,6,0,.20),
            rgba(225,6,0,.05)
        );

    border: 1px solid rgba(225,6,0,.45);
}

.main-nav .premium-nav span {
    color: #e10600;
    margin-right: 5px;
}

.main-nav .premium-nav:hover {
    background: #e10600;
    border-color: #e10600;
}

.main-nav .premium-nav:hover span {
    color: #fff;
}

/* LOGIN */

.main-nav .login-link {
    color: #fff;
    border: 1px solid #333;
}

.main-nav .login-link:hover {
    border-color: #e10600;
}

/* REGISTRO */

.main-nav .register-link {
    margin-left: 4px;

    background: #e10600;
    color: #fff;

    border: 1px solid #e10600;
}

.main-nav .register-link:hover {
    background: #b80500;
}

/* =========================================================
   BOTONES
   ========================================================= */

.btn-red,
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    background: #e10600;
    color: #fff;

    border: none;
    border-radius: 5px;

    text-decoration: none;
    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.btn-red:hover,
.hero-button:hover {
    background: #b80500;
    transform: translateY(-2px);
}

/* =========================================================
   CONTENEDOR
   ========================================================= */

.page-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 25px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: calc(100vh - 140px);

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(225,6,0,.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080808 0%,
            #111 50%,
            #050505 100%
        );
}

.hero-inner {
    width: 100%;
    max-width: 1250px;

    margin: auto;
    padding: 80px 25px;

    position: relative;
    z-index: 2;
}

.kicker {
    color: #e10600;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 5px;
}

.hero h1 {
    margin: 20px 0;

    font-size: clamp(60px, 9vw, 125px);
    line-height: .82;

    font-weight: 900;
    letter-spacing: -5px;
}

.hero h1 span {
    color: #e10600;
}

.hero-text {
    max-width: 650px;

    color: #999;

    font-size: 20px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 35px;
}

.hero-button.secondary {
    background: transparent;
    border: 1px solid #555;
}

/* =========================================================
   VIDEO MEMBER ONLY
   ========================================================= */

.video-section {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 80px 25px;
}

.video-title {
    margin-bottom: 25px;
}

.video-title small {
    color: #e10600;

    font-weight: bold;
    letter-spacing: 4px;
}

.video-title h2 {
    margin: 10px 0;
    font-size: 45px;
}

.video-frame {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    background: #000;

    border: 1px solid #333;
    overflow: hidden;
}

.video-frame .premium-video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background:
        #000 url('/assets/images/imj.jpg')
        center center / cover
        no-repeat;
}

/* PAYWALL */

.paywall {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.96)
        ),
        url('/assets/images/imj.jpg')
        center center / cover
        no-repeat;
}

.lock {
    margin-bottom: 10px;
    font-size: 50px;
}

.paywall h2 {
    margin: 10px;

    font-size: clamp(30px,5vw,55px);
}

.paywall p {
    max-width: 500px;

    color: #999;

    line-height: 1.6;
}

/* =========================================================
   SECCIONES
   ========================================================= */

.section {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 80px 25px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 0;
    font-size: 45px;
}

.section-heading p {
    color: #777;
}

.section-heading a {
    color: #e10600;
    text-decoration: none;
    font-weight: bold;
}

/* =========================================================
   PRODUCTOS
   ========================================================= */

.products {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.product {
    width: 100%;

    background: #111;

    border: 1px solid #292929;

    overflow: hidden;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.product:hover {
    transform: translateY(-5px);
    border-color: #e10600;
}

.product-image {
    width: 100%;
    height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #1a1a1a;
}

.product-image img {
    display: block;

    width: 250px;
    height: 250px;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    margin: 0 auto;
}

.product-image span {
    display: none !important;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 19px;
    font-weight: bold;
}

.product-description {
    min-height: 42px;

    margin: 10px 0;

    color: #777;

    font-size: 14px;
    line-height: 1.5;
}

.product-price {
    margin: 15px 0;

    font-size: 22px;
    font-weight: bold;
}

.buy {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 12px;

    background: #e10600;
    color: #fff;

    text-align: center;
    text-decoration: none;

    font-weight: bold;

    border-radius: 4px;

    transition:
        background .2s ease,
        transform .2s ease;
}

.buy:hover {
    background: #b80500;
}

/* =========================================================
   MEMBER ONLY SECTION
   ========================================================= */

.premium-section {
    width: 100%;
    max-width: 1250px;

    margin: 40px auto 80px;
    padding: 70px 25px;
}

.premium-box {
    padding: 70px 50px;

    text-align: center;

    border: 1px solid #333;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(225,6,0,.2),
            transparent 40%
        ),
        #101010;
}

.premium-box small {
    color: #e10600;

    font-weight: bold;
    letter-spacing: 4px;
}

.premium-box h2 {
    margin: 15px 0;

    font-size: clamp(40px,6vw,70px);
}

.premium-box p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #888;

    line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    margin-top: 55px;
    padding: 45px 24px 18px;

    background: #080808;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 45px;

    align-items: start;
}

.footer-brand,
.footer-column {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.footer-brand {
    align-items: flex-start;
    text-align: left;
}

.footer-column {
    align-items: flex-start;
    text-align: left;
}

.footer-logo {
    color: #e10600;

    font-size: 38px;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1;
}

.footer-sub {
    margin-top: 5px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.footer-brand p {
    max-width: 270px;

    margin: 16px 0 0;

    color: #666;

    font-size: 13px;
    line-height: 1.6;
}

.footer-column h4 {
    margin: 2px 0 13px;

    color: #fff;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-buttons {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 2px;
}

.footer-button {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 4px 0;

    background: transparent;
    border: 0;

    color: #777;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-button:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-button-premium {
    color: #e10600;
}

.footer-button-premium:hover {
    color: #ff2a22;
}

.footer-button-outline {
    color: #666;
}

.footer-culture {
    align-items: flex-start;
    justify-content: flex-start;

    text-align: left;
}

.footer-tagline {
    margin: 0;

    color: #555;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 1.5px;
}

.footer-bottom {
    width: 100%;
    max-width: 1100px;

    margin: 35px auto 0;
    padding: 16px 0 0;

    border-top: 1px solid #181818;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #3f3f3f;

    font-size: 9px;
    letter-spacing: 1.5px;
}

/* =========================================================
   MENÚ HAMBURGUESA
   ========================================================= */

.mobile-menu-toggle {
    display: none;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;
    }

    .footer-brand,
    .footer-culture {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* HEADER */

    .header-inner {
        padding: 12px 12px;
        gap: 12px;
    }

    .brand {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .brand-main {
        font-size: 29px;
        letter-spacing: 3px;
    }

    .brand-sub {
        margin-top: 6px;

        font-size: 8px;
        letter-spacing: 4px;
    }

    /* FILA */

    .menu-row {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 10px;
    }

    /* BOTÓN MENÚ */

    .menu-row .mobile-menu-toggle {
        display: flex;

        width: 150px;
        min-width: 150px;
        height: 44px;

        align-items: center;
        justify-content: center;

        gap: 9px;

        padding: 0 15px;

        background: #111;
        color: #fff;

        border: 1px solid rgba(225,6,0,.65);
        border-radius: 7px;

        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.8px;

        cursor: pointer;

        margin: 0 auto;
    }

    .menu-row .mobile-menu-toggle.active {
        background: #e10600;
        border-color: #e10600;
    }

    /* ICONO */

    .menu-icon {
        width: 21px;
        height: 17px;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-icon span {
        display: block;

        width: 100%;
        height: 2px;

        background: #fff;

        border-radius: 2px;

        transition:
            transform .25s ease,
            opacity .2s ease;
    }

    .mobile-menu-toggle.active
    .menu-icon span:nth-child(1) {
        transform:
            translateY(7.5px)
            rotate(45deg);
    }

    .mobile-menu-toggle.active
    .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active
    .menu-icon span:nth-child(3) {
        transform:
            translateY(-7.5px)
            rotate(-45deg);
    }

    /* MENÚ CERRADO */

    .menu-row .main-nav {
        display: none;
    }

    /* MENÚ ABIERTO */

    .menu-row .main-nav.mobile-open {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 5px;

        padding: 10px;

        background:
            linear-gradient(
                145deg,
                #111 0%,
                #080808 100%
            );

        border: 1px solid rgba(255,255,255,.10);
        border-top: 2px solid #e10600;

        border-radius: 0 0 10px 10px;

        box-shadow:
            0 15px 40px rgba(0,0,0,.75);

        animation:
            mobileMenuOpen .22s ease-out;
    }

    .menu-row .main-nav.mobile-open a {
        width: 100%;
        min-height: 47px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 12px 15px;

        color: #ddd;

        background:
            rgba(255,255,255,.035);

        border:
            1px solid rgba(255,255,255,.06);

        border-radius: 5px;

        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1.6px;

        text-align: center;
    }

    .menu-row .main-nav.mobile-open a::after {
        display: none;
    }

    .menu-row .main-nav.mobile-open a:hover {
        color: #fff;

        background:
            rgba(225,6,0,.12);

        border-color:
            rgba(225,6,0,.45);
    }

    .menu-row .main-nav.mobile-open .premium-nav {
        background:
            linear-gradient(
                135deg,
                rgba(225,6,0,.25),
                rgba(225,6,0,.08)
            );

        border-color:
            rgba(225,6,0,.55);
    }

    .menu-row .main-nav.mobile-open .register-link {
        background: #e10600;
        border-color: #e10600;
    }

    @keyframes mobileMenuOpen {

        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 60px 20px;
        text-align: center;
    }

    .kicker {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero h1 {
        margin: 20px 0;

        font-size:
            clamp(52px, 17vw, 82px);

        letter-spacing: -3px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;

        font-size: 16px;
        line-height: 1.55;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;

        gap: 12px;
        margin-top: 25px;
    }

    .hero-button {
        width: 88%;
        max-width: 360px;

        min-height: 52px;

        border-radius: 12px;
    }

    /* VIDEO */

    .video-section {
        padding: 55px 15px;
    }

    .video-title {
        text-align: center;
    }

    .video-title small {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .video-title h2 {
        font-size: 30px;
    }

    .video-frame {
        width: 100%;
    }

    /* SECCIONES */

    .section {
        width: 100%;
        max-width: 100%;

        padding: 55px 15px;
    }

    .section-heading {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        margin: 8px 0;
    }

    /* PRODUCTOS */

    .products {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product {
        width: 100%;
    }

    .product-image {
        width: 100%;
        height: 250px;
        min-height: 250px;
    }

    .product-image img {
        width: 250px;
        height: 250px;

        max-width: 100%;
        max-height: 100%;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 17px;
    }

    .product-description {
        font-size: 14px;
        line-height: 1.45;
    }

    /* BOTÓN COMPRA */

    .buy {
        min-height: 50px;

        border-radius: 10px;

        font-size: 14px;
    }

    /* MEMBER ONLY */

    .premium-section {
        margin: 20px auto 50px;
        padding: 45px 15px;
    }

    .premium-box {
        padding: 45px 20px;
    }

    .premium-box h2 {
        font-size: 38px;
    }

    /* FOOTER */

    .site-footer {
        margin-top: 45px;
        padding: 35px 18px 16px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;

        gap: 28px 18px;
    }

    .footer-brand,
    .footer-culture {
        grid-column: 1 / -1;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;

        font-size: 12px;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-buttons {
        align-items: center;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-sub {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .footer-button {
        font-size: 10px;
    }

    .footer-culture {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: center;

        gap: 6px;

        margin-top: 28px;

        text-align: center;
    }
}

/* =========================================================
   PANTALLAS MUY PEQUEÑAS
   ========================================================= */

@media (max-width: 380px) {

    .header-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brand-main {
        font-size: 26px;
    }

    .brand-sub {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .menu-row .mobile-menu-toggle {
        width: 140px;
        min-width: 140px;
    }

    .product-image {
        height: 220px;
        min-height: 220px;
    }

    .product-image img {
        width: 220px;
        height: 220px;
    }
}

/* =========================================================
   Fear — CABECERA FINAL
   ========================================================= */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;

    background: #070707;

    border-bottom: 1px solid #1b1b1b;
}

.header-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 22px 25px 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #fff;
    text-decoration: none;

    line-height: 1;
}

.brand:hover {
    text-decoration: none;
}

.brand-main {
    color: #e10600;

    font-size: 42px;
    font-weight: 1000;

    letter-spacing: 8px;

    line-height: .9;

    text-shadow:
        0 0 25px rgba(225,6,0,.15);
}

.brand-sub {
    margin-top: 8px;

    color: #d0d0d0;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 5px;
}

.menu-row {
    width: 100%;

    margin-top: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.main-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 4px;
}

.main-nav a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 16px;

    color: #777;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.4px;

    transition:
        color .2s ease,
        background .2s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 0;

    height: 2px;

    background: #e10600;

    transform: scaleX(0);

    transition: transform .2s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav .premium-nav {
    color: #e10600;
}

.main-nav .premium-nav:hover {
    color: #ff2a22;
}

.main-nav .register-link {
    color: #fff;

    background: #e10600;

    border-radius: 5px;

    margin-left: 5px;

    padding-left: 17px;
    padding-right: 17px;
}

.main-nav .register-link::after {
    display: none;
}

.main-nav .register-link:hover {
    background: #b80500;
}

.mobile-menu-toggle {
    display: none;
}

/* =========================================================
   Fear — FOOTER FINAL
   ========================================================= */

.site-footer {
    width: 100%;

    margin-top: 70px;

    padding: 55px 25px 20px;

    background: #070707;

    border-top: 1px solid #1c1c1c;

    box-sizing: border-box;
}

.footer-inner {
    width: 100%;
    max-width: 1120px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.1fr;

    gap: 50px;

    align-items: start;
}

.footer-brand,
.footer-column,
.footer-culture {
    min-width: 0;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-logo {
    color: #e10600;

    font-size: 40px;
    font-weight: 1000;

    letter-spacing: 6px;

    line-height: .9;

    text-decoration: none;
}

.footer-logo:hover {
    color: #ff1a12;
    text-decoration: none;
}

.footer-sub {
    margin-top: 8px;

    color: #ccc;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 4px;
}

.footer-brand p {
    max-width: 260px;

    margin: 18px 0 0;

    color: #555;

    font-size: 11px;

    line-height: 1.7;
}

.footer-column h4,
.footer-culture h4 {
    margin: 1px 0 17px;

    color: #fff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;

    gap: 3px;

    align-items: flex-start;
}

.footer-button {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 3px 0;

    color: #666;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-button:hover {
    color: #fff;

    text-decoration: none;

    transform: translateX(4px);
}

.footer-button-premium {
    color: #e10600;
}

.footer-button-premium:hover {
    color: #ff2a22;
}

.footer-button-outline {
    color: #555;
}

.footer-culture {
    align-items: flex-start;
}

.footer-tagline {
    display: flex;
    flex-direction: column;

    gap: 5px;

    color: #444;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}

.footer-tagline span:first-child {
    color: #777;
}

.footer-bottom {
    width: 100%;
    max-width: 1120px;

    margin: 42px auto 0;

    padding-top: 17px;

    border-top: 1px solid #171717;

    display: flex;

    justify-content: space-between;
    align-items: center;

    color: #383838;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 700px) {

    .header-inner {
        padding: 19px 15px 16px;
    }

    .brand-main {
        font-size: 35px;
        letter-spacing: 6px;
    }

    .brand-sub {
        margin-top: 7px;

        font-size: 7px;
        letter-spacing: 4px;
    }

    .menu-row {
        margin-top: 17px;
    }

    .mobile-menu-toggle {
        width: 145px;
        height: 44px;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 10px;

        border: 1px solid #292929;
        border-radius: 7px;

        background: #111;

        color: #aaa;

        font-size: 10px;
        font-weight: 900;

        letter-spacing: 2px;

        cursor: pointer;

        transition:
            background .2s ease,
            border-color .2s ease,
            color .2s ease;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle.active {
        background: #181818;

        border-color: #e10600;

        color: #fff;
    }

    .menu-icon {
        width: 17px;

        display: flex;
        flex-direction: column;

        gap: 4px;
    }

    .menu-icon span {
        width: 17px;
        height: 2px;

        display: block;

        background: #aaa;

        transition:
            transform .2s ease,
            opacity .2s ease,
            background .2s ease;
    }

    .mobile-menu-toggle.active .menu-icon span {
        background: #e10600;
    }

    .mobile-menu-toggle.active
    .menu-icon span:nth-child(1) {
        transform:
            translateY(6px)
            rotate(45deg);
    }

    .mobile-menu-toggle.active
    .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active
    .menu-icon span:nth-child(3) {
        transform:
            translateY(-6px)
            rotate(-45deg);
    }

    .main-nav {
        width: 100%;

        display: none;

        flex-direction: column;

        gap: 4px;

        margin-top: 12px;

        padding: 8px;

        background: #0d0d0d;

        border: 1px solid #242424;
        border-radius: 9px;

        box-sizing: border-box;

        box-shadow:
            0 18px 40px rgba(0,0,0,.5);
    }

    .main-nav.mobile-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;

        min-height: 45px;

        padding: 0 15px;

        justify-content: center;

        border-radius: 5px;

        font-size: 10px;

        background: #121212;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        background: #1b1b1b;
    }

    .main-nav .premium-nav {
        color: #e10600;
    }

    .main-nav .register-link {
        margin-left: 0;

        background: #e10600;
    }

    .site-footer {
        margin-top: 50px;

        padding: 40px 18px 17px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;

        gap: 32px 20px;
    }

    .footer-brand,
    .footer-culture {
        grid-column: 1 / -1;

        align-items: center;

        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column {
        align-items: center;

        text-align: center;
    }

    .footer-buttons {
        align-items: center;
    }

    .footer-logo {
        font-size: 34px;
    }

    .footer-sub {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .footer-tagline {
        align-items: center;
    }

    .footer-bottom {
        margin-top: 32px;

        flex-direction: column;

        gap: 7px;

        text-align: center;
    }
}

/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .brand-main {
        font-size: 31px;
    }

    .brand-sub {
        font-size: 6px;
        letter-spacing: 3px;
    }

    .mobile-menu-toggle {
        width: 140px;
    }

    .footer-inner {
        gap: 27px 14px;
    }

    .footer-logo {
        font-size: 31px;
    }

}

/* =========================================
   LOGO FEAR FIGHTING CLUB
   ========================================= */

.brand-logo {
    display: block;
    width: 190px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

@media (max-width: 600px) {

    .brand-logo {
        width: 145px;
        max-height: 52px;
    }

}

/* Ajuste tamaño logo */
.brand-logo {
    width: 250px;
    max-width: 100%;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .brand-logo {
        width: 170px;
        max-height: 52px;
    }
}

/* LOGO PRINCIPAL */
.brand-logo {
    width: 500px;
    max-width: 100%;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .brand-logo {
        width: 300px;
        max-height: 52px;
    }
}

/* LOGO GRANDE FEAR FIGHTING CLUB */
.brand-logo {
    width: 600px;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

@media (max-width: 600px) {
    .brand-logo {
        width: 400px;
        max-width: 90vw;
        max-height: none;
    }
}

/* LOGO FOOTER */
.footer-logo-img {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .footer-logo-img {
        width: 200px;
        max-width: 90vw;
    }
}

/* AJUSTE FINAL LOGOS EN MÓVIL */
@media (max-width: 600px) {

    .brand-logo {
        width: 220px;
        max-width: 75vw;
        height: auto;
    }

    .footer-logo-img {
        width: 140px;
        max-width: 65vw;
        height: auto;
    }

}

/* FONDO DEL CONTENEDOR MEMBER ONLY */
.premium-video {
    background-image: url('/assets/images/imj.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.premium-video video {
    background: transparent;
}



/* LOGO REGISTRO */
.register-logo {
    text-align: center;
    margin-bottom: 25px;
}

.register-logo-img {
    display: inline-block;
    width: 250px;
    max-width: 85%;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 600px) {
    .register-logo-img {
        width: 120px;
        max-width: 120px;
        height: auto;
        max-height: 120px;
        object-fit: contain;
    }
}
/* =========================================================
   ESTADO SUSCRIPCIÓN MEMBER ONLY
   ========================================================= */

.member-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    padding: 10px 18px;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;

    box-sizing: border-box;
}

.member-active {
    background: #16a34a;
    border: 1px solid #16a34a;
    color: #fff;

    box-shadow: 0 0 18px rgba(22,163,74,.20);
}

.member-inactive {
    background: #151515;
    border: 1px solid #333;
    color: #666;

    opacity: .65;
    cursor: not-allowed;
}

/* MÓVIL */

@media (max-width: 600px) {

    .member-badge {
        width: 100%;
        max-width: 300px;

        margin-top: 15px;
        padding: 11px 15px;

        font-size: 10px;
    }
}


/* =========================================================
   ENLACE MEMBER ONLY DEBAJO DEL VIDEO
   ========================================================= */

.premium-video-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    box-sizing: border-box;

    margin-top: 12px;
    padding: 12px 18px;

    background: #16a34a;
    border: 1px solid #16a34a;
    border-radius: 5px;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;

    transition: all .2s ease;
}

.premium-video-link span {
    font-weight: 900;
}

.premium-video-link:hover {
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
}

@media (max-width: 600px) {

    .premium-video-link {
        padding: 13px 12px;
        font-size: 11px;
        letter-spacing: 1px;
    }

}
/* =========================
   FOTOS
========================= */

.photos-section {
    max-width: 1250px;
    margin: 70px auto;
    padding: 0 20px;
}

.photos-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #111;
    border-radius: 8px;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.photo-item:hover img {
    transform: scale(1.06);
}

/* LIGHTBOX */

.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 50px rgba(0,0,0,.7);
}

.photo-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
}

@media (max-width: 900px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .photos-section {
        padding: 0 15px;
        margin: 50px auto;
    }

    .photos-section h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .photo-lightbox {
        padding: 15px;
    }

    .photo-lightbox img {
        max-width: 96vw;
        max-height: 85vh;
    }

    .photo-close {
        top: 12px;
        right: 18px;
        font-size: 36px;
    }
}
