/* =========================================================
   GAMEVERSE INDEX
   Premium Space Landing Page
========================================================= */

:root {
    --bg: #020617;
    --bg-soft: #07112b;

    --blue: #38bdf8;
    --blue-dark: #2563eb;
    --cyan: #22d3ee;

    --purple: #8b5cf6;
    --pink: #ec4899;

    --green: #22c55e;
    --yellow: #facc15;
    --orange: #fb923c;
    --red: #ef4444;

    --text: #f8fafc;
    --muted: #94a3b8;

    --glass: rgba(15, 23, 42, .62);
    --glass-light: rgba(255,255,255,.07);

    --border: rgba(255,255,255,.12);

    --shadow:
        0 25px 80px rgba(0,0,0,.45);

    --radius: 24px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37,99,235,.22),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #020617,
            #030712 60%,
            #020617
        );

    color: var(--text);

    font-family:
        Tahoma,
        "Segoe UI",
        sans-serif;

    line-height: 1.7;
}


/* =========================================================
   LINKS / BUTTONS
========================================================= */

a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   SPACE BACKGROUND
========================================================= */

.space-bg {
    position: fixed;

    inset: 0;

    z-index: -10;

    overflow: hidden;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(37,99,235,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(139,92,246,.1),
            transparent 30%
        );
}


.stars {
    position: absolute;

    inset: -100%;

    opacity: .65;

    background-repeat: repeat;

    animation:
        starsMove 80s linear infinite;
}


.stars-1 {
    background-image:
        radial-gradient(
            1px 1px at 10% 20%,
            white,
            transparent
        ),
        radial-gradient(
            1px 1px at 30% 70%,
            white,
            transparent
        ),
        radial-gradient(
            1px 1px at 60% 40%,
            white,
            transparent
        ),
        radial-gradient(
            1px 1px at 90% 80%,
            white,
            transparent
        );

    background-size: 250px 250px;
}


.stars-2 {
    opacity: .35;

    background-image:
        radial-gradient(
            2px 2px at 20% 30%,
            #38bdf8,
            transparent
        ),
        radial-gradient(
            2px 2px at 70% 60%,
            #8b5cf6,
            transparent
        );

    background-size: 400px 400px;

    animation-duration: 120s;
}


.stars-3 {
    opacity: .2;

    background-image:
        radial-gradient(
            3px 3px at 40% 50%,
            #22d3ee,
            transparent
        );

    background-size: 550px 550px;

    animation-duration: 160s;
}


@keyframes starsMove {

    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(250px,250px,0);
    }
}


/* =========================================================
   NEBULA
========================================================= */

.nebula {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .16;
}


.nebula-1 {
    top: -250px;
    right: -200px;

    background:
        radial-gradient(
            circle,
            #2563eb,
            transparent 70%
        );
}


.nebula-2 {
    bottom: -300px;
    left: -200px;

    background:
        radial-gradient(
            circle,
            #7c3aed,
            transparent 70%
        );
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;

    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: 20px auto 0;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(2,6,23,.68);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 15px 45px rgba(0,0,0,.25);

    z-index: 100;
}


.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: max-content;
}


.brand-logo {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    font-size: 25px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );

    box-shadow:
        0 0 30px rgba(37,99,235,.35);
}


.brand-text {
    display: flex;

    flex-direction: column;
}


.brand-text strong {
    font-size: 18px;

    letter-spacing: .5px;
}


.brand-text span {
    color: var(--muted);

    font-size: 11px;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-links a {
    position: relative;

    color: #cbd5e1;

    font-size: 14px;

    transition:
        color .25s ease;
}


.nav-links a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple)
        );

    transition:
        width .25s ease;
}


.nav-links a:hover {
    color: white;
}


.nav-links a:hover::after {
    width: 100%;
}


.nav-actions {
    display: flex;

    align-items: center;

    gap: 9px;
}


.nav-actions button {
    border: none;

    padding: 10px 17px;

    border-radius: 13px;

    cursor: pointer;

    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.nav-actions button:hover {
    transform: translateY(-2px);
}


.nav-login {
    color: white;

    background:
        rgba(255,255,255,.07);

    border: 1px solid var(--border) !important;
}


.nav-register {
    color: #020617;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    box-shadow:
        0 8px 25px rgba(34,211,238,.2);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: min(
        1200px,
        calc(100% - 40px)
    );

    min-height: 700px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    gap: 60px;

    padding: 80px 0;
}


.hero-content {
    animation:
        heroIn .8s ease both;
}


@keyframes heroIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


.status-badge {
    width: max-content;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    margin-bottom: 22px;

    border: 1px solid
        rgba(56,189,248,.25);

    border-radius: 999px;

    background:
        rgba(56,189,248,.08);

    color: #bae6fd;

    font-size: 13px;
}


.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 14px var(--green);

    animation:
        pulse 1.8s infinite;
}


@keyframes pulse {

    50% {
        opacity: .35;

        transform: scale(.7);
    }
}


.hero h1 {
    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    line-height: 1.08;

    letter-spacing: -3px;

    margin-bottom: 25px;
}


.hero h1 span {
    background:
        linear-gradient(
            90deg,
            #38bdf8,
            #818cf8,
            #c084fc
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 620px;

    color: #cbd5e1;

    font-size: 18px;

    line-height: 2;

    margin-bottom: 30px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 35px;
}


.primary-btn,
.secondary-btn {
    border: none;

    border-radius: 15px;

    padding: 15px 23px;

    font-size: 16px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.primary-btn {
    color: #020617;

    background:
        linear-gradient(
            135deg,
            #38bdf8,
            #22d3ee
        );

    box-shadow:
        0 12px 35px
        rgba(34,211,238,.25);
}


.primary-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 45px
        rgba(34,211,238,.4);
}


.secondary-btn {
    color: white;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid var(--border);

    backdrop-filter:
        blur(10px);
}


.secondary-btn:hover {
    transform: translateY(-4px);

    background:
        rgba(255,255,255,.1);
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.hero-stat {
    min-width: 175px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    border-radius: 16px;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.035);
}


.hero-stat > strong {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        rgba(56,189,248,.1);

    font-size: 21px;
}


.hero-stat div {
    display: flex;

    flex-direction: column;
}


.hero-stat b {
    font-size: 13px;
}


.hero-stat span {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 550px;

    display: grid;

    place-items: center;

    animation:
        visualIn 1s ease .15s both;
}


@keyframes visualIn {

    from {
        opacity: 0;

        transform:
            scale(.85);
    }

    to {
        opacity: 1;

        transform:
            scale(1);
    }
}


.planet {
    position: relative;

    width: 280px;
    height: 280px;

    display: grid;

    place-items: center;
}


.planet-glow {
    position: absolute;

    inset: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56,189,248,.3),
            rgba(99,102,241,.12),
            transparent 70%
        );

    filter: blur(15px);

    animation:
        planetGlow 3s ease-in-out infinite;
}


@keyframes planetGlow {

    50% {
        transform: scale(1.1);

        opacity: .7;
    }
}


.planet-body {
    width: 210px;
    height: 210px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    font-size: 130px;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(255,255,255,.2),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #0ea5e9,
            #1d4ed8 55%,
            #312e81
        );

    box-shadow:
        inset -30px -30px 50px
            rgba(0,0,0,.35),

        inset 15px 15px 30px
            rgba(255,255,255,.15),

        0 0 90px
            rgba(37,99,235,.45);

    animation:
        planetFloat 5s ease-in-out infinite;
}


@keyframes planetFloat {

    50% {
        transform:
            translateY(-14px)
            rotate(3deg);
    }
}


/* =========================================================
   ORBITS
========================================================= */

.orbit {
    position: absolute;

    border: 1px solid
        rgba(56,189,248,.18);

    border-radius: 50%;

    transform:
        rotate(-20deg);
}


.orbit-1 {
    width: 360px;
    height: 190px;
}


.orbit-2 {
    width: 470px;
    height: 260px;

    border-color:
        rgba(139,92,246,.16);

    transform:
        rotate(45deg);
}


.orbit-3 {
    width: 540px;
    height: 340px;

    border-color:
        rgba(34,211,238,.1);

    transform:
        rotate(-55deg);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 150px;

    padding: 13px 15px;

    border-radius: 17px;

    border:
        1px solid rgba(255,255,255,.13);

    background:
        rgba(15,23,42,.72);

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.3);

    animation:
        cardFloat 4s ease-in-out infinite;
}


.floating-card > span {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        rgba(56,189,248,.1);

    font-size: 20px;
}


.floating-card div {
    display: flex;

    flex-direction: column;
}


.floating-card small {
    color: var(--muted);

    font-size: 10px;
}


.floating-card strong {
    font-size: 15px;
}


.card-score {
    top: 95px;
    right: 10px;
}


.card-cup {
    bottom: 95px;
    left: 10px;

    animation-delay: -1.2s;
}


.card-level {
    top: 35%;
    left: 0;

    animation-delay: -2.2s;
}


@keyframes cardFloat {

    50% {
        transform:
            translateY(-12px);
    }
}


/* =========================================================
   GAMES
========================================================= */

.games-section,
.features-section {
    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: 80px auto;
}


.section-heading {
    text-align: center;

    margin-bottom: 40px;
}


.section-heading > span {
    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.section-heading h2 {
    margin: 8px 0;

    font-size:
        clamp(
            30px,
            4vw,
            45px
        );
}


.section-heading p {
    color: var(--muted);
}


.games-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 18px;
}


.game-card {
    position: relative;

    min-height: 270px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.game-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -80px;
    left: -80px;

    border-radius: 50%;

    background:
        rgba(56,189,248,.12);

    filter: blur(40px);
}


.game-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(56,189,248,.3);

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.35);
}


.active-game {
    border-color:
        rgba(56,189,248,.3);

    background:
        linear-gradient(
            145deg,
            rgba(14,165,233,.12),
            rgba(139,92,246,.05)
        );
}


.game-card-icon {
    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    font-size: 32px;

    background:
        rgba(56,189,248,.1);

    border:
        1px solid
        rgba(56,189,248,.12);
}


.game-card-content h3 {
    margin: 10px 0 5px;

    font-size: 25px;
}


.game-card-content p {
    color: #94a3b8;

    font-size: 13px;

    min-height: 50px;
}


.game-card-content button {
    margin-top: 15px;

    padding: 11px 17px;

    border: none;

    border-radius: 12px;

    color: #020617;

    background:
        var(--blue);

    font-weight: 800;

    cursor: pointer;

    transition:
        transform .2s ease;
}


.game-card-content button:hover {
    transform:
        translateX(-4px);
}


.game-status {
    display: inline-block;

    font-size: 11px;

    padding: 4px 9px;

    border-radius: 999px;
}


.game-status.active {
    color: #86efac;

    background:
        rgba(34,197,94,.1);
}


.game-status.soon {
    color: #fbbf24;

    background:
        rgba(251,191,36,.1);
}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 15px;
}


.feature {
    padding: 28px 22px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        rgba(255,255,255,.035);

    transition:
        transform .25s ease,
        background .25s ease;
}


.feature:hover {
    transform:
        translateY(-6px);

    background:
        rgba(255,255,255,.06);
}


.feature > div {
    width: 60px;
    height: 60px;

    margin:
        0 auto 15px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(56,189,248,.12),
            rgba(139,92,246,.12)
        );

    font-size: 28px;
}


.feature h3 {
    margin-bottom: 7px;
}


.feature p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    width: min(
        1000px,
        calc(100% - 40px)
    );

    margin:
        100px auto;
}


.cta-box {
    position: relative;

    overflow: hidden;

    padding:
        70px 30px;

    text-align: center;

    border:
        1px solid
        rgba(56,189,248,.18);

    border-radius:
        32px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37,99,235,.25),
            transparent 55%
        ),
        rgba(15,23,42,.65);

    box-shadow:
        var(--shadow);
}


.cta-icon {
    font-size: 45px;

    margin-bottom: 10px;

    animation:
        rocket 2.5s ease-in-out infinite;
}


@keyframes rocket {

    50% {
        transform:
            translateY(-8px)
            rotate(-3deg);
    }
}


.cta-box h2 {
    font-size:
        clamp(
            28px,
            5vw,
            45px
        );

    margin-bottom: 8px;
}


.cta-box p {
    color: var(--muted);

    margin-bottom: 25px;
}


.cta-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin:
        0 auto;

    padding:
        30px 0 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color: var(--muted);

    font-size: 12px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 8px;

    color: white;

    font-size: 16px;
}


.footer-links {
    display: flex;

    gap: 18px;
}


.footer-links a:hover {
    color: var(--blue);
}


/* =========================================================
   NOISE
========================================================= */

body::after {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 999;

    opacity: .025;

    background-image:
        url(
            "data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .nav-links {
        display: none;
    }


    .hero {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 60px;
    }


    .status-badge {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions,
    .hero-stats {
        justify-content: center;
    }


    .hero-visual {
        min-height: 500px;
    }


    .games-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .features-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .navbar {
        width:
            calc(100% - 20px);

        margin-top: 10px;

        padding: 10px;
    }


    .brand-text span {
        display: none;
    }


    .brand-logo {
        width: 42px;
        height: 42px;
    }


    .nav-actions button {
        padding:
            8px 11px;

        font-size: 12px;
    }


    .hero {
        width:
            calc(100% - 28px);

        padding:
            50px 0;

        min-height: auto;
    }


    .hero h1 {
        font-size:
            clamp(
                43px,
                14vw,
                65px
            );

        letter-spacing:
            -2px;
    }


    .hero-description {
        font-size: 14px;

        line-height: 1.9;
    }


    .hero-actions {
        flex-direction: column;
    }


    .primary-btn,
    .secondary-btn {
        width: 100%;
    }


    .hero-stats {
        flex-direction: column;
    }


    .hero-stat {
        width: 100%;

        text-align: right;
    }


    .hero-visual {
        min-height: 430px;
    }


    .planet {
        transform:
            scale(.72);
    }


    .orbit-1 {
        transform:
            rotate(-20deg)
            scale(.75);
    }


    .orbit-2,
    .orbit-3 {
        transform:
            rotate(40deg)
            scale(.65);
    }


    .floating-card {
        transform:
            scale(.82);
    }


    .card-score {
        right: -5px;
        top: 55px;
    }


    .card-cup {
        left: -5px;
        bottom: 60px;
    }


    .card-level {
        left: 10px;
        top: 40%;
    }


    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }


    .games-section,
    .features-section {
        width:
            calc(100% - 28px);
    }


    .cta-section {
        width:
            calc(100% - 28px);
    }


    .cta-box {
        padding:
            50px 20px;
    }


    footer {
        width:
            calc(100% - 28px);

        flex-direction:
            column;

        text-align: center;
    }


    .footer-links {
        flex-wrap: wrap;

        justify-content: center;
    }

}





/* =========================================
   BALE CHANNEL
========================================= */

.bale-section {

    width: 100%;

    max-width: 1200px;

    margin: 80px auto;

    padding: 0 24px;

}


.bale-box {

    position: relative;

    display: flex;

    align-items: center;

    gap: 24px;

    padding: 30px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.18),
            rgba(15, 23, 42, 0.85)
        );

    border:
        1px solid
        rgba(96, 165, 250, 0.25);

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.35);

    overflow: hidden;

}


.bale-box::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -80px;

    top: -100px;

    border-radius: 50%;

    background:
        rgba(59, 130, 246, 0.15);

    filter: blur(20px);

}


.bale-icon {

    position: relative;

    width: 72px;

    height: 72px;

    min-width: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    font-size: 34px;

    background:
        rgba(37, 99, 235, 0.2);

    border:
        1px solid
        rgba(96, 165, 250, 0.3);

}


.bale-content {

    position: relative;

    flex: 1;

}


.bale-badge {

    display: inline-block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #60a5fa;

}


.bale-content h2 {

    margin: 0 0 8px;

    font-size: 24px;

    color: #fff;

}


.bale-content p {

    margin: 0;

    max-width: 650px;

    line-height: 1.9;

    color: #94a3b8;

}


.bale-button {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 170px;

    padding: 14px 22px;

    border-radius: 16px;

    text-decoration: none;

    font-weight: 700;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #3b82f6
        );

    box-shadow:
        0 10px 30px
        rgba(37, 99, 235, 0.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.bale-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(37, 99, 235, 0.4);

}


.bale-button span {

    transition:
        transform .25s ease;

}


.bale-button:hover span {

    transform:
        translateX(-4px);

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .bale-box {

        flex-direction: column;

        align-items: stretch;

        text-align: center;

        padding: 25px 20px;

    }


    .bale-icon {

        margin:
            0 auto;

    }


    .bale-content p {

        margin:
            0 auto;

    }


    .bale-button {

        width: 100%;

    }

}