:root{
    --bg:#f7f8fa;
    --bg-soft:#eef2f6;
    --panel:#ffffff;
    --panel-2:#f6f7f9;
    --panel-dark:#111318;
    --panel-dark-2:#171b22;
    --text:#12151b;
    --muted:#626b78;
    --text-light:#ffffff;
    --muted-light:rgba(255,255,255,.72);
    --line:rgba(17,24,39,.10);
    --line-strong:rgba(17,24,39,.16);
    --line-light:rgba(255,255,255,.12);
    --orange:#FF4A1C;
    --orange-2:#ff612a;
    --orange-soft:rgba(255,74,28,.12);
    --green:#0f6a47;
    --green-bright:#19b06e;
    --gold:#c9a85b;
    --shadow:0 18px 42px rgba(15,23,42,.10);
    --shadow-dark:0 18px 48px rgba(0,0,0,.32);
    --radius:18px;
    --radius-lg:28px;
    --max:1380px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:-1.5% !important;
    font-family:'Montserrat', Arial, sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(255,74,28,.08), transparent 24%),
        radial-gradient(circle at 90% 18%, rgba(15,106,71,.07), transparent 22%),
        linear-gradient(135deg, #ffffff 0%, #f7f8fa 35%, #edf1f5 70%, #e6ebf0 100%);
    background-attachment:fixed;
}

main{
    background:transparent;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(var(--max), calc(100% - 32px));
    margin:0 auto;
}

/* HEADER / NAV */
.topbar{
    border-bottom:1px solid var(--line-light);
    background:rgba(7,9,12,.82);
    backdrop-filter:blur(14px);
}

.topbar__inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:10px 0;
    color:#d2d7df;
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.topbar__right{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 14px;
    border-radius:999px;
    border:1px solid rgba(255,74,28,.24);
    background:linear-gradient(180deg, rgba(255,74,28,.12), rgba(255,255,255,.03));
    color:#ffd3c5;
    font-weight:800;
}

.nav{
    position:sticky;
    top:0;
    z-index:60;
    background:rgba(12,14,18,.90);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line-light);
}

.nav__inner{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:28px;
    padding:12px 0;
    position:relative;
}

.brand{
    display:flex;
    align-items:center;
    flex:0 0 auto;
    min-width:0;
    z-index:3;
}

.brand__logo-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    height:86px;
    padding:10px 22px;
    border-radius:6px;
}

.brand__logo{
    height:120px;
    width:auto;
    max-width:none;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 6px 18px rgba(255,74,28,.14));
}

.brand__divider,
.brand__sub{
    display:none;
}

.brand__eyebrow{
    font-size:10px;
    font-weight:800;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#ffc8b8;
}

.brand__caption{
    font-size:12px;
    font-weight:700;
    color:#c7ced8;
    letter-spacing:.08em;
    text-transform:uppercase;
    white-space:nowrap;
}

.nav__panel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    min-width:0;
}

.nav__menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.nav__menu a{
    position:relative;
    padding:12px 18px;
    border-radius:999px;
    color:#edf1f7;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:12px;
    transition:.22s ease;
}

.nav__menu a::after{
    content:"";
    position:absolute;
    left:18px;
    right:18px;
    bottom:8px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--orange), transparent);
    transform:scaleX(0);
    transform-origin:left;
    transition:.22s ease;
}

.nav__menu a:hover,
.nav__menu a.is-active{
    background:rgba(255,255,255,.06);
    color:#fff;
}

.nav__menu a:hover::after,
.nav__menu a.is-active::after{
    transform:scaleX(1);
}

.nav__actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.nav__toggle{
    display:none;
    width:48px;
    height:48px;
    margin-left:auto;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid var(--line-light);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    transition:.2s ease;
    z-index:3;
}

.nav__toggle:hover{
    background:rgba(255,255,255,.07);
    border-color:rgba(255,74,28,.28);
}

.nav__toggle span{
    width:20px;
    height:2px;
    border-radius:999px;
    background:#fff;
    transition:.22s ease;
}

.nav__toggle.is-active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2){
    opacity:0;
}

.nav__toggle.is-active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.socials{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:2px;
}

.socials a{
    width:40px;
    height:40px;
    border-radius:999px;
    display:grid;
    place-items:center;
    border:1px solid var(--line-light);
    background:rgba(255,255,255,.03);
    color:#f4f6fb;
    transition:.2s ease;
}

.socials a:hover{
    transform:translateY(-2px);
    border-color:rgba(255,74,28,.34);
    background:rgba(255,74,28,.12);
    color:#fff;
}

/* BUTTONS */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:12px;
    transition:.2s ease;
    cursor:pointer;
    border:none;
    font-family:inherit;
}

.btn--ghost{
    background:rgba(255,255,255,.05);
    color:#fff;
    border:1px solid var(--line-light);
}

.btn--ghost:hover{
    background:rgba(255,255,255,.09);
}

.btn--primary{
    color:#fff;
    background:linear-gradient(135deg, var(--orange-2), var(--orange));
    box-shadow:0 14px 30px rgba(255,74,28,.24);
}

.btn--primary:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 36px rgba(255,74,28,.28);
}

/* HERO */
.hero{
    padding:34px 0 18px;
}

.hero__grid{
    display:grid;
    grid-template-columns:1.35fr .85fr;
    gap:24px;
}

.hero__card{
    position:relative;
    overflow:hidden;
    border-radius:0;
    min-height:620px;
    background:#13161b;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:var(--shadow);
}

.hero__media{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
}

.hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.22) 28%, rgba(0,0,0,.88) 100%);
}

.hero__accent{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:6px;
    background:linear-gradient(90deg, var(--orange), transparent);
    z-index:2;
}

.hero__content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:32px;
    z-index:3;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:11px;
    background:rgba(15,106,71,.18);
    color:#9cf2ca;
    border:1px solid rgba(25,176,110,.26);
}

.hero__title{
    margin:16px 0 14px;
    color:#fff;
    font-size:clamp(34px, 4vw, 50px);
    line-height:.98;
    font-weight:900;
    letter-spacing:-.03em;
    max-width:920px;
}

.hero__excerpt{
    max-width:760px;
    color:#d6dbe4;
    font-size:18px;
    line-height:1.65;
    margin-bottom:24px;
}

.hero__actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero__side{
    display:grid;
    gap:20px;
}

/* SIDE / QUICK CARDS */
.side-card{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:22px;
    padding:22px;
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}

.side-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg, var(--orange), transparent);
}

.side-card h3{
    margin:0 0 12px;
    font-size:14px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#1f2937;
}

.bc-feature-ticker{
    padding:0;
    background:#111;
}

.bc-feature-ticker__card{
    position:relative;
    display:block;
    min-height:300px;
    overflow:hidden;
    border-radius:22px;
    color:#fff;
    background:#111;
}

.bc-feature-ticker__bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
}

.bc-feature-ticker__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.20), transparent);
}

.bc-feature-ticker__content{
    position:absolute;
    bottom:20px;
    left:20px;
    right:20px;
    z-index:2;
}

.bc-feature-ticker__content h3,
.bc-feature-ticker__content p{
    color:#fff;
}

.bc-home-sidebar-text,
.bc-glass-card{
    background:
        radial-gradient(circle at 20% 10%, rgba(255,74,28,.12), transparent 28%),
        linear-gradient(180deg, rgba(15,18,24,.95), rgba(20,24,30,.94));
    color:#fff;
    border:1px solid var(--line-light);
    box-shadow:var(--shadow-dark);
    backdrop-filter:blur(14px);
}

.bc-glass-card h3,
.bc-home-sidebar-text h3{
    color:#ffb8a3;
}

.bc-links-grid{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:10px;
}

.bc-link-card{
    display:block;
    padding:14px 16px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.09);
    color:#fff;
    transition:.25s ease;
}

.bc-link-card:hover{
    background:rgba(255,74,28,.14);
    border-color:rgba(255,74,28,.42);
    transform:translateY(-2px);
}

.ticker{
    display:grid;
    gap:12px;
}

.ticker__item{
    display:grid;
    gap:6px;
    padding:14px 0;
    border-bottom:1px solid var(--line);
}

.ticker__item:last-child{
    border-bottom:none;
}

.ticker__label{
    display:block;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.14em;
    color:var(--orange);
    margin-bottom:4px;
}

.ticker__title{
    display:block;
    font-size:16px;
    line-height:1.35;
    font-weight:800;
}

.ticker__meta{
    color:var(--muted);
    font-size:14px;
    line-height:1.55;
}

/* SECTIONS */
.section{
    padding:34px 0;
}

.section__head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}

.section__title{
    margin:0;
    color:#111827;
    font-size:clamp(30px, 3vw, 38px);
    line-height:1;
    font-weight:900;
    letter-spacing:-.03em;
}

.section__text{
    color:var(--muted);
    max-width:720px;
    font-size:16px;
    line-height:1.7;
}

.section__link{
    color:var(--orange);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:12px;
}

/* IMAGE BANNERS */
.bc-home-banner{
    position:relative;
    overflow:hidden;
    min-height:170px;
    border-radius:0;
    border:none;
    background:#111;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    box-shadow:var(--shadow);
}

.bc-home-banner__bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:1;
    filter:none;
    z-index:0;
}

.bc-home-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34), rgba(0,0,0,.08));
    z-index:1;
}

.bc-home-banner__content,
.bc-home-banner .btn{
    position:relative;
    z-index:2;
}

.bc-home-banner__content h2,
.bc-home-banner__content p{
    color:#fff;
}

.bc-home-banner .eyebrow{
    background:rgba(0,0,0,.55);
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
}

/* MEMBER CTA */
.bc-member-cta,
.cta-band{
    margin:0;
    border-radius:0;
    background:#111318;
    border:none;
    padding:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:var(--shadow-dark);
    color:#fff;
}

.bc-member-cta h2,
.bc-member-cta p,
.cta-band h3,
.cta-band p{
    color:#fff;
}

.bc-member-cta__brand{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:20px;
}

.bc-member-cta__logo{
    width:120px;
    min-width:120px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.bc-member-cta__logo img{
    max-width:150px;
    max-height:80px;
    object-fit:contain;
}

/* CARDS / NEWS */
.news-grid,
.bcentral-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.bc-home-featured-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
}

.bc-home-latest-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:20px;
}

.news-card,
.hub-card{
    border-radius:22px;
    overflow:hidden;
    background:var(--panel);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    transition:.24s ease;
    color:var(--text);
}

.news-card:hover,
.hub-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,74,28,.30);
    box-shadow:0 22px 52px rgba(15,23,42,.14);
}

.news-card__image{
    aspect-ratio:4 / 3;
    background-size:cover;
    background-position:center;
    position:relative;
    border-radius:22px 22px 0 0;
}

.news-card__image::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:4px;
    background:linear-gradient(90deg, var(--orange), transparent);
}

.news-card__body{
    padding:18px;
    background:#fff;
}

.news-card__cat{
    color:var(--orange);
    text-transform:uppercase;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
}

.news-card__title{
    margin:10px 0 0;
    color:#111827;
    font-size:24px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-.02em;
}

/* LIVE / RANKING */
.live-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:24px;
}

.live-panel{
    background:
        radial-gradient(circle at top right, rgba(255,74,28,.13), transparent 28%),
        linear-gradient(180deg, #111318, #171b22);
    border:1px solid var(--line-light);
    border-radius:22px;
    padding:24px;
    box-shadow:var(--shadow-dark);
    color:#fff;
}

.live-panel .section__title{
    color:#fff;
}

.live-panel .section__text{
    color:var(--muted-light);
}

.live-list{
    display:grid;
    gap:14px;
}

.live-item{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    transition:.22s ease;
}

.live-item:hover{
    border-color:rgba(255,74,28,.36);
    background:rgba(255,74,28,.12);
}

.live-item__status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#fff;
    background:rgba(255,74,28,.18);
    border:1px solid rgba(255,74,28,.34);
    padding:7px 10px;
    border-radius:999px;
    margin-bottom:10px;
}

.live-item__status::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff784f;
    box-shadow:0 0 12px #ff784f;
}

.live-item__title{
    color:#fff;
    font-size:22px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:8px;
}

.live-item__meta{
    color:var(--muted-light);
    font-size:15px;
    line-height:1.55;
}

.live-item__cta{
    white-space:nowrap;
}

.bc-rank-clean{
    margin-top:18px;
    background:rgba(0,0,0,.38);
    border:1px solid rgba(255,255,255,.10);
    border-radius:22px;
    overflow:hidden;
}

.bc-rank-title{
    margin:0;
    padding:18px 20px 8px;
    color:#fff;
    font-size:22px;
    font-weight:900;
}

.bc-rank-table-clean{
    width:100%;
    border-collapse:collapse;
    color:#fff;
}

.bc-rank-table-clean th,
.bc-rank-table-clean td{
    padding:12px 14px;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#fff;
}

.bc-rank-table-clean th{
    color:rgba(255,255,255,.58);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.10em;
}

.rank-player{
    display:flex;
    align-items:center;
    gap:10px;
}

.rank-sub,
.rank-stats{
    color:rgba(255,255,255,.58);
}

.rank-score{
    color:#ffb39d;
    font-weight:900;
}

.rank-flag{
    border-radius:3px;
}

/* BCENTRAL IMAGE CARDS */
.hub-card{
    min-height:220px;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.hub-card--image{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    min-height:240px;
    display:block;
    background:#111;
    box-shadow:var(--shadow);
}

.hub-card__bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    border-radius:22px;
}

.hub-card__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.12), transparent);
}

.hub-card__icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg, rgba(255,74,28,.22), rgba(255,255,255,.05));
    color:#fff;
    font-size:22px;
    font-weight:900;
    border:1px solid rgba(255,74,28,.20);
}

.hub-card__title{
    margin:20px 0 8px;
    font-size:24px;
    font-weight:900;
    letter-spacing:-.02em;
}

.hub-card__desc{
    color:var(--muted);
    line-height:1.65;
    font-size:15px;
}

/* HIGHLIGHTS / REELS */
.bc-home-carousel{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
}

.bc-home-carousel::-webkit-scrollbar{
    display:none;
}

.bc-home-carousel .news-card,
.bc-reel-card{
    position:relative;
    min-width:260px;
    max-width:290px;
    height:400px;
    border-radius:22px;
    overflow:hidden;
    background:#000;
    scroll-snap-align:start;
    display:block;
    border:none;
}

.bc-home-carousel .news-card__image,
.bc-home-carousel video.news-card__image,
.bc-reel-media{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    background-size:cover;
    background-position:center;
    border-radius:22px;
}

.bc-home-carousel .news-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.28), transparent);
    z-index:1;
}

.bc-home-carousel .news-card__body{
    position:absolute;
    bottom:0;
    width:100%;
    padding:16px;
    z-index:2;
    background:transparent;
}

.bc-home-carousel .news-card__cat{
    font-size:11px;
    font-weight:900;
    color:#ff6a2a;
    text-transform:uppercase;
    margin-bottom:4px;
}

.bc-home-carousel .news-card__title{
    font-size:16px;
    font-weight:900;
    color:#fff;
    line-height:1.2;
    margin:0 0 6px;
}

.bc-home-carousel .ticker__meta{
    font-size:12px;
    color:rgba(255,255,255,.70);
}

.bc-home-carousel .news-card:hover{
    transform:scale(1.04);
}

/* FOOTER / CONTACT */
.footer,
footer{
    border-top:1px solid rgba(255,255,255,.10);
    padding:38px 0 36px;
    background:#050609;
    color:#fff;
}

.footer__layout{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:start;
}

.footer__panel,
.footer__form{
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.04);
    border-radius:28px;
    padding:26px;
    box-shadow:var(--shadow-dark);
    color:#fff;
}

.footer__brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

.footer__brand img{
    height:42px;
    width:auto;
    object-fit:contain;
}

.footer__title{
    margin:0 0 10px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#fff;
}

.footer__text{
    margin:0 0 18px;
    color:rgba(255,255,255,.72);
    line-height:1.75;
    font-size:15px;
    max-width:600px;
}

.footer__links{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:18px;
}

.footer__links a{
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.footer__meta{
    margin-top:20px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.62);
    font-size:13px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.contact-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.contact-field--full{
    grid-column:1 / -1;
}

.contact-label{
    font-size:12px;
    font-weight:800;
    letter-spacing:.10em;
    text-transform:uppercase;
    color:#fff;
}

.contact-input,
.contact-textarea{
    width:100%;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.06);
    color:#fff;
    border-radius:16px;
    padding:14px 16px;
    font:inherit;
    outline:none;
    transition:.2s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder{
    color:rgba(255,255,255,.52);
}

.contact-input:focus,
.contact-textarea:focus{
    border-color:rgba(255,74,28,.42);
    box-shadow:0 0 0 4px rgba(255,74,28,.10);
    background:rgba(255,255,255,.08);
}

.contact-textarea{
    min-height:150px;
    resize:vertical;
}

.contact-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:16px;
}

/* BOTTOM AD */
.bc-bottom-ad{
    border-radius:0;
}

.bc-bottom-ad__close{
    border-radius:0;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .news-grid,
    .bcentral-grid,
    .bc-home-latest-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .hero__grid,
    .live-grid,
    .footer__layout{
        grid-template-columns:1fr;
    }

    .hero__card{
        min-height:560px;
    }
}

@media(max-width:920px){
    .nav__inner{
        grid-template-columns:auto auto;
        align-items:center;
        gap:16px;
    }

    .nav__toggle{
        display:flex;
    }

    .nav__panel{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:18px;
        padding:18px;
        margin-top:10px;
        border:1px solid var(--line-light);
        border-radius:22px;
        background:rgba(10,13,17,.96);
        backdrop-filter:blur(16px);
        box-shadow:0 18px 44px rgba(0,0,0,.42);
    }

    .nav__panel.is-open{
        display:flex;
    }

    .nav__menu{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
    }

    .nav__menu a{
        width:100%;
        padding:14px 16px;
        border-radius:14px;
        background:rgba(255,255,255,.03);
    }

    .nav__menu a::after{
        display:none;
    }

    .nav__actions{
        width:100%;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
    }

    .nav__actions .btn{
        width:100%;
    }

    .socials{
        justify-content:flex-start;
        margin-left:0;
    }

    .brand__logo-wrap{
        height:74px;
        padding:8px 18px;
    }

    .brand__logo{
        height:52px;
    }
}

@media(max-width:820px){
    .news-grid,
    .bcentral-grid,
    .bc-home-featured-grid,
    .bc-home-latest-grid{
        grid-template-columns:1fr;
    }

    .hero__content{
        padding:24px;
    }

    .hero__card{
        min-height:500px;
    }

    .bc-member-cta,
    .cta-band,
    .bc-home-banner{
        flex-direction:column;
        align-items:flex-start;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:560px){
    .container{
        width:min(var(--max), calc(100% - 20px));
    }

    .topbar__inner{
        font-size:10px;
        gap:10px;
    }

    .nav__inner{
        padding:12px 0;
    }

    .brand{
        width:auto;
    }

    .brand__logo-wrap{
        height:62px;
        padding:8px 14px;
    }

    .brand__logo{
        height:42px;
    }

    .hero__title{
        font-size:34px;
    }

    .section{
        padding:24px 0;
    }

    .news-card__title{
        font-size:22px;
    }

    .live-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer__panel,
    .footer__form{
        padding:22px 18px;
        border-radius:22px;
    }

    .socials a{
        width:36px;
        height:36px;
    }

    .bc-home-carousel .news-card{
        min-width:220px;
        height:360px;
    }
}