@import url(https://fonts.googleapis.com/css2?family=Anton&family=Baloo+2:wght@500;600;700;800&family=Rubik:wght@400;500;600;700;800;900&display=swap);

:root {
    --color-green: #17ed02;
    --color-green-dark: #0baf00;
    --color-green-light: #6bff57;
    --color-black: #0d0d0d;
    --color-dark: #1a1a1a;
    --color-dark-card: #222222;
    --color-white: #ffffff;
    --color-cream: #ecf5ec;
    --color-red: #c20000;
    --color-red-dim: #ff4d4d;
    --font-display: "Anton", sans-serif;
    --font-cartoon: "Baloo 2", cursive;
    --font-body: "Rubik", sans-serif;
    --shadow-cartoon: 4px 4px 0px #000;
    --shadow-text: 3px 3px 0px #000;
    --shadow-card: 6px 6px 0px #000;
    --shadow-glow: 0 0 30px rgba(23, 237, 2, 0.5)
}

*,
::after,
::before {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    scroll-padding-top: 70px
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 70px
}

canvas,
img,
picture,
svg,
video {
    max-width: 100%;
    height: auto
}

.text-stroke {
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000
}

.text-stroke-white {
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff
}

.font-display {
    font-family: var(--font-display)
}

.font-cartoon {
    font-family: var(--font-cartoon)
}

.font-body {
    font-family: var(--font-body)
}

.announcement-bar {
    background: var(--color-green);
    color: var(--color-white);
    font-family: var(--font-cartoon);
    font-size: .85rem;
    letter-spacing: .05em;
    padding: 8px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.announcement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, .05) 40px, rgba(255, 255, 255, .05) 80px)
}

.announcement-ticker {
    display: inline-flex;
    gap: 3rem;
    animation: ticker 20s linear infinite;
    white-space: nowrap
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.navbar {
    background: var(--color-black);
    border-bottom: 3px solid var(--color-green);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-shadow: none !important;
    filter: none !important
}

.navbar-logo img {
    height: 52px;
    max-width: 42vw;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 0 var(--color-green));
    transition: transform .2s
}

.navbar-logo img:hover {
    transform: scale(1.08) rotate(-2deg)
}

@media (max-width:480px) {
    .navbar-logo img {
        height: 40px;
        max-width: 52vw
    }
}

.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.navbar-links a {
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .2s;
    position: relative
}

.navbar-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: width .25s
}

.navbar-links a:hover {
    color: var(--color-green)
}

.navbar-links a:hover::after {
    width: 100%
}

.navbar-links a.active {
    color: var(--color-green)
}

.navbar-links a.active::after {
    width: 100%
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.btn-subscribe {
    font-family: var(--font-cartoon);
    background: var(--color-green);
    color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: .95rem;
    cursor: pointer;
    box-shadow: var(--shadow-cartoon);
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    display: inline-block
}

.btn-subscribe:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
    background: var(--color-green-light)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all .3s
}

.hamburger.open span:first-child {
    transform: translateY(8px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 109px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 109px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-dark);
    border-bottom: 3px solid var(--color-green);
    padding: 1.5rem;
    z-index: 999;
    flex-direction: column;
    gap: 1.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0)
}

.mobile-menu a {
    font-family: var(--font-cartoon);
    font-size: 1.2rem;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: .8rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0)
}

.mobile-menu a:first-child {
    transition-delay: 30ms
}

.mobile-menu a:nth-child(2) {
    transition-delay: 60ms
}

.mobile-menu a:nth-child(3) {
    transition-delay: 90ms
}

.mobile-menu a:nth-child(4) {
    transition-delay: 0.12s
}

.mobile-menu a:nth-child(5) {
    transition-delay: 0.15s
}

.mobile-menu a:nth-child(6) {
    transition-delay: 0.18s
}

.mobile-menu a:nth-child(7) {
    transition-delay: 0.21s
}

.mobile-menu a:nth-child(8) {
    transition-delay: 0.24s
}

.mobile-menu a:hover {
    color: var(--color-green)
}

.mobile-menu a.active {
    color: var(--color-green);
    border-bottom-color: var(--color-green)
}

@media (prefers-reduced-motion:reduce) {

    .mobile-menu,
    .mobile-menu a {
        transition: none
    }
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(23, 237, 2, .18) 0, transparent 70%), linear-gradient(135deg, #0d0d0d 0, #001a05 50%, #0d0d0d 100%)
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 30px 30px
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 2rem 2.5rem
}

.hero-eyebrow {
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: var(--color-green);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.hero-eyebrow::after,
.hero-eyebrow::before {
    content: "⚡";
    font-size: .9em
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: .95;
    color: var(--color-white);
    text-shadow: var(--shadow-text);
    margin: 0 0 .4rem;
    letter-spacing: .02em
}

.hero-title .accent {
    color: var(--color-green)
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6)
}

.hero-subtitle b,
.hero-subtitle strong {
    font-weight: 500;
    color: #fff
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center
}

.btn-primary {
    font-family: var(--font-cartoon);
    background: var(--color-green);
    color: #fff;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: .04em
}

.btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000
}

.btn-secondary {
    font-family: var(--font-cartoon);
    background: 0 0;
    color: var(--color-white);
    border: 3px solid var(--color-white);
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: transform .15s, box-shadow .15s, background .2s;
    text-decoration: none;
    display: inline-block
}

.btn-secondary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #555;
    background: rgba(255, 255, 255, .08)
}

.hero-image-side {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-width: 55%;
    display: flex;
    align-items: flex-end;
    pointer-events: none
}

.hero-image-side img {
    height: 92%;
    object-fit: contain;
    filter: drop-shadow(-20px 0 40px rgba(23, 237, 2, .4));
    animation: heroFloat 3s ease-in-out infinite
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

.hero-stats {
    position: absolute;
    bottom: 5.5rem;
    left: 5rem;
    display: flex;
    gap: 1rem;
    z-index: 5
}

.hero-stat {
    background: rgba(0, 0, 0, .72);
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    padding: 10px 22px;
    text-align: center;
    backdrop-filter: blur(14px);
    min-width: 90px
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-green);
    line-height: 1
}

.hero-stat-label {
    font-family: var(--font-cartoon);
    font-size: .78rem;
    color: #ddd;
    letter-spacing: .05em
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: .03em;
    line-height: 1;
    text-shadow: var(--shadow-text)
}

.section-label {
    font-family: var(--font-cartoon);
    font-size: .9rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: .5rem
}

.ticker-band {
    background: var(--color-green);
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap
}

.ticker-inner {
    display: inline-flex;
    gap: 3rem;
    animation: ticker 18s linear infinite
}

.ticker-inner span {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: .08em;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .5)
}

.videos-section {
    background: var(--color-dark);
    padding: 5rem 1.5rem
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem
}

.video-card {
    background: var(--color-dark-card);
    border: 3px solid #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
    position: relative
}

.video-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 #000
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden
}

.video-thumb iframe,
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s
}

.video-card:hover .video-play-overlay {
    opacity: 1
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--color-green);
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0 #000
}

.play-btn svg {
    fill: #fff;
    width: 22px;
    height: 22px
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-green);
    color: #fff;
    font-family: var(--font-cartoon);
    font-size: .7rem;
    padding: 3px 8px;
    border-radius: 4px;
    border: 2px solid #000;
    letter-spacing: .05em
}

.video-info {
    padding: 1rem 1.2rem
}

.video-title {
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: var(--color-white);
    margin: 0 0 .4rem;
    line-height: 1.3
}

.video-meta {
    font-size: .8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: .5rem
}

.video-meta .dot {
    color: var(--color-green)
}

.shorts-section {
    background: var(--color-black);
    padding: 5rem 0
}

.shorts-scroll {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-green) #333;
    margin-top: 2.5rem;
    scroll-snap-type: x mandatory
}

.shorts-scroll::-webkit-scrollbar {
    height: 6px
}

.shorts-scroll::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px
}

.shorts-scroll::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 3px
}

.short-card {
    flex: 0 0 200px;
    background: var(--color-dark-card);
    border: 3px solid #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .2s;
    scroll-snap-align: start;
    cursor: pointer
}

.short-card:hover {
    transform: translate(-3px, -3px) scale(1.02)
}

.short-thumb {
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden
}

.short-thumb iframe,
.short-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none
}

.short-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .8rem .7rem .6rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
    font-family: var(--font-cartoon);
    font-size: .8rem;
    color: #fff
}

.short-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-green);
    color: #fff;
    font-family: var(--font-cartoon);
    font-size: .65rem;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1.5px solid #000;
    display: flex;
    align-items: center;
    gap: 3px
}

.about-section {
    background: var(--color-green);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, .07) 1px, transparent 1px);
    background-size: 24px 24px
}

.about-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.about-image-wrap {
    position: relative
}

.about-image-wrap img {
    width: 100%;
    border-radius: 16px;
    border: 4px solid #000;
    box-shadow: var(--shadow-card);
    display: block
}

.about-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    background: var(--color-red);
    color: #000;
    font-family: var(--font-display);
    font-size: 1.2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    box-shadow: 3px 3px 0 #000;
    animation: spin3d 6s linear infinite
}

@keyframes spin3d {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.about-text .section-title {
    color: #fff
}

.about-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .9);
    line-height: 1.65;
    margin: 1rem 0 1.8rem
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.social-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-cartoon);
    font-size: .95rem;
    background: rgba(0, 0, 0, .2);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, .4);
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .3)
}

.social-link:hover {
    background: rgba(0, 0, 0, .4);
    transform: translate(-2px, -2px)
}

.merch-section {
    background: var(--color-dark);
    padding: 5rem 1.5rem
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem
}

.product-card {
    background: var(--color-dark-card);
    border: 3px solid #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 #000
}

.product-img {
    background: #2a2a2a;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.product-img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform .3s
}

.product-card:hover .product-img img {
    transform: scale(1.08) rotate(-3deg)
}

.product-info {
    padding: 1rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.product-name {
    font-family: var(--font-cartoon);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 .3rem;
    color: #fff
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-green);
    margin-bottom: auto
}

.btn-cart {
    font-family: var(--font-cartoon);
    background: var(--color-green);
    color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 9px 0;
    width: 100%;
    font-size: .9rem;
    cursor: pointer;
    box-shadow: 3px 3px 0 #000;
    margin-top: 1rem;
    transition: transform .15s, box-shadow .15s;
    letter-spacing: .05em;
    text-align: center;
    text-decoration: none;
    display: block
}

.btn-cart:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000
}

.platforms-section {
    background: var(--color-green-dark);
    padding: 4rem 1.5rem;
    text-align: center;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    position: relative;
    overflow: hidden
}

.platforms-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, .05) 0, transparent 70%)
}

.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2
}

.platform-pill {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .12);
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    padding: 10px 22px;
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .3);
    transition: background .2s, transform .15s
}

.platform-pill:hover {
    background: rgba(255, 255, 255, .2);
    transform: translate(-2px, -2px)
}

.platform-pill img {
    height: 24px
}

.join-section {
    background: var(--color-dark);
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.join-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(23, 237, 2, .12) 0, transparent 70%)
}

.join-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto
}

.join-form {
    display: flex;
    gap: .8rem;
    margin-top: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto
}

.join-input {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    border: 3px solid #444;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    outline: 0;
    transition: border-color .2s
}

.join-input::placeholder {
    color: #777
}

.join-input:focus {
    border-color: var(--color-green)
}

.join-disclaimer {
    font-size: .78rem;
    color: #666;
    margin-top: .8rem;
    line-height: 1.5
}

.sticky-join {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 900;
    animation: bounce 2s ease-in-out infinite
}

.sticky-join a {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #2fc51f;
    color: #000;
    font-family: var(--font-cartoon);
    font-size: .95rem;
    padding: 10px 20px;
    border-radius: 999px;
    border: 3px solid #000;
    text-decoration: none;
    box-shadow: 4px 4px 0 #000;
    transition: transform .15s
}

.sticky-join a:hover {
    transform: translate(-2px, -2px)
}

.sticky-join-close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #000;
    line-height: 1
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

footer {
    background: var(--color-black);
    border-top: 4px solid var(--color-green);
    padding: 4rem 1.5rem 2rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto
}

.footer-logo img {
    height: 64px;
    margin-bottom: 1rem
}

.footer-tagline {
    font-family: var(--font-cartoon);
    color: #888;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem
}

.footer-socials {
    display: flex;
    gap: .8rem
}

.footer-social {
    width: 38px;
    height: 38px;
    background: var(--color-dark-card);
    border: 2px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: background .2s, border-color .2s, transform .15s
}

.footer-social:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    transform: translate(-2px, -2px)
}

.footer-col h4 {
    font-family: var(--font-cartoon);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-green);
    margin: 0 0 1rem
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.footer-col ul a {
    font-family: var(--font-body);
    font-size: .9rem;
    color: #888;
    text-decoration: none;
    transition: color .2s
}

.footer-col ul a:hover {
    color: var(--color-white)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: .8rem;
    color: #555;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.footer-bottom a {
    color: #666;
    text-decoration: none
}

.footer-bottom a:hover {
    color: var(--color-green)
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

@media (max-width:1024px) {
    .about-inner {
        grid-template-columns: 1fr
    }

    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .hero-image-side {
        max-width: 45%;
        opacity: .6
    }
}

@media (max-width:768px) {
    .navbar-links {
        display: none
    }

    .btn-subscribe {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero {
        min-height: 80vh
    }

    .hero-content {
        padding: 2rem 1.2rem
    }

    .hero-image-side {
        max-width: 60%;
        opacity: .35
    }

    .hero-stats {
        display: none
    }

    .videos-grid {
        grid-template-columns: 1fr
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .join-form {
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .about-inner {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .products-grid {
        grid-template-columns: 1fr
    }

    .hero-cta-group {
        flex-direction: column
    }

    .btn-primary,
    .btn-secondary {
        text-align: center
    }

    .hero-title {
        font-size: 2.8rem
    }
}

.max-w-site {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto
}

.container-px {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0;
    text-decoration: none;
    user-select: none
}

.logo-jenkito {
    font-family: Anton, sans-serif;
    font-size: 2rem;
    letter-spacing: .08em;
    color: #fff;
    -webkit-text-stroke: 2px #17ed02;
    paint-order: stroke fill;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    display: block;
    transition: transform .2s
}

.logo-sub {
    font-family: "Baloo 2", cursive;
    font-size: .72rem;
    letter-spacing: .22em;
    color: #17ed02;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
    text-shadow: 1px 1px 0 #000, 2px 2px 0 rgba(0, 0, 0, .5)
}

.navbar-logo:hover .logo-jenkito {
    transform: scale(1.06) rotate(-2deg);
    color: #c20000;
    -webkit-text-stroke-color: #000
}

.navbar-logo:hover .logo-sub {
    color: #c20000
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 4px 4px 0 #000, 0 0 0 0 rgba(23, 237, 2, .7)
    }

    50% {
        box-shadow: 4px 4px 0 #000, 0 0 0 10px rgba(23, 237, 2, 0)
    }
}

.btn-subscribe {
    animation: pulse-red 2.5s ease-in-out infinite
}

.btn-subscribe:hover {
    animation: none
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .07) 50%, transparent 60%);
    background-size: 200% auto;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    border-radius: 14px
}

.video-card:hover::after {
    opacity: 1;
    animation: shimmer .8s linear
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0)
    }

    20% {
        transform: rotate(-4deg) scale(1.04)
    }

    60% {
        transform: rotate(4deg) scale(1.04)
    }

    80% {
        transform: rotate(-2deg)
    }
}

.btn-cart:hover {
    animation: wiggle .45s ease
}

@keyframes glow-pulse {

    0%,
    100% {
        border-color: var(--color-green);
        box-shadow: none
    }

    50% {
        border-color: #6bff57;
        box-shadow: 0 0 18px rgba(23, 237, 2, .55)
    }
}

.hero-stat {
    animation: glow-pulse 2.8s ease-in-out infinite
}

.hero-stat:nth-child(2) {
    animation-delay: .9s
}

.hero-stat:nth-child(3) {
    animation-delay: 1.8s
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.section-label {
    animation: fadeSlideUp .7s ease both
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1
    }

    92% {
        opacity: 1
    }

    93% {
        opacity: .85
    }

    94% {
        opacity: 1
    }

    97% {
        opacity: .9
    }

    98% {
        opacity: 1
    }
}

.ticker-band {
    animation: flicker 5s linear infinite
}

.about-badge {
    animation: spin3d 6s linear infinite
}

.product-card {
    transition: transform .2s, box-shadow .2s, opacity .4s
}

.product-card.reveal {
    transform: translateY(30px) scale(.96)
}

.product-card.reveal.visible {
    transform: translateY(0) scale(1)
}

.platform-pill {
    position: relative;
    overflow: hidden
}

.platform-pill::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .6);
    transition: left .3s ease
}

.platform-pill:hover::after {
    left: 0
}

@keyframes neon-flicker {

    0%,
    100% {
        text-shadow: 3px 3px 0 #000;
        color: var(--color-green)
    }

    48% {
        text-shadow: 3px 3px 0 #000;
        color: var(--color-green)
    }

    50% {
        text-shadow: 3px 3px 0 #000, 0 0 12px #17ed02, 0 0 24px #17ed02;
        color: #7bff6b
    }

    52% {
        text-shadow: 3px 3px 0 #000;
        color: var(--color-green)
    }
}

.hero-title .accent {
    animation: neon-flicker 4s ease-in-out infinite
}

.short-card {
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s
}

.short-card:hover {
    transform: translate(-4px, -6px) scale(1.04) rotate(-1deg);
    box-shadow: 8px 8px 0 #000
}

.shorts-carousel-wrapper {
    position: relative;
    display: block;
    margin-top: 2.5rem;
    width: 100%;
    overflow: hidden
}

.shorts-track-outer {
    width: 100%;
    overflow: hidden
}

.shorts-track {
    display: flex;
    gap: 8px;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform
}

.short-card-lg {
    flex: 0 0 calc(25% - 6px);
    width: calc(25% - 6px);
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #000 !important;
    box-shadow: 5px 5px 0 #000 !important;
    transition: box-shadow .2s, border-color .2s, transform .2s;
    opacity: 1;
    transform: none !important;
    cursor: pointer;
    position: relative;
    background: #111
}

.short-card-lg:last-child {
    border-right: 3px solid #000 !important
}

.short-card-lg:hover {
    border-color: var(--color-green) !important;
    box-shadow: 5px 5px 0 var(--color-green) !important;
    transform: translate(-2px, -2px) !important
}

.short-card-lg.active {
    outline: 0;
    border-color: var(--color-green) !important;
    box-shadow: 5px 5px 0 var(--color-green) !important
}

.short-card-lg.active:hover {
    opacity: 1
}

.short-thumb-lg {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #111
}

.short-thumb-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

.short-card-lg:hover .short-thumb-lg img {
    transform: scale(1.06)
}

.short-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .1) 50%, transparent 100%);
    pointer-events: none
}

.short-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    width: 58px;
    height: 58px;
    background: rgba(23, 237, 2, .9);
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s, transform .2s
}

.short-play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 3px
}

.short-card-lg.active .short-play-btn,
.short-card-lg:hover .short-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.short-label-lg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem .9rem .9rem;
    font-family: var(--font-cartoon);
    font-size: .95rem;
    color: #fff;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .8)
}

.shorts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--color-green);
    border: 3px solid #000;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0 #000;
    transition: transform .15s, box-shadow .15s, background .2s;
    z-index: 10
}

.shorts-arrow:hover {
    background: var(--color-green-light);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 5px 5px 0 #000
}

.shorts-arrow svg {
    width: 22px;
    height: 22px
}

.shorts-arrow-left {
    left: 12px;
    margin-right: 0
}

.shorts-arrow-right {
    right: 12px;
    margin-left: 0
}

.shorts-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end
}

.shorts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    border: 2px solid #666;
    cursor: pointer;
    transition: background .25s, transform .2s
}

.shorts-dot.active {
    background: var(--color-green);
    border-color: var(--color-green);
    transform: scale(1.3)
}

@media (max-width:768px) {
    .short-card-lg {
        flex: 0 0 calc(50% - 4px) !important;
        width: calc(50% - 4px) !important
    }

    .shorts-arrow {
        width: 40px;
        height: 40px
    }
}

@media (min-width:769px) and (max-width:1024px) {
    .short-card-lg {
        flex: 0 0 calc(33.333% - 5px) !important;
        width: calc(33.333% - 5px) !important
    }
}

.photos-section {
    background: var(--color-black);
    padding: 5rem 1.5rem;
    border-top: 4px solid #111
}

.photo-coming-badge {
    font-family: var(--font-cartoon);
    font-size: .85rem;
    letter-spacing: .1em;
    background: var(--color-red);
    color: #000;
    padding: 6px 16px;
    border-radius: 999px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    white-space: nowrap;
    margin-bottom: .4rem
}

.photos-carousel {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #222
}

.photos-track {
    display: flex;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform
}

.photo-slide {
    flex: 0 0 100%;
    min-width: 0
}

.photo-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #001a05 0, #111 50%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.photo-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(23, 237, 2, .06) 1px, transparent 1px);
    background-size: 28px 28px
}

.photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.photo-placeholder-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, .35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem
}

.photo-icon {
    font-size: 4rem;
    display: block
}

.photo-placeholder-inner p {
    font-family: var(--font-cartoon);
    font-size: 1.1rem;
    margin: 0
}

.photo-replace-note {
    font-family: monospace;
    font-size: .75rem;
    color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    padding: 3px 8px;
    border-radius: 4px
}

.photos-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background .2s, transform .15s
}

.photos-arrow:hover {
    background: var(--color-green);
    transform: translateY(-50%) scale(1.1)
}

.photos-arrow svg {
    width: 20px;
    height: 20px
}

.photos-arrow-left {
    left: 1rem
}

.photos-arrow-right {
    right: 1rem
}

.photos-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3
}

.photos-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: background .25s, transform .2s;
    border: none
}

.photos-dot.active {
    background: var(--color-green);
    transform: scale(1.4)
}

.about-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .92);
    line-height: 1.7;
    margin: 1rem 0 1.4rem
}

.about-quien-soy {
    background: rgba(0, 0, 0, .25);
    border-left: 4px solid var(--color-red);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.2rem;
    margin-bottom: 1.8rem
}

.about-quien-label {
    font-family: var(--font-cartoon);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-red);
    margin: 0 0 .4rem
}

.about-quien-text {
    font-family: var(--font-body);
    font-size: .98rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.65;
    margin: 0
}

.hero-slider {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: stretch
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: var(--slide-grad, linear-gradient(135deg, #0d0d0d, #001a05));
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease, transform .7s ease;
    transform: translateX(60px) scale(.98);
    z-index: 0
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    z-index: 1
}

.hero-slide.exit {
    opacity: 0;
    transform: translateX(-60px) scale(.98);
    z-index: 0
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hero-dots-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 28px 28px
}

.hero-slide-shapes {
    position: absolute;
    inset: 0
}

.hs-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: shapePulse 6s ease-in-out infinite
}

.hs-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--slide-glow, rgba(23, 237, 2, .25));
    top: -100px;
    right: -100px;
    animation-delay: 0s
}

.hs-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .04);
    bottom: 50px;
    left: 30%;
    animation-delay: 2s
}

.hs-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 214, 0, .08);
    top: 30%;
    left: -50px;
    animation-delay: 4s
}

@keyframes shapePulse {

    0%,
    100% {
        transform: scale(1) rotate(0);
        opacity: .8
    }

    50% {
        transform: scale(1.15) rotate(8deg);
        opacity: 1
    }
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 2.5rem 2.5rem 7rem 5rem;
    flex: 1
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-cartoon);
    font-size: .9rem;
    letter-spacing: .1em;
    color: #fff;
    padding: 5px 16px;
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, .4);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .5);
    margin-bottom: 1rem;
    animation: pillBounce .6s cubic-bezier(.34, 1.56, .64, 1) both
}

@keyframes pillBounce {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(.9)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8.5vw, 7rem);
    line-height: .92;
    color: var(--color-white);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, .7);
    margin: 0 0 .5rem;
    letter-spacing: .02em
}

.hero-title .accent {
    color: var(--slide-accent, var(--color-green));
    animation: neon-flicker 4s ease-in-out infinite
}

.hero-title-outline {
    -webkit-text-stroke: 3px #fff;
    color: transparent;
    text-shadow: none;
    display: inline-block
}

.hero-slide.active .hero-title {
    animation: titleSlideIn .8s cubic-bezier(.22, 1, .36, 1) .1s both
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.hero-slide.active .hero-subtitle {
    animation: titleSlideIn .8s cubic-bezier(.22, 1, .36, 1) .25s both
}

.hero-slide.active .hero-cta-group {
    animation: titleSlideIn .8s cubic-bezier(.22, 1, .36, 1) .4s both
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin-bottom: 2.2rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6)
}

.hero-subtitle b,
.hero-subtitle strong {
    font-weight: 500;
    color: #fff
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center
}

.btn-hero-main {
    font-family: var(--font-cartoon);
    background: var(--color-green);
    color: #fff;
    border: 3px solid #000;
    border-radius: 12px;
    padding: 16px 36px;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 6px 6px 0 #000, 0 0 30px rgba(23, 237, 2, .4);
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    letter-spacing: .05em
}

.btn-hero-main:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000, 0 0 45px rgba(23, 237, 2, .55)
}

.btn-hero-icon {
    font-size: 1.2em
}

.btn-hero-ghost {
    font-family: var(--font-cartoon);
    background: 0 0;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: .04em;
    transition: background .2s, border-color .2s, transform .15s;
    backdrop-filter: blur(4px)
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .1);
    transform: translate(-2px, -2px)
}

.hero-slide-deco {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1
}

.hero-deco-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 320px
}

.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(23, 237, 2, .3);
    animation: ringExpand 3s ease-in-out infinite
}

.deco-ring-1 {
    width: 280px;
    height: 280px;
    animation-delay: 0s
}

.deco-ring-2 {
    width: 340px;
    height: 340px;
    animation-delay: 1s
}

@keyframes ringExpand {

    0%,
    100% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.08);
        opacity: 1
    }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s, transform .15s, border-color .2s, opacity .2s;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .6);
    opacity: .5
}

.hero-slider:hover .hero-arrow {
    opacity: 1
}

.hero-arrow:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    transform: translateY(-50%) scale(1.08);
    opacity: 1
}

.hero-arrow svg {
    width: 18px;
    height: 18px
}

.hero-arrow-left {
    left: .75rem
}

.hero-arrow-right {
    right: .75rem
}

.hero-slider-dots {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background .25s, transform .2s, width .3s
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.25);
    width: 28px;
    border-radius: 6px
}

.hero-stats {
    position: absolute;
    bottom: 5.5rem;
    left: 5rem;
    display: flex;
    gap: 1rem;
    z-index: 5;
    flex-wrap: nowrap
}

.hero-stat {
    background: rgba(0, 0, 0, .72);
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 10px 22px;
    text-align: center;
    backdrop-filter: blur(14px);
    animation: glow-pulse 2.8s ease-in-out infinite;
    min-width: 90px
}

.btn-subscribe-big {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: .4rem;
    padding: 7px 16px !important;
    border-radius: 8px !important;
    position: relative;
    overflow: hidden;
    background: var(--color-green) !important;
    font-size: .88rem !important;
    animation: pulse-red 2.5s ease-in-out infinite !important
}

@keyframes gradShift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.subscribe-icon {
    font-size: .9rem;
    line-height: 1
}

.subscribe-text {
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em
}

.subscribe-sub {
    display: none
}

.btn-subscribe-big:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 4px 4px 0 #000 !important;
    animation: none !important;
    background: #2fc51f !important
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px
}

.footer-logo-jenkito {
    font-family: Anton, sans-serif;
    font-size: 2.4rem;
    color: #fff;
    -webkit-text-stroke: 2px var(--color-green);
    paint-order: stroke fill;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    letter-spacing: .06em;
    display: block
}

.footer-logo-sub {
    font-family: "Baloo 2", cursive;
    font-size: .75rem;
    color: var(--color-green);
    letter-spacing: .22em;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #000;
    display: block
}

.videos-section {
    background: linear-gradient(180deg, #141414 0, #000d03 100%);
    position: relative;
    overflow: hidden
}

.videos-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(23, 237, 2, .1) 0, transparent 70%);
    pointer-events: none
}

.shorts-section {
    background: linear-gradient(180deg, #0d0d0d 0, #001003 100%);
    position: relative;
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important
}

.shorts-section .max-w-site {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.shorts-section .shorts-carousel-wrapper {
    margin-top: 2rem
}

.shorts-section>div:last-child {
    padding-top: 0;
    padding-bottom: 5rem
}

.shorts-section::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 0, 0, .12) 0, transparent 70%);
    pointer-events: none
}

.merch-section {
    background: linear-gradient(180deg, #000d03 0, #000a02 50%, #000d03 100%)
}

.join-section {
    background: linear-gradient(135deg, #0d0d0d 0, #001a05 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden
}

.join-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 20% 50%, rgba(23, 237, 2, .12) 0, transparent 60%), radial-gradient(ellipse 70% 50% at 80% 50%, rgba(255, 214, 0, .06) 0, transparent 60%);
    pointer-events: none
}

.ticker-band {
    background: #12c200;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    padding: 22px 0;
    animation: flicker 5s linear infinite
}

.ticker-inner span {
    font-size: 2rem
}

.video-card:first-child {
    border-color: #17ed02
}

.video-card:nth-child(2) {
    border-color: #12c200
}

.video-card:nth-child(3) {
    border-color: #3dff1a
}

.video-card:nth-child(4) {
    border-color: #0e9e00
}

.video-card:nth-child(5) {
    border-color: #17ed02
}

.video-card:nth-child(6) {
    border-color: #12c200
}

.platform-pill:first-child {
    background: rgba(255, 0, 0, .2);
    border-color: rgba(255, 0, 0, .5)
}

.platform-pill:nth-child(2) {
    background: rgba(200, 0, 0, .15);
    border-color: rgba(200, 0, 0, .4)
}

.platform-pill:nth-child(3) {
    background: rgba(180, 0, 0, .15);
    border-color: rgba(180, 0, 0, .4)
}

.platform-pill:nth-child(4) {
    background: rgba(220, 0, 0, .15);
    border-color: rgba(220, 0, 0, .4)
}

.announcement-bar {
    background: #12c200
}

.section-title {
    background: linear-gradient(135deg, #fff 0, #ddd 100%);
    -webkit-background-clip: text;
    background-clip: text
}

.about-section {
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .04) 0, rgba(255, 255, 255, .04) 12px, rgba(0, 0, 0, .04) 12px, rgba(0, 0, 0, .04) 24px), linear-gradient(135deg, #0b8a00 0, #18a800 35%, #28c300 70%, #159600 100%);
    border-top: 5px solid #000;
    border-bottom: 5px solid #000
}

.navbar {
    background: linear-gradient(180deg, #111 0, #0d0d0d 100%)
}

footer {
    background: linear-gradient(180deg, #0d0d0d 0, #050505 100%)
}

.impact-section {
    background: #000;
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(23, 237, 2, .04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none
}

.impact-eyebrow {
    font-family: var(--font-cartoon);
    font-size: .9rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 1rem
}

.impact-title-sub {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .5);
    line-height: .95;
    margin: 0 0 .3rem
}

.impact-title-main {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-green);
    line-height: 1;
    margin: 0 0 1.5rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .6)
}

.impact-desc {
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: #aaa;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    line-height: 1.6
}

.impact-desc span {
    color: var(--color-green)
}

.impact-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.impact-pillar {
    text-align: center
}

.impact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    box-shadow: 0 0 20px rgba(23, 237, 2, .4), inset 0 0 20px rgba(23, 237, 2, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem
}

.impact-pillar-title {
    font-family: var(--font-cartoon);
    font-size: 1.1rem;
    color: var(--color-green);
    margin: 0 0 .6rem;
    text-shadow: 0 0 15px rgba(23, 237, 2, .5)
}

.impact-pillar-desc {
    font-family: var(--font-body);
    font-size: .9rem;
    color: #888;
    line-height: 1.6;
    margin: 0
}

@media (max-width:768px) {
    .impact-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }
}

@media (max-width:480px) {
    .impact-pillars {
        grid-template-columns: 1fr
    }
}

.audience-section {
    background: #000;
    padding: 5rem 1.5rem;
    text-align: center;
    border-top: 3px solid #001a05;
    border-bottom: 3px solid #001a05;
    position: relative;
    overflow: hidden
}

.audience-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: .05em;
    margin: 0 0 2.5rem
}

.audience-title span {
    color: var(--color-green)
}

.audience-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto
}

.audience-card {
    background: #0d0d0d;
    border: 2px solid #001a05;
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    width: 170px;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    cursor: default;
    position: relative;
    overflow: hidden
}

.audience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 2px rgba(23, 237, 2, 0);
    transition: box-shadow .3s
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-green);
    box-shadow: 0 8px 30px rgba(23, 237, 2, .25), 0 0 0 1px var(--color-green)
}

.audience-card-icon {
    font-size: 2.5rem;
    margin-bottom: .8rem;
    display: block
}

.audience-card-name {
    font-family: var(--font-cartoon);
    font-size: .8rem;
    letter-spacing: .15em;
    color: #888;
    margin: 0 0 .4rem;
    text-transform: uppercase
}

.audience-card-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-green);
    text-shadow: 0 0 15px rgba(23, 237, 2, .4);
    line-height: 1;
    display: block;
    margin-bottom: .2rem
}

.audience-card-label {
    font-family: var(--font-cartoon);
    font-size: .65rem;
    letter-spacing: .15em;
    color: #555;
    text-transform: uppercase
}

.audience-note {
    font-family: var(--font-cartoon);
    font-size: .9rem;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem
}

.audience-note span {
    color: var(--color-green);
    font-size: 1rem
}

.blog-section {
    background: linear-gradient(180deg, #000a02 0, #0d0d0d 100%);
    padding: 5rem 1.5rem
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem
}

.blog-card {
    background: #111;
    border: 2px solid #001a05;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-green);
    box-shadow: 0 8px 30px rgba(23, 237, 2, .2)
}

.blog-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #001a05, #000d03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden
}

.blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .5))
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-green);
    color: #fff;
    font-family: var(--font-cartoon);
    font-size: .7rem;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: .08em;
    z-index: 2;
    border: 1.5px solid rgba(0, 0, 0, .3)
}

.blog-info {
    padding: 1.2rem 1.3rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-date {
    font-family: var(--font-cartoon);
    font-size: .75rem;
    color: var(--color-green);
    letter-spacing: .08em;
    margin-bottom: .5rem
}

.blog-title {
    font-family: var(--font-cartoon);
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 .6rem;
    font-weight: 700
}

.blog-excerpt {
    font-family: var(--font-body);
    font-size: .85rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
    flex: 1
}

.blog-read-more {
    font-family: var(--font-cartoon);
    font-size: .85rem;
    color: var(--color-green);
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: gap .2s
}

.blog-card:hover .blog-read-more {
    gap: .6rem
}

.collabs-section {
    background: #000;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden
}

.collabs-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(23, 237, 2, .06) 0, transparent 70%);
    pointer-events: none
}

.collabs-intro {
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: #888;
    max-width: 600px;
    margin: 1rem auto 3rem;
    text-align: center;
    line-height: 1.6
}

.collabs-intro strong {
    color: var(--color-green)
}

.collabs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    max-width: 1500px;
    margin: 0 auto
}

.collab-card {
    background: #0d0d0d;
    border: 2px solid #001a05;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .8rem;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.collab-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-green);
    box-shadow: 0 8px 30px rgba(23, 237, 2, .2)
}

.collab-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001a05, #0a2200);
    border: 3px solid var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(23, 237, 2, .3)
}

.collab-name {
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin: 0
}

.collab-type {
    font-family: var(--font-body);
    font-size: .8rem;
    color: var(--color-green);
    margin: 0;
    letter-spacing: .05em
}

.collab-subs {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .03em
}

.collab-badge {
    background: rgba(23, 237, 2, .15);
    border: 1px solid rgba(23, 237, 2, .4);
    border-radius: 999px;
    padding: 3px 10px;
    font-family: var(--font-cartoon);
    font-size: .7rem;
    color: var(--color-green);
    letter-spacing: .08em
}

.collabs-cta {
    text-align: center;
    margin-top: 3rem
}

.btn-collab {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-cartoon);
    background: 0 0;
    color: var(--color-green);
    border: 2px solid var(--color-green);
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, transform .15s;
    box-shadow: 4px 4px 0 rgba(23, 237, 2, .3)
}

.btn-collab:hover {
    background: var(--color-green);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(180, 0, 0, .5)
}

.stats-bar {
    background: #0d0d0d;
    border-bottom: 2px solid #001a05;
    padding: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem
}

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 10px 1.5rem;
    border-right: 1px solid #001a05;
    font-family: var(--font-cartoon);
    font-size: .85rem;
    color: #aaa;
    white-space: nowrap
}

.stat-bar-item:first-child {
    padding-left: 0
}

.stat-bar-item:last-child {
    border-right: none
}

.stat-bar-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-green);
    line-height: 1
}

@media (max-width:768px) {
    .stats-bar {
        display: none
    }
}

@media (max-width:768px) {
    .hero-slide-deco {
        display: none
    }

    .hero-slide {
        align-items: flex-start
    }

    .hero-slide-content {
        padding: 2rem 1.2rem 1rem
    }

    .hero-slider {
        min-height: 85vh
    }

    .hero-stats {
        left: 1.2rem;
        right: 1.2rem;
        bottom: auto;
        gap: .6rem;
        flex-wrap: wrap;
        justify-content: center
    }

    .hero-stat {
        padding: 7px 12px
    }

    .hero-stat-num {
        font-size: 1.4rem
    }

    .hero-stat-label {
        font-size: .7rem
    }

    .hero-slider-dots {
        bottom: auto
    }

    .hero-arrow {
        width: 42px;
        height: 42px
    }

    .hero-arrow-left {
        left: .5rem
    }

    .hero-arrow-right {
        right: .5rem
    }

    .collabs-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-grid {
        grid-template-columns: 1fr
    }
}

.btn-cart,
.btn-collab,
.btn-hero-ghost,
.btn-hero-main,
.btn-primary,
.btn-secondary,
.btn-subscribe,
.platform-pill,
.social-link {
    outline: 0
}

.audience-title,
.hero-title,
.impact-title-main,
.impact-title-sub,
.section-title {
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.8);
    paint-order: stroke fill
}

.audience-card,
.blog-card,
.collab-card,
.product-card,
.video-card {
    border: 3px solid #000 !important;
    box-shadow: 5px 5px 0 #000
}

.short-card-lg {
    outline: 0 !important
}

.short-card-lg:last-child {
    border: 3px solid #000 !important
}

.blog-card:hover,
.product-card:hover,
.video-card:hover {
    box-shadow: 8px 8px 0 #000;
    transform: translate(-3px, -3px)
}

.collab-card:hover {
    box-shadow: 6px 6px 0 #000;
    transform: translate(-3px, -3px)
}

.audience-card:hover {
    box-shadow: 6px 6px 0 #000;
    transform: translate(-3px, -3px)
}

.short-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0
}

.short-ph-emoji {
    font-size: 3.5rem;
    display: block;
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, .5));
    animation: emojiPop 2s ease-in-out infinite
}

@keyframes emojiPop {

    0%,
    100% {
        transform: scale(1) rotate(-3deg)
    }

    50% {
        transform: scale(1.12) rotate(3deg)
    }
}

.short-ph-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    text-align: left;
    -webkit-text-stroke: 1px #000;
    paint-order: stroke fill;
    line-height: 1.2;
    text-shadow: 2px 2px 0 #000
}

.short-ph-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem .9rem .9rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0, rgba(0, 0, 0, .4) 60%, transparent 100%);
    z-index: 3;
    pointer-events: none
}

.short-card-lg.active {
    outline: 0 !important;
    border-color: var(--color-green) !important;
    box-shadow: 5px 5px 0 var(--color-green) !important;
    opacity: 1 !important
}

.short-card-lg.active {
    opacity: 1 !important
}

.btn-primary {
    border: 3px solid #000 !important;
    box-shadow: 5px 5px 0 #000;
    font-weight: 800;
    letter-spacing: .06em
}

.btn-primary:hover {
    box-shadow: 8px 8px 0 #000;
    transform: translate(-3px, -3px)
}

.btn-hero-main {
    border: 3px solid #000 !important;
    font-weight: 800
}

.section-label {
    display: inline-block;
    background: var(--color-green);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    font-family: var(--font-cartoon);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: none
}

.impact-icon {
    border: 3px solid var(--color-green) !important;
    box-shadow: 4px 4px 0 #000, 0 0 20px rgba(23, 237, 2, .4) !important;
    background: #000d03
}

.stats-bar {
    border-bottom: 3px solid #000 !important;
    border-top: 3px solid #000
}

.stat-bar-num {
    -webkit-text-stroke: 0.5px #000;
    paint-order: stroke fill
}

.ticker-band {
    border-top: 4px solid #000 !important;
    border-bottom: 4px solid #000 !important
}

.navbar {
    border-bottom: 4px solid var(--color-green) !important;
    border-top: none
}

.about-badge {
    border: 3px solid #000 !important;
    box-shadow: 4px 4px 0 #000 !important
}

.collab-avatar {
    border: 3px solid #000 !important;
    box-shadow: 3px 3px 0 #000 !important
}

.blog-card {
    box-shadow: 5px 5px 0 #000
}

.blog-card:hover {
    box-shadow: 8px 8px 0 #000 !important;
    transform: translate(-3px, -4px) !important
}

.audience-card {
    border: 3px solid #000 !important;
    box-shadow: 4px 4px 0 #000
}

.audience-card:hover {
    box-shadow: 6px 6px 0 #000 !important;
    transform: translate(-2px, -3px) !important
}

.hero-stat {
    border: 3px solid var(--color-green) !important;
    box-shadow: 4px 4px 0 #000
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -.1em;
    display: inline-block
}

.short-ph-emoji img.emoji {
    height: 3.5rem;
    width: 3.5rem;
    margin: 0;
    vertical-align: middle
}

.page-hero {
    padding: 7.5rem 1.5rem 1rem;
    text-align: center;
    position: relative
}

.page-hero-intro {
    font-family: var(--font-cartoon);
    font-size: 1rem;
    color: #aaa;
    max-width: 640px;
    margin: 1.2rem auto 2rem;
    line-height: 1.6
}

.page-breadcrumb {
    font-family: var(--font-body);
    font-size: .82rem;
    color: #777;
    max-width: 1200px;
    margin: 6.5rem auto 0;
    padding: 0 1.5rem
}

.page-breadcrumb a {
    color: #777;
    text-decoration: none
}

.page-breadcrumb a:hover {
    color: var(--color-green)
}

.form-card {
    background: #111;
    border: 2px solid #232323;
    border-radius: 16px;
    padding: 1.8rem;
    max-width: 760px;
    margin: 0 auto
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: .75rem .9rem;
    color: #fff;
    font-family: var(--font-body);
    margin-bottom: 1rem
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: 0;
    border-color: var(--color-green)
}

.form-card textarea {
    min-height: 130px;
    resize: vertical
}

.form-card label.form-label {
    display: block;
    font-family: var(--font-cartoon);
    color: #fff;
    font-size: .82rem;
    margin-bottom: .5rem
}

.form-radio-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap
}

.form-radio-option {
    flex: 1;
    min-width: 180px;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    padding: .9rem 1rem;
    cursor: pointer;
    transition: .2s;
    font-family: var(--font-cartoon);
    font-size: .85rem;
    color: #ccc
}

.form-radio-option:hover {
    border-color: #444
}

.form-radio-option input {
    width: auto;
    margin: 0 .5rem 0 0;
    display: inline-block
}

.form-radio-option.active {
    border-color: var(--color-green);
    color: #fff;
    background: rgba(23, 237, 2, .08)
}

@media (max-width:640px) {
    .form-grid-2 {
        grid-template-columns: 1fr
    }
}

.category-card {
    background: #111;
    border: 2px solid #232323;
    border-radius: 16px;
    padding: 1.7rem 1.2rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: .2s
}

.category-card:hover {
    border-color: var(--color-green);
    transform: translateY(-4px)
}

.category-card .cat-icon {
    font-size: 2rem;
    margin-bottom: .7rem
}

.category-card .cat-name {
    font-family: var(--font-cartoon);
    color: #fff;
    font-size: .98rem
}

.contact-routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem
}

.contact-route-card {
    background: #111;
    border: 2px solid #232323;
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center
}

.contact-route-card h3 {
    font-family: var(--font-cartoon);
    color: var(--color-green);
    font-size: 1.05rem;
    margin-bottom: .6rem
}

.contact-route-card p {
    font-family: var(--font-body);
    color: #aaa;
    font-size: .92rem;
    line-height: 1.5
}

.contact-route-card a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline
}

@media (max-width:640px) {
    .contact-routes {
        grid-template-columns: 1fr
    }
}

.info-notes {
    max-width: 760px;
    margin: 0 auto;
    background: #111;
    border: 2px solid #232323;
    border-radius: 16px;
    padding: 1.6rem 1.8rem
}

.info-notes li {
    margin-bottom: .6rem;
    font-family: var(--font-body);
    color: #ccc;
    font-size: .95rem
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    font-family: var(--font-body);
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    padding: 2rem 1.5rem 5rem
}

.legal-content h2 {
    font-family: var(--font-cartoon);
    color: #fff;
    font-size: 1.3rem;
    margin: 2rem 0 1rem
}

.legal-content p {
    margin-bottom: 1.2rem
}

.legal-content ul {
    margin: 0 0 1.2rem 1.4rem
}

.legal-content li {
    margin-bottom: .5rem
}

.legal-updated {
    color: #777;
    font-size: .85rem;
    margin-bottom: 2rem
}

.footer-social-text {
    font-family: var(--font-cartoon);
    font-size: .62rem;
    letter-spacing: .02em
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
    background: #111;
    border: 2px solid var(--color-green);
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: var(--shadow-card);
    max-width: 900px;
    margin: 0 auto
}

.cookie-banner p {
    flex: 1;
    min-width: 220px;
    font-family: var(--font-body);
    font-size: .85rem;
    color: #ccc;
    margin: 0
}

.cookie-banner a {
    color: var(--color-green)
}

.redirect-screen {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem
}

.redirect-spinner {
    width: 46px;
    height: 46px;
    border: 4px solid #262626;
    border-top-color: var(--color-green);
    border-radius: 50%;
    margin: 1.5rem auto;
    animation: spin3d .9s linear infinite
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 58px;
    height: 58px;
    background: #25d366;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 4px 4px 0 #000;
    animation: pulse-green 2.5s ease-in-out infinite;
    transition: transform .15s
}

.whatsapp-float:hover {
    transform: translate(-2px, -2px);
    animation: none
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 4px 4px 0 #000, 0 0 0 0 rgba(37, 211, 102, .6)
    }

    50% {
        box-shadow: 4px 4px 0 #000, 0 0 0 10px rgba(37, 211, 102, 0)
    }
}

@media (max-width:640px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
        bottom: 1.1rem;
        right: 1.1rem
    }

    .sticky-join {
        bottom: 1.1rem;
        left: 1.1rem
    }
}

@media (max-width:420px) {
    .sticky-join {
        transform: scale(.92);
        transform-origin: bottom left
    }
}



.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.scroll-top-btn:hover {
    transform: translate(-2px, -2px)
}


.scroll-top-btn {
    position: fixed;
    bottom: 6.6rem;
    right: 1.5rem;
    z-index: 899;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 4px 4px 0 #000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease,transform .25s ease,visibility .25s
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.scroll-top-btn:hover {
    transform: translate(-2px,-2px)
}



@media (max-width:640px) {
    .scroll-top-btn {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
        bottom: 5.7rem;
        right: 1.1rem
    }
}

.footer-social-pending,
.platform-pill-pending {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(60%);
    pointer-events: none
}

.footer-social-pending:hover,
.platform-pill-pending:hover {
    transform: none !important
}

@media (max-width:1100px) {
    .navbar-cta-secondary {
        display: none
    }
}

.short-thumb-lg,
.video-thumb {
    display: block
}

:root {
    --radius-card: 22px;
    --radius-card-lg: 30px
}

.btn-cart,
.btn-collab,
.btn-hero-ghost,
.btn-hero-main,
.btn-primary,
.btn-secondary,
.btn-subscribe,
.join-form button,
.join-input,
.navbar-cta-secondary {
    border-radius: 999px !important
}

.audience-card,
.blog-card,
.category-card,
.collab-card,
.contact-route-card,
.contact-routes .contact-route-card,
.form-card,
.impact-pillar,
.product-card,
.short-card-lg,
.video-card {
    border-radius: var(--radius-card) !important;
    overflow: hidden
}

.blog-thumb,
.product-img,
.short-thumb-lg,
.video-thumb {
    overflow: hidden
}

.blog-category,
.short-badge,
.video-badge {
    border-radius: 999px !important;
    border: 2px solid #000 !important
}

.eyebrow-pill {
    border-radius: 999px 999px 999px 4px !important
}

.hero-deco-frame,
.hero-mobile-photo {
    border-radius: 46px 14px 46px 14px !important
}

.hero-dot,
.photos-dot,
.shorts-dot {
    border-radius: 50% !important
}

.audience-card,
.collab-card,
.impact-pillar {
    border-radius: var(--radius-card-lg) !important
}

.about-badge,
.about-image-wrap>div {
    border-radius: 40px 14px 40px 14px !important
}

.contact-route-card,
.form-card,
.form-card input,
.form-card select,
.form-card textarea {
    border-radius: 16px !important
}

:root {
    --hard: 2px;
    --shadow-hard-sm: 4px 4px 0 #000;
    --shadow-hard-md: 6px 6px 0 #000;
    --shadow-hard-lg: 9px 9px 0 #000
}

.btn-cart,
.btn-collab,
.btn-hero-ghost,
.btn-hero-main,
.btn-primary,
.btn-secondary,
.btn-subscribe,
.navbar-cta-secondary {
    border: var(--hard) solid #000 !important;
    box-shadow: var(--shadow-hard-md) !important;
    transition: transform .12s ease, box-shadow .12s ease !important
}

.btn-cart:hover,
.btn-collab:hover,
.btn-hero-ghost:hover,
.btn-hero-main:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-subscribe:hover,
.navbar-cta-secondary:hover {
    transform: translate(3px, 3px) !important;
    box-shadow: 2px 2px 0 #000 !important
}

.btn-cart:active,
.btn-hero-ghost:active,
.btn-hero-main:active,
.btn-primary:active,
.btn-secondary:active,
.btn-subscribe:active {
    transform: translate(4px, 4px) !important;
    box-shadow: 0 0 0 #000 !important
}

.win-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 26px;
    padding: 0 10px;
    background: var(--color-green);
    border-bottom: var(--hard) solid #000
}

.win-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    opacity: .85;
    display: inline-block
}

.short-card-lg .win-bar {
    background: #b2eb1f
}

.video-card:nth-child(3n+2) .win-bar {
    background: #b2eb1f
}

.video-card:nth-child(3n+3) .win-bar {
    background: #fff
}

.product-card:nth-child(2n) .win-bar {
    background: #b2eb1f
}

.audience-card,
.blog-card,
.category-card,
.collab-card,
.contact-route-card,
.product-card,
.short-card-lg,
.video-card {
    border: var(--hard) solid #000 !important;
    box-shadow: var(--shadow-hard-sm) !important;
    transition: transform .18s ease, box-shadow .18s ease !important;
    background: #0d0d0d
}

.blog-card:hover,
.category-card:hover,
.collab-card:hover,
.product-card:hover,
.short-card-lg:hover,
.video-card:hover {
    transform: translate(-3px, -3px) !important;
    box-shadow: var(--shadow-hard-md) !important
}

.product-card:nth-child(3n+2),
.video-card:nth-child(3n+2) {
    transform: rotate(-.6deg)
}

.product-card:nth-child(3n+1),
.video-card:nth-child(3n+3) {
    transform: rotate(.6deg)
}

.product-card:nth-child(3n+2):hover,
.video-card:nth-child(3n+2):hover {
    transform: rotate(-.6deg) translate(-3px, -3px) !important
}

.product-card:nth-child(3n+1):hover,
.video-card:nth-child(3n+3):hover {
    transform: rotate(.6deg) translate(-3px, -3px) !important
}

.short-badge,
.video-badge {
    box-shadow: 2px 2px 0 #000 !important;
    transform: rotate(-4deg);
    font-weight: 800
}

.blog-category {
    box-shadow: 2px 2px 0 #000 !important
}

.eyebrow-pill {
    box-shadow: 3px 3px 0 #000 !important;
    border: 2px solid #000
}

.hero-deco-stickers {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none
}

.deco-star {
    position: absolute;
    width: 46px;
    height: 46px;
    filter: drop-shadow(3px 3px 0 #000);
    animation: deco-spin 9s linear infinite
}

.deco-star-1 {
    top: 8%;
    right: 6%
}

.deco-star-2 {
    bottom: 14%;
    right: 16%;
    width: 30px;
    height: 30px;
    animation-duration: 7s;
    animation-direction: reverse
}

.deco-squiggle {
    position: absolute;
    width: 130px;
    top: 42%;
    left: 3%;
    opacity: .85
}

.deco-arrow {
    position: absolute;
    width: 54px;
    bottom: 10%;
    left: 8%;
    opacity: .8
}

.deco-dotgrid {
    position: absolute;
    width: 140px;
    height: 100px;
    top: 14%;
    left: 4%;
    background-image: radial-gradient(rgba(255, 255, 255, .5) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: .5
}

@keyframes deco-spin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@media (max-width:900px) {

    .deco-arrow,
    .deco-dotgrid,
    .deco-squiggle,
    .deco-star {
        display: none
    }
}

.hero-deco-frame,
.hero-mobile-photo {
    border: var(--hard) solid #000 !important;
    box-shadow: var(--shadow-hard-lg) !important
}

.navbar {
    border-bottom: var(--hard) solid #000 !important
}

.navbar-logo img {
    filter: drop-shadow(3px 3px 0 var(--color-green))
}

.form-card input,
.form-card select,
.form-card textarea,
.join-input {
    border: var(--hard) solid #000 !important;
    box-shadow: 3px 3px 0 #000 !important
}

.form-card input:focus,
.form-card textarea:focus,
.join-input:focus {
    box-shadow: 4px 4px 0 var(--color-green) !important;
    transform: translate(-1px, -1px)
}

.stats-bar {
    border-bottom: var(--hard) solid #000 !important
}

.ticker-band {
    border-top: var(--hard) solid #000;
    border-bottom: var(--hard) solid #000
}

body {
    background-image: radial-gradient(rgba(23, 237, 2, .06) 1.5px, transparent 1.5px);
    background-size: 22px 22px
}