:root{
    --bg:#07070a;
    --card:#14141c;
    --card2:#1b1b25;
    --pink:#ff2f92;
    --pink2:#c21864;
    --text:#fff;
    --muted:#b8b8c2;
    --border:rgba(255,255,255,.09);
}

*{box-sizing:border-box}

html,body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:
        radial-gradient(circle at top right,rgba(255,47,146,.18),transparent 35%),
        linear-gradient(180deg,#07070a 0%,#0e0e14 45%,#07070a 100%);
    color:var(--text);
}

a{text-decoration:none}

.container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 16px;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:99;
    background:rgba(7,7,10,.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--border);
}

.header-inner{
    min-height:68px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    color:#fff;
    font-size:22px;
    font-weight:900;
}

.logo::first-letter{color:var(--pink)}

.nav{
    display:flex;
    gap:8px;
}

.nav a{
    color:#d4d4d8;
    font-size:14px;
    font-weight:700;
    padding:9px 12px;
    border-radius:999px;
}

.nav a:hover{
    background:rgba(255,47,146,.14);
    color:#fff;
}

/* BANNERS */

.top-banners{
    padding:16px 0 8px;
}

.banner-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.banner-item{
    display:block;
    width:100%;
    aspect-ratio:3 / 1;
    overflow:hidden;
    border-radius:12px;
    background:#111;
    border:1px solid var(--border);
    box-shadow:0 16px 45px rgba(0,0,0,.38);
}

.banner-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* HERO */

.hero{
    padding:42px 0 30px;
    text-align:center;
}

.hero .container{
    max-width:850px;
}

.hero-badge{
    display:inline-flex;
    background:linear-gradient(135deg,var(--pink),var(--pink2));
    color:#fff;
    padding:9px 15px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.hero h1{
    margin:18px auto 14px;
    max-width:760px;
    font-size:48px;
    line-height:1.05;
    letter-spacing:-1.6px;
}

.hero h1 span{color:var(--pink)}

.hero p{
    max-width:680px;
    margin:0 auto;
    color:var(--muted);
    font-size:17px;
    line-height:1.75;
}

/* CHANNELS */

.channels{
    padding:24px 0 58px;
}

.channel-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.channel-card{
    background:
        linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025)),
        var(--card);
    border:1px solid var(--border);
    border-radius:24px;
    padding:24px;
    box-shadow:0 24px 70px rgba(0,0,0,.42);
}

.channel-card::before{
    content:"PREMIUM";
    display:inline-flex;
    margin-bottom:18px;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(255,47,146,.12);
    color:#ff7fbb;
    border:1px solid rgba(255,47,146,.25);
    font-size:11px;
    font-weight:900;
}

.channel-card h2{
    margin:0 0 12px;
    font-size:23px;
    color:#fff;
}

.channel-card p{
    color:var(--muted);
    line-height:1.7;
    font-size:15px;
}

.btn{
    display:flex;
    width:100%;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--pink),var(--pink2));
    color:#fff;
    padding:15px 18px;
    border-radius:14px;
    font-weight:900;
    border:0;
}

/* BLOG */

.blog-section{
    padding:0 0 70px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:16px;
    margin-bottom:20px;
}

.section-title{
    color:#fff;
    font-size:30px;
    margin:0;
}

.section-link{
    color:#ff7fbb;
    font-weight:900;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.blog-card{
    background:var(--card2);
    border:1px solid var(--border);
    border-radius:22px;
    padding:22px;
}

.blog-card .tag{
    display:inline-flex;
    color:#ff7fbb;
    background:rgba(255,47,146,.10);
    border:1px solid rgba(255,47,146,.22);
    padding:7px 11px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
    margin-bottom:12px;
}

.blog-card h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.35;
}

.blog-card h3 a{color:#fff}

.blog-card p{
    color:var(--muted);
    line-height:1.7;
    margin:0;
}

.footer{
    background:#07070a;
    border-top:1px solid var(--border);
    color:#a1a1aa;
    text-align:center;
    padding:26px 0;
}

/* POST */

.post-hero{
    padding:44px 0 24px;
}

.post-hero .container,
.post-content-wrap .container{
    max-width:900px;
}

.visual-breadcrumb{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    color:#a1a1aa;
    font-size:14px;
    margin-bottom:18px;
}

.visual-breadcrumb a{color:#ff7fbb;font-weight:800}
.visual-breadcrumb strong{color:#d4d4d8}

.post-tag{
    display:inline-flex;
    color:#ff7fbb;
    background:rgba(255,47,146,.10);
    border:1px solid rgba(255,47,146,.22);
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    margin-bottom:16px;
}

.post-hero h1{
    color:#fff;
    margin:0 0 16px;
    font-size:46px;
    line-height:1.08;
}

.post-meta{
    display:flex;
    gap:10px;
    color:#a1a1aa;
    margin-bottom:16px;
}

.post-hero p{
    color:var(--muted);
    line-height:1.8;
}

.post-content-wrap{
    padding:24px 0 70px;
}

.post-cover{
    width:100%;
    max-height:460px;
    object-fit:cover;
    border-radius:22px;
    margin-bottom:24px;
    border:1px solid var(--border);
}

.post-content,
.faq-box{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:22px;
    padding:30px;
    color:#e4e4e7;
    line-height:1.9;
    font-size:17px;
}

.post-content h2,
.post-content h3,
.faq-box h2{color:#fff}

.post-content a{color:#ff7fbb;font-weight:900}

.faq-box{
    margin-top:26px;
}

.faq-box details{
    border-top:1px solid var(--border);
    padding:15px 0;
}

.faq-box summary{
    cursor:pointer;
    color:#fff;
    font-weight:900;
}

.related-posts{margin-top:34px}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.related-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    padding:18px;
}

.related-image{
    display:block;
    height:150px;
    overflow:hidden;
    border-radius:14px;
    margin-bottom:14px;
}

.related-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TABLET */

@media(max-width:900px){
    .banner-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .channel-grid,
    .blog-grid,
    .related-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:38px;
    }
}

/* MOBILE */

@media(max-width:560px){
    .container{
        padding:0 12px;
    }

    .header-inner{
        min-height:auto;
        padding:12px 0;
        flex-direction:column;
        align-items:center;
        gap:8px;
    }

    .logo{
        font-size:18px;
    }

    .nav{
        width:100%;
        justify-content:center;
        overflow-x:auto;
        gap:4px;
    }

    .nav a{
        font-size:11px;
        padding:6px 6px;
        white-space:nowrap;
    }

    .top-banners{
        padding:10px 0 4px;
    }

    .banner-grid{
        grid-template-columns:repeat(2,1fr);
        gap:8px;
    }

    .banner-item{
        aspect-ratio:2.1 / 1;
        border-radius:8px;
        box-shadow:none;
    }

    .hero{
        padding:28px 0 22px;
    }

    .hero-badge{
        font-size:10px;
        padding:7px 10px;
    }

    .hero h1{
        font-size:28px;
        line-height:1.12;
        letter-spacing:-.7px;
    }

    .hero p{
        font-size:14.5px;
        line-height:1.65;
    }

    .channels{
        padding:18px 0 42px;
    }

    .channel-grid{
        gap:14px;
    }

    .channel-card{
        border-radius:18px;
        padding:18px;
        box-shadow:0 14px 36px rgba(0,0,0,.32);
    }

    .channel-card h2{
        font-size:19px;
    }

    .channel-card p{
        font-size:14px;
    }

    .btn{
        padding:13px 15px;
        border-radius:12px;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .section-title{
        font-size:24px;
    }

    .blog-card{
        border-radius:18px;
        padding:18px;
    }

    .footer{
        padding:22px 12px;
        font-size:12px;
    }

    .post-hero{
        padding:30px 0 18px;
    }

    .post-hero h1{
        font-size:30px;
    }

    .post-content,
    .faq-box{
        padding:20px;
        border-radius:18px;
        font-size:16px;
    }

    .post-cover{
        border-radius:16px;
        max-height:260px;
    }
}