/* ═══════════════════════════════════════════════════════
   HOOKTRANSITION — COMPONENT STYLES
   Works standalone AND inside Elementor widgets
═══════════════════════════════════════════════════════ */

/* ── NAV ── */
.ht-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 62px; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(7,7,10,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--ht-border);
    transition: background .3s;
}
.ht-logo {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.5rem; letter-spacing: 2px;
    background: linear-gradient(110deg, #ff2d55, #ff6b35, #f5c842);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.ht-nav-links { display: flex; gap: .25rem; align-items: center }
.ht-nav-links a,
.ht-nav-links .ht-menu li a {
    color: var(--ht-text2) !important;
    padding: .4rem .85rem; border-radius: var(--ht-r3);
    font-size: .87rem; font-weight: 500; transition: all .2s;
    cursor: pointer; text-decoration: none; display: inline-block;
    -webkit-text-fill-color: var(--ht-text2) !important;
}
.ht-nav-links a:hover,
.ht-nav-links .ht-menu li a:hover {
    color: var(--ht-text) !important; background: var(--ht-glass2);
    -webkit-text-fill-color: var(--ht-text) !important;
}
.ht-menu { list-style: none; display: flex; gap: .25rem; padding: 0; margin: 0 }
.ht-nav-right { display: flex; gap: .6rem; align-items: center }
.ht-btn-ghost {
    background: none; border: 1px solid var(--ht-border2);
    color: var(--ht-text2); padding: .38rem .95rem; border-radius: var(--ht-r3);
    font-size: .84rem; cursor: pointer; font-family: inherit;
    transition: all .2s; text-decoration: none; display: inline-block;
}
.ht-btn-ghost:hover { border-color: var(--ht-red); color: var(--ht-red) }
.ht-btn-primary {
    background: linear-gradient(110deg, var(--ht-red), var(--ht-red2));
    border: none; color: #fff !important; padding: .42rem 1.2rem;
    border-radius: var(--ht-r3); font-size: .84rem; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: all .2s;
    text-decoration: none; display: inline-block;
}
.ht-btn-primary:hover { opacity: .88; transform: translateY(-1px) }

/* ── HERO ── */
.ht-hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 7rem 1.5rem 4rem;
    position: relative; overflow: hidden;
}
.ht-hero-bg { position: absolute; inset: 0; z-index: 0 }
.ht-hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: .18; z-index: 0;
}
.ht-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        rgba(7,7,10,.65) 0%,
        rgba(7,7,10,.25) 50%,
        rgba(7,7,10,.97) 100%);
}
.ht-noise {
    position: absolute; inset: 0; z-index: 1; opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ht-grid-bg {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 52px 52px;
}
.ht-orb { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 1 }
.ht-orb1 { width:500px;height:500px;background:radial-gradient(#ff2d55,transparent);top:-150px;left:-120px;opacity:.3;animation:htOrb1 10s ease-in-out infinite }
.ht-orb2 { width:400px;height:400px;background:radial-gradient(#ff6b35,transparent);bottom:-100px;right:-100px;opacity:.28;animation:htOrb2 13s ease-in-out infinite }
.ht-orb3 { width:280px;height:280px;background:radial-gradient(#f5c842,transparent);top:40%;left:60%;opacity:.18;animation:htOrb3 8s ease-in-out infinite }
@keyframes htOrb1{0%,100%{transform:translate(0,0)}50%{transform:translate(50px,40px)}}
@keyframes htOrb2{0%,100%{transform:translate(0,0)}50%{transform:translate(-40px,-30px)}}
@keyframes htOrb3{0%,100%{transform:translate(0,0)}50%{transform:translate(30px,20px)}}

.ht-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto }
.ht-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,45,85,.12); border: 1px solid rgba(255,45,85,.3);
    color: #ff7a9a; padding: .3rem .95rem; border-radius: var(--ht-r3);
    font-size: .78rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: 1.5rem;
}
.ht-badge-dot {
    width: 6px; height: 6px; background: var(--ht-red); border-radius: 50%;
    display: inline-block; animation: htBdot 1.4s ease-in-out infinite;
}
@keyframes htBdot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.3;transform:scale(1.5)}}

.ht-hero h1 {
    font-size: clamp(3.5rem, 9vw, 8rem) !important;
    font-weight: 400 !important;
    line-height: .95 !important;
    margin-bottom: 1.4rem !important;
    letter-spacing: 2px !important;
    color: var(--ht-text) !important;
}
.ht-grad {
    background: linear-gradient(110deg, #ff2d55, #ff6b35, #f5c842);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: block;
}
.ht-grad-text {
    background: linear-gradient(110deg, #ff2d55, #f5c842);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ht-hero-sub {
    font-size: 1.1rem; color: var(--ht-text2); max-width: 560px;
    margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 300;
}
.ht-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem }
.ht-cta {
    padding: .9rem 2.5rem; border-radius: var(--ht-r3);
    font-size: 1rem; font-weight: 700; font-family: 'Outfit', sans-serif;
    cursor: pointer; border: none; transition: all .25s; letter-spacing: .5px;
}
.ht-cta-main {
    background: linear-gradient(110deg, #ff2d55, #ff6b35);
    color: #fff; box-shadow: 0 0 40px rgba(255,45,85,.35);
}
.ht-cta-main:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(255,45,85,.55) }
.ht-cta-ghost {
    background: var(--ht-glass2); color: var(--ht-text);
    border: 1px solid var(--ht-border2);
}
.ht-cta-ghost:hover { background: var(--ht-glass); border-color: var(--ht-red); transform: translateY(-2px) }
.ht-hero-stats { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap }
.ht-stat-num {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 2.2rem;
    background: linear-gradient(110deg, #ff2d55, #f5c842);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ht-stat-label { font-size: .75rem; color: var(--ht-text2); text-transform: uppercase; letter-spacing: .1em }

/* ── SEARCH ── */
.ht-search-wrap { padding: 0 1.5rem 2.5rem; position: relative; z-index: 10 }
.ht-search-inner { max-width: 720px; margin: 0 auto }
.ht-search-bar {
    display: flex; align-items: center; gap: .75rem;
    background: var(--ht-bg3); border: 1px solid var(--ht-border2);
    border-radius: 14px; padding: .65rem .85rem; transition: all .3s;
}
.ht-search-bar:focus-within {
    border-color: rgba(255,45,85,.5);
    box-shadow: 0 0 0 3px rgba(255,45,85,.08);
}
.ht-search-bar input {
    background: none; border: none; outline: none;
    color: var(--ht-text); font-size: 1rem; font-family: inherit; flex: 1;
}
.ht-search-bar input::placeholder { color: var(--ht-text2) }
.ht-search-icon { color: var(--ht-text2); font-size: 1.1rem }
.ht-tags { display: flex; gap: .5rem; margin-top: .7rem; flex-wrap: wrap }
.ht-tag {
    background: var(--ht-glass); border: 1px solid var(--ht-border);
    color: var(--ht-text2); padding: .28rem .8rem; border-radius: var(--ht-r3);
    font-size: .78rem; cursor: pointer; transition: all .2s;
}
.ht-tag:hover { border-color: var(--ht-red); color: var(--ht-red); background: rgba(255,45,85,.07) }

/* ── PLATFORM STRIP ── */
.ht-plat-strip {
    background: var(--ht-bg2);
    border-top: 1px solid var(--ht-border);
    border-bottom: 1px solid var(--ht-border);
    padding: 1.2rem 1.5rem;
}
.ht-plat-row { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; align-items: center }
.ht-plat-badge {
    display: flex; align-items: center; gap: .55rem;
    padding: .75rem 1.3rem; border-radius: var(--ht-r2);
    background: var(--ht-glass); border: 1px solid var(--ht-border);
    cursor: pointer; transition: all .22s;
}
.ht-plat-badge:hover { border-color: var(--ht-border2); background: var(--ht-glass2); transform: translateY(-2px) }
.ht-plat-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem }
.ht-plat-name { font-size: .88rem; font-weight: 600; color: var(--ht-text) }
.ht-plat-count { font-size: .74rem; color: var(--ht-text2) }

/* ── SECTION ── */
.ht-section { padding: 4.5rem 1.5rem }
.ht-container { max-width: 1280px; margin: 0 auto }
.ht-section-eyebrow {
    font-family: 'Outfit', sans-serif !important;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--ht-red); margin-bottom: .4rem;
}
.ht-section-title { font-size: clamp(2rem, 4vw, 3.2rem) !important; margin-bottom: 1.75rem !important }
.ht-sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem }
.ht-see-all { color: var(--ht-text2); font-size: .88rem; cursor: pointer; transition: color .2s; display: flex; align-items: center; gap: .3rem }
.ht-see-all:hover { color: var(--ht-red) }

/* ── FILTER BAR ── */
.ht-filter-bar { display: flex; gap: .45rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.75rem }
.ht-filter-btn {
    background: var(--ht-glass); border: 1px solid var(--ht-border);
    color: var(--ht-text2); padding: .38rem .9rem; border-radius: var(--ht-r3);
    font-size: .8rem; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: all .2s;
}
.ht-filter-btn:hover, .ht-filter-btn.active {
    background: rgba(255,45,85,.1);
    border-color: rgba(255,45,85,.4);
    color: var(--ht-red);
}

/* ═══════════════════════════════════════════════════
   VIDEO GRID
═══════════════════════════════════════════════════ */
.ht-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.1rem;
}
.ht-video-card {
    border-radius: var(--ht-r2); overflow: hidden;
    background: var(--ht-bg3); border: 1px solid var(--ht-border);
    transition: all .3s; position: relative; cursor: pointer;
}
.ht-video-card:hover {
    border-color: rgba(255,45,85,.3);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,45,85,.15);
}

/* 9:16 video thumbnail */
.ht-vthumb { aspect-ratio: 9 / 16; position: relative; overflow: hidden; background: var(--ht-bg4) }
.ht-vthumb video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none }

/* Hover overlay */
.ht-vthumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,.5) 0%,
        transparent 30%,
        transparent 55%,
        rgba(0,0,0,.85) 100%);
    opacity: 0; transition: opacity .25s;
    display: flex; flex-direction: column;
    justify-content: space-between; padding: .7rem;
}
.ht-video-card:hover .ht-vthumb-overlay { opacity: 1 }

/* Badges */
.ht-card-badges { display: flex; gap: .35rem; flex-wrap: wrap }
.ht-cbadge {
    padding: .22rem .6rem; border-radius: var(--ht-r3);
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .04em; backdrop-filter: blur(6px);
}
.ht-cbadge-cat { background: rgba(0,0,0,.55); color: #fff }
.ht-cbadge-hot { background: rgba(255,45,85,.25); color: #ff6b8a; border: 1px solid rgba(255,45,85,.3) }
.ht-cbadge-new { background: rgba(31,255,168,.2); color: var(--ht-green); border: 1px solid rgba(31,255,168,.3) }

/* Play button */
.ht-play-big {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(.85);
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(255,45,85,.92); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all .25s;
    border: 2px solid rgba(255,255,255,.4); z-index: 3;
}
.ht-video-card:hover .ht-play-big { opacity: 1; transform: translate(-50%,-50%) scale(1) }
.ht-play-big svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px }

.ht-card-bottom { display: flex; justify-content: flex-end; gap: .4rem; align-items: flex-end }
.ht-ov-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s; color: #fff;
    font-size: .85rem; text-decoration: none;
}
.ht-ov-btn:hover { background: var(--ht-red); border-color: var(--ht-red) }

/* Card info */
.ht-card-info { padding: .8rem }
.ht-card-title { font-size: .9rem; font-weight: 700; margin-bottom: .35rem; color: var(--ht-text); line-height: 1.2 }
.ht-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: .75rem; color: var(--ht-text2); margin-bottom: .45rem }
.ht-card-actions { display: flex; gap: .45rem; flex-wrap: wrap }
.ht-dl-btn {
    flex: 1; padding: .48rem .75rem; border-radius: var(--ht-r3);
    font-size: .78rem; font-weight: 700; cursor: pointer; border: none;
    font-family: inherit; transition: all .2s;
    display: flex; align-items: center; justify-content: center; gap: .35rem;
    text-decoration: none;
}
.ht-dl-btn-main { background: linear-gradient(110deg, var(--ht-red), var(--ht-red2)); color: #fff !important }
.ht-dl-btn-main:hover { opacity: .88; transform: translateY(-1px) }
.ht-dl-btn-inspo { background: var(--ht-glass2); color: var(--ht-text2) !important; border: 1px solid var(--ht-border) }
.ht-dl-btn-inspo:hover { border-color: var(--ht-red); color: var(--ht-red) !important }

/* ── FEATURED ── */
.ht-featured-wrap {
    border-radius: var(--ht-r2); overflow: hidden;
    background: linear-gradient(135deg, #100510, #1c0820);
    border: 1px solid rgba(255,45,85,.2);
    display: flex; gap: 2.5rem; align-items: center;
    padding: 2rem 2.5rem; flex-wrap: wrap; position: relative;
}
.ht-featured-wrap::before {
    content: 'FEATURED';
    position: absolute; top: 1.2rem; right: 1.5rem;
    font-family: 'Bebas Neue', sans-serif; font-size: .9rem;
    letter-spacing: .18em; color: var(--ht-red); font-weight: 800;
}
.ht-feat-video-box {
    width: 160px; min-height: 285px; border-radius: var(--ht-r);
    overflow: hidden; flex-shrink: 0; background: var(--ht-bg4);
    border: 1px solid rgba(255,45,85,.25);
}
.ht-feat-video-box video { width:100%;height:100%;object-fit:cover }
.ht-feat-content { flex: 1; min-width: 220px }
.ht-feat-content h3 { font-size: 2.2rem !important; margin-bottom: .5rem !important; line-height: 1 !important; color: var(--ht-text) !important }
.ht-feat-content p { color: var(--ht-text2); font-size: .9rem; margin-bottom: 1.25rem; line-height: 1.6 }
.ht-feat-stats { display: flex; gap: 1.75rem; margin-bottom: 1.25rem }
.ht-feat-stat-n { font-family: 'Bebas Neue', sans-serif !important; font-size: 1.5rem; color: var(--ht-red) }
.ht-feat-stat-l { font-size: .72rem; color: var(--ht-text2); text-transform: uppercase; letter-spacing: .06em }
.ht-feat-actions { display: flex; gap: .65rem; flex-wrap: wrap }
.ht-feat-btn {
    padding: .58rem 1.4rem; border-radius: var(--ht-r3);
    font-size: .84rem; font-weight: 700; cursor: pointer;
    border: none; font-family: inherit; transition: all .2s;
    text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
}
.ht-feat-btn-dl { background: linear-gradient(110deg,var(--ht-red),var(--ht-red2)); color: #fff !important }
.ht-feat-btn-dl:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,45,85,.4) }
.ht-feat-btn-ghost { background: var(--ht-glass2); color: var(--ht-text) !important; border: 1px solid var(--ht-border2) }
.ht-feat-btn-ghost:hover { border-color: var(--ht-red); color: var(--ht-red) !important }

/* ── CATEGORIES ── */
.ht-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: .7rem }
.ht-cat-card {
    border-radius: var(--ht-r2); padding: 1.25rem 1rem;
    cursor: pointer; transition: all .25s;
    border: 1px solid var(--ht-border);
}
.ht-cat-card:hover { transform: translateY(-3px); border-color: rgba(255,45,85,.3) }
.ht-cat-emoji { font-size: 1.8rem; display: block; margin-bottom: .6rem }
.ht-cat-name { font-family: 'Bebas Neue', sans-serif !important; font-size: 1.1rem !important; margin-bottom: .2rem !important }
.ht-cat-count { font-size: .74rem; color: var(--ht-text2) }
.cc1{background:linear-gradient(135deg,rgba(255,45,85,.1),rgba(255,107,53,.05));border-color:rgba(255,45,85,.2)}
.cc2{background:linear-gradient(135deg,rgba(255,107,53,.1),rgba(245,200,66,.05));border-color:rgba(255,107,53,.2)}
.cc3{background:linear-gradient(135deg,rgba(31,255,168,.08),rgba(56,189,248,.05));border-color:rgba(31,255,168,.18)}
.cc4{background:linear-gradient(135deg,rgba(245,200,66,.08),rgba(255,45,85,.04));border-color:rgba(245,200,66,.18)}
.cc5{background:linear-gradient(135deg,rgba(56,189,248,.08),rgba(124,92,252,.05));border-color:rgba(56,189,248,.18)}
.cc6{background:linear-gradient(135deg,rgba(150,50,200,.1),rgba(255,45,85,.05));border-color:rgba(150,50,200,.2)}

/* ── HOW IT WORKS ── */
.ht-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem }
.ht-step {
    background: var(--ht-bg3); border: 1px solid var(--ht-border);
    border-radius: var(--ht-r2); padding: 1.75rem 1.4rem;
    position: relative; transition: all .25s;
}
.ht-step:hover { border-color: rgba(255,45,85,.25); transform: translateY(-3px) }
.ht-step-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
    color: rgba(255,45,85,.18); position: absolute; top: .8rem; right: 1rem; line-height: 1;
}
.ht-step-icon { font-size: 2rem; margin-bottom: .9rem }
.ht-step-title { font-family: 'Bebas Neue', sans-serif !important; font-size: 1.4rem !important; margin-bottom: .5rem !important }
.ht-step-desc { font-size: .87rem; color: var(--ht-text2); line-height: 1.6 }

/* ── NEWSLETTER ── */
.ht-nl {
    background: linear-gradient(135deg, rgba(255,45,85,.1), rgba(255,107,53,.06));
    border: 1px solid rgba(255,45,85,.2); border-radius: var(--ht-r2);
    padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.ht-nl::before {
    content:''; position: absolute; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,45,85,.12), transparent);
    border-radius: 50%; top: -120px; left: 50%; transform: translateX(-50%);
}
.ht-nl h2 { font-size: 2.2rem !important; margin-bottom: .6rem !important; position: relative }
.ht-nl p { color: var(--ht-text2); margin-bottom: 1.5rem; position: relative }
.ht-nl-form { display: flex; gap: .65rem; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; position: relative }
.ht-nl-input {
    flex: 1; min-width: 190px; background: rgba(255,255,255,.07);
    border: 1px solid var(--ht-border2); color: var(--ht-text);
    padding: .68rem 1.1rem; border-radius: var(--ht-r3); font-size: .9rem;
    outline: none; font-family: inherit;
}
.ht-nl-input:focus { border-color: rgba(255,45,85,.5) }
.ht-nl-btn {
    background: linear-gradient(110deg,var(--ht-red),var(--ht-red2));
    color: #fff; border: none; padding: .68rem 1.4rem; border-radius: var(--ht-r3);
    font-size: .9rem; font-weight: 700; cursor: pointer; font-family: inherit;
    transition: all .2s; white-space: nowrap;
}
.ht-nl-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,45,85,.4) }

/* ── TESTIMONIALS ── */
.ht-testi-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 1rem }
.ht-testi-card { background: var(--ht-bg3); border: 1px solid var(--ht-border); border-radius: var(--ht-r2); padding: 1.4rem }
.ht-testi-stars { color: var(--ht-gold); font-size: .95rem; margin-bottom: .65rem; letter-spacing: .08em }
.ht-testi-text { font-size: .88rem; color: var(--ht-text2); line-height: 1.65; margin-bottom: .9rem; font-style: italic }
.ht-testi-name { font-size: .86rem; font-weight: 700; color: var(--ht-text) }
.ht-testi-role { font-size: .73rem; color: var(--ht-text2) }
.ht-testi-author { display: flex; align-items: center; gap: .65rem }
.ht-testi-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; background: var(--ht-glass2) }

/* ── FOOTER ── */
.ht-footer { background: var(--ht-bg2); border-top: 1px solid var(--ht-border); padding: 3rem 1.5rem 2rem }
.ht-footer-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 2rem; margin-bottom: 2rem }
.ht-footer-logo {
    font-family: 'Bebas Neue', sans-serif !important; font-size: 1.3rem; letter-spacing: 2px;
    background: linear-gradient(110deg,#ff2d55,#ff6b35,#f5c842);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block; margin-bottom: .6rem; text-decoration: none;
}
.ht-footer-brand p { font-size: .8rem; color: var(--ht-text2); line-height: 1.6 }
.ht-footer-col h4 { font-family: 'Bebas Neue', sans-serif !important; font-size: 1rem !important; letter-spacing: .08em !important; margin-bottom: .75rem !important; color: var(--ht-text) !important }
.ht-footer-col a { display: block; color: var(--ht-text2) !important; font-size: .83rem; margin-bottom: .38rem; cursor: pointer; transition: color .2s; text-decoration: none; -webkit-text-fill-color: var(--ht-text2) !important }
.ht-footer-col a:hover { color: var(--ht-text) !important; -webkit-text-fill-color: var(--ht-text) !important }
.ht-footer-col ul { list-style: none; padding: 0; margin: 0 }
.ht-footer-col ul li a { display: block; color: var(--ht-text2) !important; font-size: .83rem; margin-bottom: .38rem; text-decoration: none }
.ht-footer-col ul li a:hover { color: var(--ht-text) !important }
.ht-footer-bottom { border-top: 1px solid var(--ht-border); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem }
.ht-footer-bottom p { font-size: .78rem; color: var(--ht-text2) }
.ht-socials { display: flex; gap: .6rem }
.ht-social { width: 32px; height: 32px; border-radius: 50%; background: var(--ht-glass); border: 1px solid var(--ht-border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .82rem; transition: all .2s }
.ht-social:hover { background: var(--ht-glass2); border-color: var(--ht-red) }

/* ── MODAL ── */
.ht-modal-bg {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(0,0,0,.94); backdrop-filter: blur(18px);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.ht-modal-bg.open { opacity: 1; pointer-events: all }
.ht-modal {
    background: var(--ht-bg3); border: 1px solid var(--ht-border2);
    border-radius: var(--ht-r2); width: 100%; max-width: 400px;
    overflow: hidden; transform: scale(.9) translateY(20px);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    position: relative;
}
.ht-modal-bg.open .ht-modal { transform: scale(1) translateY(0) }
.ht-modal-vid { aspect-ratio: 9/16; max-height: 480px; background: #000; overflow: hidden }
.ht-modal-vid video { width:100%;height:100%;object-fit:cover;display:block }
.ht-modal-close {
    position: absolute; top: .65rem; right: .65rem;
    background: rgba(0,0,0,.7); border: 1px solid var(--ht-border);
    color: var(--ht-text); width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: .9rem; z-index: 10; transition: all .2s;
}
.ht-modal-close:hover { background: var(--ht-red); border-color: var(--ht-red) }
.ht-modal-info { padding: 1.1rem }
.ht-modal-title { font-family: 'Bebas Neue', sans-serif !important; font-size: 1.4rem !important; margin-bottom: .3rem !important; color: var(--ht-text) !important }
.ht-modal-desc { font-size: .83rem; color: var(--ht-text2); margin-bottom: .9rem; line-height: 1.5 }
.ht-modal-actions { display: flex; gap: .5rem; flex-wrap: wrap }
.ht-m-btn {
    flex: 1; min-width: 110px; padding: .58rem; border-radius: var(--ht-r);
    font-size: .82rem; font-weight: 700; cursor: pointer; border: none;
    font-family: inherit; transition: all .2s;
    display: flex; align-items: center; justify-content: center; gap: .38rem;
    text-decoration: none;
}
.ht-m-dl { background: linear-gradient(110deg,var(--ht-red),var(--ht-red2)); color: #fff !important }
.ht-m-dl:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,45,85,.4) }
.ht-m-inspo { background: var(--ht-glass2); color: var(--ht-text2) !important; border: 1px solid var(--ht-border) }
.ht-m-inspo:hover { border-color: var(--ht-red); color: var(--ht-red) !important }

/* ── TOAST ── */
.ht-toast {
    position: fixed; bottom: 4.5rem; left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--ht-bg3); border: 1px solid var(--ht-border2);
    color: var(--ht-text); padding: .6rem 1.2rem; border-radius: var(--ht-r3);
    font-size: .84rem; font-weight: 600; z-index: 600;
    opacity: 0; transition: all .3s; box-shadow: 0 8px 32px rgba(0,0,0,.6);
    white-space: nowrap; pointer-events: none;
}
.ht-toast.show { opacity: 1; transform: translateX(-50%) translateY(0) }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }

/* ── ELEMENTOR OVERRIDES ── */
.elementor-section { position: relative }
.elementor-widget-html .ht-video-grid { margin-top: 1rem }
body.elementor-page .ht-nav { top: 0 }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ht-nav-links { display: none }
    .ht-video-grid { grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)) }
    .ht-featured-wrap { flex-direction: column }
    .ht-feat-video-box { width: 100%; min-height: 220px }
    .ht-hero h1 { font-size: 3rem !important }
}
@media (max-width: 480px) {
    .ht-hero h1 { font-size: 2.5rem !important }
    .ht-video-grid { grid-template-columns: 1fr 1fr }
    .ht-cta { padding: .75rem 1.5rem; font-size: .9rem }
}
