/* =====================================================
   BIFF3EN HUB V3
   FULL FRONTEND REDESIGN
   REAL PHOTOS ONLY
===================================================== */

:root {
    --b3-bg: #07050a;
    --b3-bg-soft: #0d0812;
    --b3-panel: rgba(17, 11, 25, .88);
    --b3-panel-strong: #110b19;

    --b3-purple: #953cff;
    --b3-purple-light: #c76cff;
    --b3-pink: #ff48bc;
    --b3-cyan: #30e7ff;
    --b3-yellow: #ffd83d;
    --b3-green: #79ff76;

    --b3-white: #ffffff;
    --b3-muted: #b7adbf;

    --b3-border: rgba(191, 103, 255, .24);
    --b3-radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body.b3-v3 {
    margin: 0;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 4% 20%,
            rgba(141, 50, 255, .12),
            transparent 25%
        ),
        radial-gradient(
            circle at 97% 44%,
            rgba(255, 54, 180, .10),
            transparent 25%
        ),
        radial-gradient(
            circle at 50% 85%,
            rgba(57, 220, 255, .055),
            transparent 26%
        ),
        #07050a;

    color: #fff;
}


/* =====================================================
   HEADER / NAV
===================================================== */

body.b3-v3 header {
    position: sticky !important;
    top: 0;

    z-index: 5000;

    background:
        rgba(7, 5, 10, .88) !important;

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

    border-bottom:
        1px solid rgba(255,255,255,.065);

    box-shadow:
        0 12px 45px rgba(0,0,0,.22);
}

body.b3-v3 header > *,
body.b3-v3 nav {
    max-width:
        1540px !important;

    margin-left: auto !important;
    margin-right: auto !important;
}

body.b3-v3 nav a {
    position: relative;

    transition:
        color .18s ease,
        transform .18s ease;
}

body.b3-v3 nav a:hover {
    color:
        #fff !important;

    transform:
        translateY(-1px);
}

body.b3-v3 nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 3px;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            var(--b3-pink),
            var(--b3-purple)
        );

    transform:
        translateX(-50%);

    transition:
        width .18s ease;
}

body.b3-v3 nav a:hover::after {
    width: 65%;
}


/* =====================================================
   MAIN
===================================================== */

body.b3-v3 main {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =====================================================
   HERO V3
===================================================== */

.b3-hero-v3 {
    position: relative;

    isolation: isolate;

    width:
        min(
            1540px,
            calc(100% - 40px)
        ) !important;

    min-height:
        720px;

    margin:
        26px auto 30px !important;

    padding:
        78px 72px !important;

    overflow:
        hidden;

    border:
        1px solid
        rgba(182, 84, 255, .20);

    border-radius:
        34px;

    box-sizing:
        border-box;

    background:
        radial-gradient(
            circle at 76% 30%,
            rgba(142, 48, 255, .29),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 72%,
            rgba(255, 47, 183, .16),
            transparent 26%
        ),
        radial-gradient(
            circle at 5% 8%,
            rgba(54, 225, 255, .10),
            transparent 22%
        ),
        linear-gradient(
            135deg,
            #07050a,
            #100719 53%,
            #12071d
        );

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.38);
}

.b3-hero-v3::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(6, 4, 9, .98) 0%,
            rgba(6, 4, 9, .91) 31%,
            rgba(6, 4, 9, .62) 47%,
            rgba(6, 4, 9, .14) 69%,
            rgba(6, 4, 9, .05) 100%
        );
}

.b3-hero-v3::after {
    content: "";

    position: absolute;

    width: 630px;
    height: 630px;

    right: 8%;
    top: 8%;

    z-index: 0;

    border-radius:
        50%;

    background:
        rgba(136, 48, 255, .18);

    filter:
        blur(95px);

    pointer-events: none;
}

.b3-hero-v3 >
*:not(.b3-v3-art) {
    position: relative;

    z-index: 20;
}

.b3-hero-v3 .hero-content,
.b3-hero-v3 >
div:not(.b3-v3-art) {
    max-width:
        720px;
}

.b3-hero-v3 .eyebrow {
    margin-bottom:
        17px;

    color:
        #d484ff !important;

    font-weight:
        900;

    letter-spacing:
        .20em;

    text-transform:
        uppercase;
}

.b3-hero-v3 h1 {
    width:
        min(720px, 100%);

    margin:
        0 0 24px !important;

    font-size:
        clamp(
            4.2rem,
            6.1vw,
            7.2rem
        ) !important;

    line-height:
        .89 !important;

    letter-spacing:
        -.062em !important;

    text-wrap:
        balance;
}

.b3-title-white {
    display: block;

    color:
        white;
}

.b3-title-gradient {
    display: block;

    width:
        max-content;

    max-width:
        100%;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 14%,
            #ef89ff 39%,
            #b147ff 70%,
            #6b35ff 100%
        );

    background-clip:
        text;

    -webkit-background-clip:
        text;

    color:
        transparent;

    filter:
        drop-shadow(
            0 0 24px
            rgba(160, 72, 255, .17)
        );
}

.b3-v3-subtitle {
    max-width:
        500px;

    margin:
        0 0 28px !important;

    color:
        rgba(255,255,255,.72) !important;

    font-size:
        clamp(
            1rem,
            1.3vw,
            1.26rem
        ) !important;

    line-height:
        1.6 !important;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.b3-v3-actions {
    display:
        flex;

    flex-wrap:
        wrap;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        26px;
}

.b3-v3-action {
    min-height:
        54px;

    padding:
        0 22px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius:
        16px;

    color:
        white !important;

    background:
        rgba(255,255,255,.055);

    font-weight:
        850;

    text-decoration:
        none;

    cursor:
        pointer;

    backdrop-filter:
        blur(12px);

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.04);

    transition:
        transform .16s ease,
        box-shadow .16s ease,
        border-color .16s ease;
}

.b3-v3-action:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(199,108,255,.55);

    box-shadow:
        0 14px 38px
        rgba(116, 35, 210, .16);
}

.b3-v3-action.primary {
    border-color:
        transparent;

    background:
        linear-gradient(
            135deg,
            #b83cff,
            #702cff
        );

    box-shadow:
        0 14px 40px
        rgba(139, 49, 255, .28);
}

.b3-v3-action.discord {
    border-color:
        rgba(100, 119, 255, .35);

    background:
        linear-gradient(
            135deg,
            rgba(88,101,242,.23),
            rgba(131,68,255,.16)
        );
}


/* =====================================================
   BADGES
===================================================== */

.b3-v3-badges {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-top:
        22px;
}

.b3-v3-badge {
    padding:
        8px 12px;

    border:
        1px solid
        rgba(255,255,255,.105);

    border-radius:
        999px;

    background:
        rgba(9, 6, 13, .62);

    color:
        #eee8f2;

    font-size:
        .72rem;

    font-weight:
        900;

    letter-spacing:
        .11em;

    backdrop-filter:
        blur(14px);
}

.b3-v3-badge:nth-child(1) {
    box-shadow:
        inset 0 0 18px
        rgba(255,72,188,.10);
}

.b3-v3-badge:nth-child(2) {
    box-shadow:
        inset 0 0 18px
        rgba(48,231,255,.10);
}

.b3-v3-badge:nth-child(3) {
    box-shadow:
        inset 0 0 18px
        rgba(149,60,255,.13);
}


/* =====================================================
   PHOTO COLLAGE
===================================================== */

.b3-v3-art {
    position: absolute;

    inset: 0;

    z-index: 4;

    overflow:
        hidden;

    pointer-events:
        none;
}

.b3-v3-photo {
    position:
        absolute;

    display:
        block;

    object-fit:
        cover;

    border:
        4px solid
        rgba(255,255,255,.92);

    background:
        #0a0710;

    box-shadow:
        0 0 0 3px
        rgba(137,51,255,.52),
        0 20px 50px
        rgba(0,0,0,.52),
        0 0 42px
        rgba(146,49,255,.27);

    transition:
        transform .3s ease;
}

.b3-v3-main {
    width:
        min(37vw, 570px);

    height:
        620px;

    right:
        8.3%;

    top:
        48px;

    z-index:
        6;

    border-radius:
        34px;

    object-position:
        center center;

    transform:
        rotate(1.4deg);

    box-shadow:
        0 0 0 3px
        rgba(147,62,255,.60),
        0 34px 80px
        rgba(0,0,0,.58),
        0 0 70px
        rgba(141,49,255,.37);
}

.b3-v3-orange {
    width:
        180px;

    height:
        235px;

    right:
        1.6%;

    top:
        28px;

    z-index:
        10;

    border-radius:
        25px;

    transform:
        rotate(7deg);
}

.b3-v3-purple {
    width:
        175px;

    height:
        225px;

    left:
        1.5%;

    bottom:
        24px;

    z-index:
        10;

    border-radius:
        24px;

    transform:
        rotate(-8deg);
}

.b3-v3-filter {
    width:
        145px;

    height:
        185px;

    right:
        39%;

    top:
        12px;

    z-index:
        8;

    border-radius:
        23px;

    transform:
        rotate(-5deg);
}

.b3-v3-pizza {
    width:
        164px;

    height:
        218px;

    right:
        1.8%;

    bottom:
        24px;

    z-index:
        10;

    border-radius:
        24px;

    transform:
        rotate(6deg);
}

.b3-v3-alt {
    width:
        185px;

    height:
        145px;

    right:
        34%;

    bottom:
        22px;

    z-index:
        9;

    border-radius:
        23px;

    transform:
        rotate(-3deg);
}


/* =====================================================
   DOODLES
===================================================== */

.b3-v3-doodle {
    position:
        absolute;

    z-index:
        12;

    font-weight:
        950;

    font-family:
        Arial,
        sans-serif;

    line-height:
        1;

    text-shadow:
        0 0 19px
        currentColor;
}

.b3-d1 {
    left: 2.5%;
    top: 14%;

    color:
        #c448ff;

    font-size:
        65px;

    transform:
        rotate(-10deg);
}

.b3-d2 {
    right: 25%;
    top: 6%;

    color:
        #ffe046;

    font-size:
        52px;

    transform:
        rotate(12deg);
}

.b3-d3 {
    right: 3%;
    top: 45%;

    color:
        #35e5ff;

    font-size:
        59px;

    transform:
        rotate(8deg);
}

.b3-d4 {
    left: 14%;
    bottom: 4%;

    color:
        #ff4fc6;

    font-size:
        52px;

    transform:
        rotate(-11deg);
}

.b3-d5 {
    right: 39%;
    bottom: 8%;

    color:
        #7fff75;

    font-size:
        57px;

    transform:
        rotate(8deg);
}


/* =====================================================
   QUICK CARDS
===================================================== */

.b3-v3-quick-grid {
    width:
        min(
            1320px,
            calc(100% - 40px)
        );

    margin:
        0 auto 92px;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        15px;
}

.b3-v3-quick {
    min-height:
        112px;

    padding:
        22px 24px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            rgba(23,14,33,.93),
            rgba(12,9,17,.94)
        );

    color:
        white;

    text-decoration:
        none;

    box-sizing:
        border-box;

    box-shadow:
        0 15px 50px
        rgba(0,0,0,.24);

    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.b3-v3-quick:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(191,103,255,.37);

    box-shadow:
        0 22px 60px
        rgba(73,20,125,.21);
}

.b3-v3-quick-icon {
    width:
        58px;

    height:
        58px;

    flex:
        0 0 58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        18px;

    font-size:
        28px;

    font-weight:
        900;
}

.b3-v3-quick:nth-child(1)
.b3-v3-quick-icon {
    color:
        #c45fff;

    background:
        rgba(153,55,255,.15);

    box-shadow:
        0 0 28px
        rgba(159,54,255,.18);
}

.b3-v3-quick:nth-child(2)
.b3-v3-quick-icon {
    color:
        #32e9ff;

    background:
        rgba(34,213,238,.12);

    box-shadow:
        0 0 28px
        rgba(34,213,238,.14);
}

.b3-v3-quick:nth-child(3)
.b3-v3-quick-icon {
    color:
        #ffd83d;

    background:
        rgba(255,216,61,.11);

    box-shadow:
        0 0 28px
        rgba(255,216,61,.14);
}

.b3-v3-quick-copy {
    flex:
        1;
}

.b3-v3-quick-copy strong {
    display:
        block;

    margin-bottom:
        5px;

    font-size:
        1.02rem;
}

.b3-v3-quick-copy span {
    color:
        #a9a0b0;

    font-size:
        .89rem;
}

.b3-v3-arrow {
    color:
        #c86cff;

    font-size:
        1.5rem;
}


/* =====================================================
   GLOBAL V3 SECTIONS
===================================================== */

.b3-v3-section {
    position:
        relative;

    width:
        min(
            1320px,
            calc(100% - 40px)
        ) !important;

    margin:
        0 auto 88px !important;

    padding:
        0 !important;

    box-sizing:
        border-box;
}

.b3-v3-section
.section-heading {
    margin-bottom:
        26px;
}

.b3-v3-section
.section-heading .eyebrow {
    margin-bottom:
        10px;

    color:
        #c66aff;

    font-size:
        .75rem;

    font-weight:
        950;

    letter-spacing:
        .18em;
}

.b3-v3-section
.section-heading h2 {
    margin:
        0;

    font-size:
        clamp(
            2.35rem,
            4vw,
            4.35rem
        );

    line-height:
        .97;

    letter-spacing:
        -.045em;
}


/* =====================================================
   LIVE
===================================================== */

.b3-v3-live .live-card {
    position:
        relative;

    overflow:
        hidden;

    min-height:
        230px;

    padding:
        34px !important;

    border:
        1px solid
        rgba(182,84,255,.30) !important;

    border-radius:
        var(--b3-radius) !important;

    background:
        radial-gradient(
            circle at 85% 40%,
            rgba(143, 49, 255, .17),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(20,13,29,.98),
            rgba(11,8,16,.98)
        ) !important;

    box-shadow:
        0 22px 70px
        rgba(0,0,0,.27);
}

.b3-v3-live .live-card::after {
    content:
        "LIVE";

    position:
        absolute;

    right:
        28px;

    top:
        22px;

    color:
        rgba(206,112,255,.10);

    font-size:
        clamp(
            5rem,
            11vw,
            10rem
        );

    font-weight:
        950;

    letter-spacing:
        -.07em;

    pointer-events:
        none;
}

.b3-v3-live .button,
.b3-v3-live a.button {
    border-radius:
        14px !important;
}


/* =====================================================
   SOCIALS
===================================================== */

.b3-v3-socials .social-grid {
    display:
        grid !important;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        ) !important;

    gap:
        14px !important;
}

.b3-v3-socials .social-card {
    position:
        relative;

    overflow:
        hidden;

    min-height:
        160px;

    padding:
        25px 22px !important;

    border:
        1px solid
        rgba(255,255,255,.09) !important;

    border-radius:
        22px !important;

    background:
        linear-gradient(
            145deg,
            rgba(24,16,31,.94),
            rgba(13,10,17,.96)
        ) !important;

    box-shadow:
        0 17px 50px
        rgba(0,0,0,.20);

    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.b3-v3-socials
.social-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(194,105,255,.43) !important;

    box-shadow:
        0 25px 65px
        rgba(77,24,128,.22);
}

.b3-v3-socials
.social-card::after {
    content:
        "";

    position:
        absolute;

    width:
        110px;

    height:
        110px;

    right:
        -50px;

    bottom:
        -55px;

    border-radius:
        50%;

    background:
        rgba(151,55,255,.13);

    filter:
        blur(7px);
}

.b3-v3-socials
.social-card:nth-child(2)::after {
    background:
        rgba(255,63,182,.13);
}

.b3-v3-socials
.social-card:nth-child(3)::after {
    background:
        rgba(255,47,47,.13);
}

.b3-v3-socials
.social-card:nth-child(4)::after {
    background:
        rgba(255,92,180,.13);
}

.b3-v3-socials
.social-card:nth-child(5)::after {
    background:
        rgba(88,101,242,.16);
}


/* =====================================================
   MINIGAME
===================================================== */

.b3-v3-game {
    padding-top:
        8px !important;
}

.b3-v3-game .game-card {
    position:
        relative;

    overflow:
        hidden;

    padding:
        30px !important;

    border:
        1px solid
        rgba(178,82,255,.33) !important;

    border-radius:
        30px !important;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(137,46,255,.12),
            transparent 37%
        ),
        linear-gradient(
            150deg,
            rgba(19,12,28,.98),
            rgba(11,8,16,.98)
        ) !important;

    box-shadow:
        0 28px 75px
        rgba(0,0,0,.28);
}

.b3-v3-game
.reaction-area {
    min-height:
        270px !important;

    border:
        1px solid
        rgba(255,255,255,.10) !important;

    border-radius:
        24px !important;

    background:
        linear-gradient(
            145deg,
            rgba(29,22,37,.95),
            rgba(21,16,28,.95)
        ) !important;

    font-size:
        clamp(
            3rem,
            6vw,
            5.8rem
        ) !important;

    letter-spacing:
        -.04em;

    transition:
        transform .12s ease,
        box-shadow .15s ease,
        background .15s ease !important;
}

.b3-v3-game
.reaction-area:hover {
    transform:
        scale(1.005);
}

.b3-v3-game
.reaction-area.ready {
    background:
        linear-gradient(
            135deg,
            #7431ff,
            #d335dd
        ) !important;

    box-shadow:
        0 0 70px
        rgba(164,63,255,.38) !important;
}

.b3-v3-game
#startGame {
    min-width:
        125px;

    min-height:
        52px;

    border-radius:
        15px !important;

    box-shadow:
        0 13px 36px
        rgba(132,47,245,.25);
}

.b3-v3-game
.leaderboard {
    margin-top:
        28px !important;

    padding-top:
        26px !important;
}

.b3-v3-game
.leaderboard li {
    padding:
        12px 10px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}


/* =====================================================
   SHOP
===================================================== */

.b3-v3-shop .shop-card {
    position:
        relative;

    overflow:
        hidden;

    min-height:
        230px;

    padding:
        34px !important;

    border:
        1px solid
        rgba(255,211,61,.20) !important;

    border-radius:
        28px !important;

    background:
        radial-gradient(
            circle at 87% 40%,
            rgba(255,211,61,.10),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(20,14,27,.98),
            rgba(10,8,14,.98)
        ) !important;

    box-shadow:
        0 23px 65px
        rgba(0,0,0,.25);
}

.b3-v3-shop
.shop-card::after {
    content:
        "SOON";

    position:
        absolute;

    right:
        27px;

    top:
        18px;

    color:
        rgba(255,216,61,.10);

    font-size:
        clamp(
            4.5rem,
            10vw,
            9rem
        );

    font-weight:
        950;

    letter-spacing:
        -.06em;
}


/* =====================================================
   ACCOUNT / MODALS
===================================================== */

body.b3-v3
.auth-modal-content,
body.b3-v3
.b3-account-v2 {
    border-color:
        rgba(188,91,255,.33) !important;

    background:
        linear-gradient(
            145deg,
            rgba(18,12,26,.99),
            rgba(9,7,13,.99)
        ) !important;

    box-shadow:
        0 35px 100px
        rgba(0,0,0,.52) !important;
}


/* =====================================================
   FOOTER
===================================================== */

body.b3-v3 footer {
    width:
        min(
            1320px,
            calc(100% - 40px)
        );

    margin:
        0 auto;

    padding:
        36px 0 46px !important;

    border-top:
        1px solid
        rgba(255,255,255,.075);

    color:
        #8f8798;
}


/* =====================================================
   V3 SECTION DECORATION
===================================================== */

.b3-v3-section::before {
    content:
        "";

    position:
        absolute;

    width:
        160px;

    height:
        160px;

    right:
        -70px;

    top:
        50px;

    z-index:
        -1;

    border-radius:
        50%;

    background:
        rgba(145,50,255,.065);

    filter:
        blur(55px);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1180px) {

    .b3-hero-v3 {
        min-height:
            760px;

        padding:
            66px 48px !important;
    }

    .b3-v3-main {
        width:
            47vw;

        height:
            610px;

        right:
            -3%;
    }

    .b3-v3-orange {
        right:
            -4%;
    }

    .b3-v3-filter,
    .b3-v3-alt {
        display:
            none;
    }

    .b3-hero-v3::before {
        background:
            linear-gradient(
                90deg,
                rgba(6,4,9,.98) 0%,
                rgba(6,4,9,.91) 42%,
                rgba(6,4,9,.44) 72%,
                rgba(6,4,9,.15) 100%
            );
    }

    .b3-v3-socials
    .social-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0,1fr)
            ) !important;
    }
}


@media (max-width: 850px) {

    .b3-hero-v3 {
        width:
            calc(100% - 22px) !important;

        min-height:
            740px;

        margin-top:
            12px !important;

        padding:
            55px 28px 195px !important;

        border-radius:
            25px;
    }

    .b3-hero-v3 h1 {
        font-size:
            clamp(
                3.35rem,
                14vw,
                5.4rem
            ) !important;
    }

    .b3-v3-main {
        width:
            55vw;

        height:
            380px;

        right:
            -10%;

        top:
            auto;

        bottom:
            -15px;

        opacity:
            .65;
    }

    .b3-v3-orange {
        width:
            116px;

        height:
            150px;

        right:
            3%;

        top:
            18px;

        opacity:
            .88;
    }

    .b3-v3-purple {
        width:
            110px;

        height:
            145px;

        left:
            -5%;

        bottom:
            7px;

        opacity:
            .80;
    }

    .b3-v3-filter,
    .b3-v3-pizza,
    .b3-v3-alt {
        display:
            none;
    }

    .b3-d3,
    .b3-d5 {
        display:
            none;
    }

    .b3-v3-quick-grid {
        grid-template-columns:
            1fr;

        margin-bottom:
            68px;
    }

    .b3-v3-socials
    .social-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            ) !important;
    }

    .b3-v3-section {
        margin-bottom:
            68px !important;
    }
}


@media (max-width: 560px) {

    .b3-v3-actions {
        display:
            grid;

        grid-template-columns:
            1fr;
    }

    .b3-v3-action {
        width:
            100%;

        box-sizing:
            border-box;
    }

    .b3-v3-socials
    .social-grid {
        grid-template-columns:
            1fr !important;
    }

    .b3-v3-game
    .game-card {
        padding:
            18px !important;
    }

    .b3-v3-game
    .reaction-area {
        min-height:
            200px !important;
    }
}


/* BIFF3EN V3.1 HERO PHOTO POLISH START */

/* Reinere hero-balanse */
.b3-hero-v3 {
    min-height: 690px;
}

/* Hovedbildet skal føles integrert, ikke som et stort bilde-kort */
.b3-v3-main {
    width: min(31vw, 485px) !important;
    height: 555px !important;

    right: 10.5% !important;
    top: 64px !important;

    border: 0 !important;
    border-radius: 40px !important;

    transform: rotate(1deg) !important;

    box-shadow: none !important;

    filter:
        drop-shadow(0 26px 38px rgba(0,0,0,.58))
        drop-shadow(0 0 34px rgba(145,55,255,.33));

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            #000 82%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            #000 82%,
            transparent 100%
        );
}

/* Oransje briller - ute mot høyre hjørne */
.b3-v3-orange {
    width: 148px !important;
    height: 190px !important;

    right: 1.2% !important;
    top: 42px !important;

    transform: rotate(8deg) !important;

    border-radius: 24px !important;
}

/* Lilla briller - lenger ut mot venstre og bort fra knappan */
.b3-v3-purple {
    width: 142px !important;
    height: 184px !important;

    left: -28px !important;
    bottom: 15px !important;

    transform: rotate(-9deg) !important;

    opacity: .92;

    z-index: 5 !important;
}

/* Filterbildet - mindre sticker over hovedbildet */
.b3-v3-filter {
    width: 116px !important;
    height: 146px !important;

    right: 40.5% !important;
    top: 24px !important;

    transform: rotate(-7deg) !important;

    border-radius: 22px !important;
}

/* Pizza - ytterkant høyre */
.b3-v3-pizza {
    width: 137px !important;
    height: 184px !important;

    right: .8% !important;
    bottom: 25px !important;

    transform: rotate(7deg) !important;
}

/* Ekstra ekte bilde nederst ved hovedmotivet */
.b3-v3-alt {
    width: 150px !important;
    height: 115px !important;

    right: 34% !important;
    bottom: 18px !important;

    transform: rotate(-4deg) !important;
}

/* Små stickers får meir ekte sticker-look */
.b3-v3-orange,
.b3-v3-purple,
.b3-v3-filter,
.b3-v3-pizza,
.b3-v3-alt {
    border:
        4px solid
        rgba(255,255,255,.96) !important;

    box-shadow:
        0 0 0 3px rgba(137,51,255,.55),
        0 18px 44px rgba(0,0,0,.48),
        0 0 28px rgba(146,49,255,.20) !important;
}

/* Litt meir doodle-liv rundt bildan */
.b3-d1 {
    left: 1.6% !important;
    top: 17% !important;
}

.b3-d2 {
    right: 23% !important;
    top: 7% !important;
}

.b3-d3 {
    right: 3.3% !important;
    top: 49% !important;
}

.b3-d4 {
    left: 11% !important;
    bottom: 5% !important;
}

.b3-d5 {
    right: 35% !important;
    bottom: 8% !important;
}

/* Teksten skal få mer luft */
.b3-hero-v3 h1 {
    max-width: 680px !important;
}

.b3-v3-subtitle {
    margin-bottom: 26px !important;
}

/* Mobil/tablet */
@media (max-width: 1180px) {
    .b3-v3-main {
        width: 42vw !important;
        height: 520px !important;
        right: -2% !important;
    }

    .b3-v3-orange {
        right: -3% !important;
    }
}

@media (max-width: 850px) {
    .b3-v3-main {
        width: 55vw !important;
        height: 365px !important;

        right: -12% !important;
        top: auto !important;
        bottom: -5px !important;

        opacity: .68;

        -webkit-mask-image:
            linear-gradient(
                to bottom,
                #000 0%,
                #000 72%,
                transparent 100%
            );

        mask-image:
            linear-gradient(
                to bottom,
                #000 0%,
                #000 72%,
                transparent 100%
            );
    }

    .b3-v3-purple {
        left: -48px !important;
    }
}

/* BIFF3EN V3.1 HERO PHOTO POLISH END */