:root{
    --red:#ff1717;
    --red-dark:#610000;
    --yellow:#ffde68;
    --black:#070303;
    --white:#ffffff;
    --muted:rgba(255,255,255,.72);
}

@font-face {
    font-family:'Mighty Souly';
    src:url('../fonts/MightySouly.woff2') format('woff2'),
        url('../fonts/MightySouly.woff') format('woff');
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

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

html,
body{
    width:100%;
    min-height:100%;
}

body{
    overflow-x:hidden;
    background:#070303;
    color:#fff;
    font-family:"halcom", sans-serif;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    border:0;
    background:none;
    color:inherit;
}

.site-bg{
    position:fixed;
    inset:0;
    z-index:-5;
    background:
        radial-gradient(circle at 50% 15%, rgba(255,0,0,.35), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(255,59,59,.18), transparent 24%),
        radial-gradient(circle at 15% 70%, rgba(255,0,0,.18), transparent 35%),
        linear-gradient(135deg, #120404 0%, #050202 50%, #190000 100%);
}

.site-bg:after{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}

.red-light{
    position:fixed;
    width:40rem;
    height:40rem;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,0,0,.38), rgba(255,0,0,.12), transparent 70%);
    filter:blur(70px);
    z-index:-4;
    pointer-events:none;
    animation:floatLight 8s ease-in-out infinite;
}

.red-light-one{
    top:-10rem;
    left:-8rem;
}

.red-light-two{
    right:-10rem;
    bottom:5rem;
    animation-delay:2s;
}

@keyframes floatLight{
    0%,100%{
        transform:translate3d(0,0,0) scale(1);
    }

    50%{
        transform:translate3d(2rem,-1rem,0) scale(1.12);
    }
}

.text-mighty,
.brand-name,
.hero-title,
.hero-subtitle,
.section-title,
.footer-title{
    font-family:"hwt-artz", "Mighty Souly", system-ui, sans-serif;
    font-weight:700;
}

.site-header{
    position:relative;
    z-index:5;
}

.brand-logo{
    width:4.5rem;
    height:auto;
    filter:drop-shadow(0 0 18px rgba(255,0,0,.8));
}

.brand-name{
    font-size:2rem;
    letter-spacing:.04em;
    color:#fff;
    text-shadow:0 0 18px rgba(255,0,0,.9);
}

.nav-links{
    color:rgba(255,255,255,.75);
    font-size:1rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.nav-links a:hover{
    color:#fff;
    text-shadow:0 0 18px var(--red);
}

.cartoon-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:3.25rem;
    padding:.9rem 1.7rem;
    border-radius:999px;
    border:3px solid #fff;
    background:var(--red);
    color:#fff;
    font-family:"hwt-artz", "Mighty Souly", sans-serif;
    font-size:1.2rem;
    font-weight:900;
    text-transform:uppercase;
    line-height:1;
    box-shadow:
        0 5px 0 #7a0000,
        0 0 24px rgba(255,0,0,.75);
    transition:.2s ease;
}

.cartoon-btn:hover{
    color:#fff;
    transform:translateY(-4px) scale(1.03);
    box-shadow:
        0 8px 0 #7a0000,
        0 0 40px rgba(255,0,0,1);
}

.cartoon-btn:active{
    transform:translateY(1px);
    box-shadow:
        0 2px 0 #7a0000,
        0 0 18px rgba(255,0,0,.7);
}

.cartoon-btn-dark{
    background:#111;
    box-shadow:
        0 5px 0 #000,
        0 0 24px rgba(255,0,0,.5);
}

.hero-section{
    min-height:calc(100vh - 110px);
    display:flex;
    align-items:center;
}

.badge-pill{
    display:inline-flex;
    padding:.65rem 1rem;
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    background:rgba(255,255,255,.06);
    color:rgba(255,255,255,.82);
    backdrop-filter:blur(16px);
    box-shadow:0 0 25px rgba(255,0,0,.18);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:.78rem;
}

.hero-title{
    font-size:clamp(4rem, 11vw, 10rem);
    line-height:.82;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:.02em;
}

.hero-subtitle{
    margin-top:1.5rem;
    font-size:clamp(2rem, 5vw, 4.5rem);
    line-height:.92;
    color:#ffb3b3;
    text-shadow:0 0 25px rgba(255,0,0,.8);
}

.hero-copy{
    max-width:38rem;
    margin-top:1.5rem;
    color:var(--muted);
    font-size:1.15rem;
    line-height:1.75;
}

.neon-title{
    text-shadow:
        0 0 8px #fff,
        0 0 18px var(--red),
        0 0 38px var(--red),
        0 0 78px var(--red);
    animation:pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow{
    0%,100%{
        text-shadow:
            0 0 8px #fff,
            0 0 18px var(--red),
            0 0 38px var(--red);
    }

    50%{
        text-shadow:
            0 0 14px #fff,
            0 0 30px var(--red),
            0 0 70px var(--red),
            0 0 120px var(--red);
    }
}

.hero-card{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:34rem;
    border-radius:3rem;
}

.hero-card > img{
	border-radius:3rem;
}

.hero-card:before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 50% 50%, rgba(255,0,0,.25), transparent 55%);
}

.hero-glow{
    position:absolute;
    width:70%;
    height:70%;
    border-radius:50%;
    background:rgba(255,0,0,.45);
    filter:blur(80px);
    animation:heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow{
    0%,100%{
        opacity:.7;
        transform:scale(.95);
    }

    50%{
        opacity:1;
        transform:scale(1.12);
    }
}

.hero-image{
    position:relative;
    z-index:2;
    max-height:34rem;
    object-fit:contain;
    filter:
        drop-shadow(0 0 20px rgba(255,0,0,.6))
        drop-shadow(0 20px 35px rgba(0,0,0,.8));
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-1rem);
    }
}

.ticker-section{
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.12);
    background:rgba(255,0,0,.1);
    box-shadow:0 0 40px rgba(255,0,0,.18);
}

.ticker{
    display:flex;
    gap:3rem;
    width:max-content;
    padding:1.2rem 0;
    color:#fff;
    font-family:"hwt-artz", "Mighty Souly", sans-serif;
    font-size:2rem;
    text-transform:uppercase;
    white-space:nowrap;
    animation:tickerMove 18s linear infinite;
    text-shadow:0 0 18px var(--red);
}

@keyframes tickerMove{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

.contract-box{
    max-width:900px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    padding:1.25rem;
    border-radius:1.5rem;
    border:2px solid rgba(255,0,0,.7);
    background:rgba(10,4,4,.82);
    box-shadow:
        0 0 35px rgba(255,0,0,.35),
        inset 0 0 25px rgba(255,0,0,.08);
    backdrop-filter:blur(16px);
}

.contract-box small{
    display:block;
    margin-bottom:.25rem;
    color:rgba(255,255,255,.55);
    font-size:.75rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.contract-box strong{
    display:block;
    max-width:100%;
    color:#fff;
    font-size:1.1rem;
    word-break:break-all;
    text-shadow:0 0 16px rgba(255,0,0,.8);
}

.info-card{
    height:100%;
    padding:2rem;
    border-radius:1.5rem;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.06);
    box-shadow:0 0 35px rgba(255,0,0,.12);
    backdrop-filter:blur(18px);
    transition:.25s ease;
}

.info-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,0,0,.55);
    box-shadow:0 0 50px rgba(255,0,0,.28);
}

.info-card i{
    display:inline-flex;
    width:3.5rem;
    height:3.5rem;
    align-items:center;
    justify-content:center;
    margin-bottom:1.2rem;
    border-radius:1rem;
    background:var(--red);
    color:#fff;
    font-size:1.6rem;
    box-shadow:0 0 25px rgba(255,0,0,.8);
}

.info-card h3{
    margin-bottom:.75rem;
    font-size:1.6rem;
    font-weight:900;
}

.info-card p{
    color:var(--muted);
    line-height:1.7;
}

.section-title{
    font-size:clamp(3rem, 7vw, 6rem);
    text-transform:uppercase;
}

.glow-image{
    box-shadow:
        0 0 0 1px rgba(255,255,255,.12),
        0 0 60px rgba(255,0,0,.32);
}

.music-player{
    max-width:760px;
    border-radius:1.5rem;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.08);
    box-shadow:0 0 45px rgba(255,0,0,.25);
    backdrop-filter:blur(18px);
    overflow:hidden;
}

.player-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:4rem;
    height:4rem;
    min-width:4rem;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    background:#111;
    color:#fff;
    font-size:1.6rem;
    box-shadow:0 0 24px rgba(255,0,0,.35);
    transition:.2s ease;
}

.player-btn > i{
   position: relative;
	top:0.21rem;
}


.player-btn:hover{
    background:var(--red);
    box-shadow:0 0 35px rgba(255,0,0,.8);
}

.track-title{
    font-size:1.4rem;
    font-weight:900;
}

.track-artist{
    color:rgba(255,255,255,.65);
}

.tracklist{
    display:none;
    padding:1rem;
    border-top:1px solid rgba(255,255,255,.12);
}

.track-item{
    display:flex;
    justify-content:space-between;
    gap:1rem;
    padding:1rem;
    border-radius:1rem;
    cursor:pointer;
    color:rgba(255,255,255,.75);
}

.track-item:hover,
.track-item.active{
    background:rgba(255,0,0,.18);
    color:#fff;
}

.site-footer{
    padding:4rem 0;
    background:#030101;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-title{
    margin-bottom:1rem;
    font-size:3rem;
    color:#fff;
    text-shadow:0 0 25px var(--red);
}

.site-footer p{
    max-width:900px;
    margin:0 auto;
    color:rgba(255,255,255,.55);
    line-height:1.8;
}

.welcome-overlay{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1rem;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(30px);
}

.welcome-box{
    width:min(100%, 640px);
    padding:2.5rem;
    border-radius:2rem;
    border:1px solid rgba(255,255,255,.16);
    background:
        radial-gradient(circle at 50% 0%, rgba(255,0,0,.26), transparent 42%),
        rgba(18,5,5,.94);
    box-shadow:
        0 0 70px rgba(255,0,0,.45),
        inset 0 0 25px rgba(255,255,255,.04);
    text-align:center;
}

.welcome-box h2{
    margin-bottom:1rem;
    font-family:"hwt-artz", "Mighty Souly", sans-serif;
    font-size:clamp(2.5rem, 7vw, 5rem);
    text-transform:uppercase;
    text-shadow:0 0 25px var(--red);
}

.welcome-box p{
    margin-bottom:2rem;
    color:var(--muted);
    font-size:1.1rem;
    line-height:1.7;
}

.copy-toast{
    position:fixed;
    left:50%;
    bottom:2rem;
    z-index:10000;
    transform:translateX(-50%) translateY(2rem);
    opacity:0;
    padding:.85rem 1.2rem;
    border-radius:999px;
    background:var(--red);
    color:#fff;
    font-weight:900;
    box-shadow:0 0 30px rgba(255,0,0,.8);
    transition:.25s ease;
}

.copy-toast.show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}


.tiktok-card{
    width:100%;
    height:100%;
    padding:1rem;
    border-radius:1.5rem;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.06);
    color:#fff;
    text-align:left;
    box-shadow:0 0 35px rgba(255,0,0,.18);
    backdrop-filter:blur(18px);
    transition:.25s ease;
}

.tiktok-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,0,0,.7);
    box-shadow:0 0 55px rgba(255,0,0,.4);
}

.tiktok-thumbnail{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:1rem;
}

.play-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.35);
}

.play-overlay i{
    font-size:5rem;
    color:#fff;
    text-shadow:
        0 0 20px red,
        0 0 40px red;
}

.tiktok-card h3{
    margin-top:1rem;
    font-size:1.5rem;
    font-weight:900;
}

#tiktokLightbox{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:1rem;
    background:rgba(0,0,0,.9);
    backdrop-filter:blur(15px);
}

#tiktokLightbox.active{
    display:flex;
}

.tiktok-player{
    width:100%;
    max-width:420px;
    height:80vh;
    border-radius:1rem;
    overflow:hidden;
    background:#000;
    border:2px solid rgba(255,0,0,.75);
    box-shadow:0 0 50px rgba(255,0,0,.6);
}

.tiktok-player iframe{
    width:100%;
    height:100%;
    border:0;
}

#closeTikTok{
    position:absolute;
    top:20px;
    right:20px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    font-size:1.2rem;
    box-shadow:0 0 30px rgba(255,0,0,.85);
}
@media screen and (max-width:991px){
    .hero-section{
        min-height:auto;
    }

    .hero-copy{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-card{
        min-height:26rem;
    }

    .hero-image{
        max-height:26rem;
    }

    .contract-box{
        flex-direction:column;
        text-align:center;
    }
}

@media screen and (max-width:576px){
    .brand{
        flex-direction:column;
        text-align:center;
    }

    .brand-name{
        font-size:1.6rem;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .cartoon-btn{
        width:100%;
    }

    .hero-card{
        min-height:22rem;
        border-radius:2rem;
    }

    .ticker{
        font-size:1.5rem;
    }

    .player-btn{
        width:3.4rem;
        height:3.4rem;
        min-width:3.4rem;
    }
}