/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #08080d;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --bg: #08080d;
    --bg-secondary: #0d0d15;
    --card: #11111a;
    --card-light: #171722;

    --text: #ffffff;
    --text-secondary: #a7a7b5;
    --text-muted: #737381;

    --primary: #7c3cff;
    --primary-light: #9f6bff;
    --secondary: #ec2cff;
    --pink: #ff3d81;

    --border: rgba(255, 255, 255, 0.08);

    --gradient: linear-gradient(
        135deg,
        #7c3cff 0%,
        #ec2cff 50%,
        #ff3d81 100%
    );

    --container: 1200px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: 0.3s ease;
}


/* =========================================================
   COMMON
========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}

.section-padding {
    padding: 110px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-label {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #b891ff;

    margin-bottom: 15px;
}

.section-heading h2,
.product-content h2,
.gifts-content h2,
.about-content h2 {
    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.section-heading p,
.product-content > p,
.gifts-content > p,
.about-content > p {
    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;
}

.gradient-text {
    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-btn,
.secondary-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 100px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);

    white-space: nowrap;
}

.primary-btn {

    background: var(--gradient);

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(124, 60, 255, 0.25);
}

.primary-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(124, 60, 255, 0.4);
}

.secondary-btn {

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.04);

    color: #ffffff;
}

.secondary-btn:hover {

    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.16);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom:
        1px solid transparent;

    transition:
        background var(--transition),
        border var(--transition),
        backdrop-filter var(--transition);
}

.navbar.scrolled {

    background:
        rgba(8, 8, 13, 0.85);

    backdrop-filter: blur(20px);

    border-color: var(--border);
}

.nav-container {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* Logo */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -0.5px;
}

.logo > span:last-child > span {

    color: #a46dff;
}

.logo-icon {

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--gradient);

    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(124, 60, 255, 0.35);
}


/* Navigation */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 32px;
}

.nav-link {

    position: relative;

    color: var(--text-secondary);

    font-size: 14px;

    font-weight: 500;

    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {

    color: #ffffff;
}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 5px;

    background: var(--gradient);

    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}


/* Nav actions */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 20px;
}

.login-btn {

    color: var(--text-secondary);

    font-size: 14px;

    font-weight: 600;

    transition: color var(--transition);
}

.login-btn:hover {

    color: #ffffff;
}

.nav-btn {

    min-height: 44px;

    padding: 0 20px;
}


/* Mobile menu */

.mobile-menu-btn {

    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}

.mobile-menu-btn span {

    display: block;

    width: 24px;
    height: 2px;

    background: #ffffff;

    border-radius: 5px;

    transition: var(--transition);
}

.mobile-menu {

    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 850px;

    padding-top: 150px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero::before {

    content: "";

    position: absolute;

    top: -300px;
    left: 50%;

    width: 700px;
    height: 700px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(124, 60, 255, 0.16),
            transparent 70%
        );

    pointer-events: none;
}

.hero-container {

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    align-items: center;

    gap: 60px;
}


/* Hero content */

.hero-content {

    position: relative;

    z-index: 2;
}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border: 1px solid
        rgba(159, 107, 255, 0.25);

    border-radius: 100px;

    background:
        rgba(124, 60, 255, 0.08);

    color: #bfa3ff;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 25px;
}

.badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #9f6bff;

    box-shadow:
        0 0 15px #9f6bff;

    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero h1 {

    max-width: 700px;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: 1.03;

    letter-spacing: -4px;

    margin-bottom: 25px;
}

.hero-description {

    max-width: 600px;

    color: var(--text-secondary);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 45px;
}

.hero-btn {

    min-height: 56px;

    padding: 0 28px;
}


/* Trust */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 15px;
}

.trust-avatars {

    display: flex;
}

.avatar {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    margin-left: -7px;

    border: 2px solid #08080d;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 700;

    background: var(--gradient);
}

.avatar:first-child {

    margin-left: 0;
}

.avatar-2 {
    background: #e65cff;
}

.avatar-3 {
    background: #6244ff;
}

.avatar-4 {
    background: #ff4b91;
}

.trust-text {

    display: flex;

    flex-direction: column;

    line-height: 1.3;
}

.trust-text strong {

    font-size: 14px;
}

.trust-text span {

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   HERO PHONE
========================================================= */

.hero-visual {

    position: relative;

    min-height: 650px;

    display: flex;

    justify-content: center;

    align-items: center;
}

.phone-wrapper {

    position: relative;

    z-index: 2;
}

.phone-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(236, 44, 255, 0.22),
            rgba(124, 60, 255, 0.1),
            transparent 70%
        );

    filter: blur(20px);
}

.phone {

    position: relative;

    width: 300px;
    height: 600px;

    padding: 9px;

    border-radius: 42px;

    background:
        linear-gradient(
            145deg,
            #252532,
            #0c0c11
        );

    border:
        2px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.7),

        0 0 80px
        rgba(124, 60, 255, 0.2);

    transform:
        rotate(4deg);

    animation:
        phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(4deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(4deg);
    }
}

.phone::before {

    content: "";

    position: absolute;

    top: 8px;
    left: 50%;

    transform: translateX(-50%);

    width: 100px;
    height: 24px;

    border-radius: 20px;

    background: #050507;

    z-index: 5;
}

.phone-header {

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 18px;

    font-size: 9px;

    position: relative;

    z-index: 3;
}

.phone-status {

    display: flex;

    gap: 4px;

    font-size: 7px;
}

.live-screen {

    height: calc(100% - 34px);

    overflow: hidden;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            #2a1735,
            #0e1020
        );

    position: relative;
}

.live-top {

    position: absolute;

    top: 18px;
    left: 15px;
    right: 15px;

    z-index: 4;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.live-profile {

    display: flex;

    align-items: center;

    gap: 8px;
}

.mini-avatar {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--gradient);

    border: 2px solid rgba(255,255,255,.7);

    font-size: 10px;

    font-weight: 700;
}

.live-profile strong {

    display: block;

    font-size: 9px;
}

.live-profile small {

    display: block;

    color: #c0bcc8;

    font-size: 7px;
}

.live-label {

    padding: 5px 8px;

    border-radius: 6px;

    background: #ff315d;

    font-size: 7px;

    font-weight: 800;
}

.fake-video {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            #d448a0 0%,
            #522c74 35%,
            #101327 75%
        );
}

.fake-video::before {

    content: "";

    position: absolute;

    width: 190px;
    height: 300px;

    bottom: -70px;

    border-radius:
        100px 100px 30px 30px;

    background:
        linear-gradient(
            180deg,
            #e5a1c4,
            #6b3d73
        );

    filter: blur(2px);
}

.video-person {

    position: relative;

    z-index: 2;

    width: 110px;
    height: 110px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffd4e9,
            #9a5c91
        );

    color: #ffffff;

    font-size: 38px;

    font-weight: 800;

    box-shadow:
        0 15px 50px
        rgba(0, 0, 0, 0.3);
}

.video-overlay {

    position: absolute;

    bottom: 150px;
    left: 20px;

    z-index: 3;

    padding: 6px 9px;

    border-radius: 6px;

    background:
        rgba(0,0,0,.45);

    backdrop-filter: blur(5px);

    font-size: 7px;

    letter-spacing: 1px;
}

.live-comments {

    position: absolute;

    left: 15px;
    bottom: 85px;

    z-index: 4;

    display: flex;

    flex-direction: column;

    gap: 6px;
}

.comment {

    width: fit-content;

    padding: 5px 8px;

    border-radius: 8px;

    background:
        rgba(0, 0, 0, .35);

    backdrop-filter: blur(6px);

    font-size: 7px;

    color: #eeeeee;
}

.comment b {

    color: #d6b8ff;

    margin-right: 4px;
}

.live-controls {

    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 15px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;
}

.comment-input {

    flex: 1;

    height: 30px;

    display: flex;

    align-items: center;

    padding: 0 10px;

    border-radius: 20px;

    background:
        rgba(0, 0, 0, .35);

    color: #aaa;

    font-size: 7px;
}

.control-circle {

    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .1);

    font-size: 12px;
}

.control-circle.gift {

    background: var(--gradient);
}


/* Floating cards */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background:
        rgba(18, 18, 28, .75);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, .4);

    animation:
        floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.viewers-card {

    top: 120px;
    left: 0;
}

.gift-card {

    right: -10px;
    bottom: 130px;

    animation-delay: 1s;
}

.floating-icon,
.gift-icon {

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(124, 60, 255, .15);
}

.gift-icon {

    background:
        rgba(236, 44, 255, .12);
}

.floating-card small {

    display: block;

    color: var(--text-muted);

    font-size: 9px;
}

.floating-card strong {

    display: block;

    font-size: 13px;
}

.floating-heart {

    position: absolute;

    right: 20px;
    top: 200px;

    font-size: 32px;

    animation:
        heartFloat 3s ease-in-out infinite;
}

@keyframes heartFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-10deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(10deg);
    }
}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background:
        rgba(255,255,255,.015);
}

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding: 45px 0;
}

.stat-item {

    text-align: center;

    border-right:
        1px solid var(--border);
}

.stat-item:last-child {

    border-right: 0;
}

.stat-item strong {

    display: block;

    font-size: 35px;

    letter-spacing: -1px;
}

.stat-item span {

    color: var(--text-muted);

    font-size: 13px;
}


/* =========================================================
   FEATURES
========================================================= */

.features-intro {

    background:
        linear-gradient(
            180deg,
            #08080d,
            #0b0b12
        );
}

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.feature-card {

    padding: 30px;

    min-height: 260px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    transition:
        transform var(--transition),
        border var(--transition),
        background var(--transition);

    position: relative;

    overflow: hidden;
}

.feature-card::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(124,60,255,.15);

    filter: blur(20px);

    transition: var(--transition);
}

.feature-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(159,107,255,.3);

    background:
        rgba(124,60,255,.07);
}

.feature-card:hover::before {

    transform: scale(1.5);
}

.feature-icon {

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(124,60,255,.18),
            rgba(236,44,255,.08)
        );

    border: 1px solid
        rgba(159,107,255,.15);

    font-size: 23px;
}

.feature-card h3 {

    font-size: 18px;

    margin-bottom: 10px;
}

.feature-card p {

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 18px;
}

.feature-card a {

    font-size: 12px;

    font-weight: 700;

    color: #b58dff;
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-section {

    background: #0a0a10;
}

.product-container {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.product-content h2 {

    margin-bottom: 22px;
}

.feature-list {

    list-style: none;

    margin: 30px 0;

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.feature-list li {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    color: #d5d5dc;
}

.feature-list span {

    width: 22px;
    height: 22px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(124,60,255,.15);

    color: #b38cff;

    font-size: 11px;
}


/* Streaming preview */

.streaming-preview {

    min-height: 520px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #19151f,
            #0c0c12
        );

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.35);
}

.stream-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 15px;
}

.stream-user {

    display: flex;

    align-items: center;

    gap: 10px;
}

.stream-avatar {

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--gradient);

    font-size: 12px;

    font-weight: 800;
}

.stream-user strong {

    display: block;

    font-size: 12px;
}

.stream-user small {

    display: block;

    color: var(--text-muted);

    font-size: 10px;
}

.stream-live {

    padding: 6px 9px;

    border-radius: 7px;

    background:
        rgba(255,49,93,.12);

    color: #ff577a;

    font-size: 9px;

    font-weight: 800;
}

.stream-video {

    height: 340px;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 50% 30%,
            #c05296,
            #512f69 35%,
            #151526 80%
        );
}

.stream-person {

    width: 150px;
    height: 150px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffd5e9,
            #91517f
        );

    font-size: 50px;

    font-weight: 800;

    box-shadow:
        0 20px 70px
        rgba(0,0,0,.35);
}

.stream-badge {

    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 9px;

    border-radius: 6px;

    background:
        rgba(0,0,0,.35);

    backdrop-filter: blur(5px);

    font-size: 8px;
}

.stream-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 15px;
}

.stream-chat {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.stream-chat p {

    color: #b4b4bf;

    font-size: 10px;
}

.stream-chat b {

    color: #d7baff;
}

.stream-actions {

    display: flex;

    align-items: end;

    gap: 7px;
}

.stream-actions button {

    width: 36px;
    height: 36px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255,255,255,.04);

    color: white;

    transition: var(--transition);
}

.stream-actions button:hover {

    background:
        rgba(124,60,255,.25);

    transform: translateY(-3px);
}


/* =========================================================
   PK BATTLE
========================================================= */

.battle-section {

    background:
        radial-gradient(
            circle at center,
            rgba(124,60,255,.08),
            transparent 60%
        );
}

.battle-card {

    min-height: 420px;

    display: grid;

    grid-template-columns:
        1fr .7fr 1fr;

    align-items: center;

    gap: 30px;

    padding: 50px;

    border: 1px solid var(--border);

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #15131e,
            #0c0c12
        );

    position: relative;

    overflow: hidden;
}

.battle-card::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,.1),
            transparent
        );
}

.battle-player {

    text-align: center;

    position: relative;

    z-index: 2;
}

.battle-avatar {

    width: 130px;
    height: 130px;

    display: grid;

    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    font-size: 42px;

    font-weight: 800;

    border: 5px solid rgba(255,255,255,.1);

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.35);
}

.player-one .battle-avatar {

    background:
        linear-gradient(
            145deg,
            #6342ff,
            #2c1b77
        );
}

.player-two .battle-avatar {

    background:
        linear-gradient(
            145deg,
            #ff3d9a,
            #711f63
        );
}

.battle-player h3 {

    font-size: 22px;

    margin-bottom: 3px;
}

.battle-player > span {

    color: var(--text-muted);

    font-size: 12px;
}

.score {

    margin-top: 15px;

    font-size: 28px;

    font-weight: 800;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.battle-center {

    text-align: center;

    position: relative;

    z-index: 3;
}

.battle-timer {

    color: #c0a5ff;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 10px;
}

.vs {

    width: 85px;
    height: 85px;

    display: grid;

    place-items: center;

    margin: auto;

    border-radius: 50%;

    background: var(--gradient);

    font-size: 22px;

    font-weight: 900;

    box-shadow:
        0 15px 50px
        rgba(124,60,255,.35);
}

.battle-progress {

    height: 6px;

    margin: 20px 0 10px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.08);

    overflow: hidden;
}

.battle-progress span {

    display: block;

    width: 58%;

    height: 100%;

    border-radius: inherit;

    background: var(--gradient);

    animation:
        progressAnimation 3s infinite alternate;
}

@keyframes progressAnimation {

    from {
        width: 45%;
    }

    to {
        width: 65%;
    }
}

.battle-center small {

    color: var(--text-muted);

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   GIFTS
========================================================= */

.gifts-section {

    background: #0a0a10;
}

.gifts-container {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.earning-box {

    margin-top: 30px;

    width: fit-content;

    min-width: 270px;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(124,60,255,.06);
}

.earning-box span {

    display: block;

    color: var(--text-muted);

    font-size: 11px;

    margin-bottom: 8px;
}

.earning-box strong {

    display: block;

    font-size: 32px;

    margin-bottom: 4px;
}

.earning-box small {

    color: #8ee6a5;

    font-size: 11px;
}

.gift-showcase {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.gift-item {

    min-height: 170px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 10px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.015)
        );

    font-size: 45px;

    transition:
        transform var(--transition),
        background var(--transition);
}

.gift-item:hover {

    transform:
        translateY(-8px)
        scale(1.02);

    background:
        rgba(124,60,255,.08);
}

.gift-item span {

    color: var(--text-secondary);

    font-size: 11px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(124,60,255,.07),
            transparent 40%
        );
}

.about-card {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 70px;

    align-items: center;

    padding: 60px;

    border: 1px solid var(--border);

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #13121a,
            #0c0c11
        );

    overflow: hidden;
}

.about-content h2 {

    font-size:
        clamp(35px, 4vw, 52px);
}

.about-features {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    margin-top: 30px;
}

.about-features div {

    color: var(--text-secondary);

    font-size: 12px;

    display: flex;

    align-items: center;

    gap: 8px;
}

.about-features strong {

    color: #a77aff;
}


/* Dashboard */

.dashboard-preview {

    border: 1px solid var(--border);

    border-radius: 20px;

    background:
        #0b0b10;

    overflow: hidden;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.35);
}

.dashboard-header {

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid var(--border);

    color: #bbb;

    font-size: 10px;
}

.dashboard-header span:last-child {

    color: #77df96;
}

.dashboard-body {

    min-height: 310px;

    display: flex;
}

.dashboard-sidebar {

    width: 55px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 25px;

    padding-top: 20px;

    border-right: 1px solid var(--border);

    color: #777;

    font-size: 13px;
}

.dashboard-main {

    flex: 1;

    padding: 20px;
}

.dashboard-stats {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;
}

.dashboard-stats > div {

    padding: 15px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255,255,255,.025);
}

.dashboard-stats small {

    display: block;

    color: #777;

    font-size: 8px;
}

.dashboard-stats strong {

    font-size: 17px;
}

.dashboard-chart {

    margin-top: 15px;

    height: 170px;

    padding: 15px;

    border: 1px solid var(--border);

    border-radius: 12px;
}

.dashboard-chart > span {

    color: #aaa;

    font-size: 9px;
}

.chart-lines {

    height: 115px;

    margin-top: 10px;

    display: flex;

    align-items: end;

    gap: 12px;
}

.chart-lines i {

    flex: 1;

    display: block;

    border-radius:
        5px 5px 0 0;

    background: var(--gradient);

    opacity: .8;
}

.chart-lines i:nth-child(1) {
    height: 35%;
}

.chart-lines i:nth-child(2) {
    height: 55%;
}

.chart-lines i:nth-child(3) {
    height: 42%;
}

.chart-lines i:nth-child(4) {
    height: 80%;
}

.chart-lines i:nth-child(5) {
    height: 95%;
}


/* =========================================================
   PRICING
========================================================= */

/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
    position: relative;
    padding: 110px 0;
    background: #050505;
    overflow: hidden;
}


/* Background glow */

.pricing-section::before {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;
    left: 50%;

    transform: translateX(-50%);

    background: radial-gradient(
        circle,
        rgba(110, 80, 255, 0.16),
        transparent 70%
    );

    pointer-events: none;
}


.pricing-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.pricing-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 65px;
}


.pricing-heading .section-label {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #9b7cff;

    margin-bottom: 18px;
}


.pricing-heading h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 700;

    color: #ffffff;

    letter-spacing: -2px;
}


.gradient-text {
    background: linear-gradient(
        90deg,
        #8d6bff,
        #c084fc,
        #6ee7f9
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.pricing-heading p {
    margin: 22px auto 0;

    max-width: 600px;

    color: #999999;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    max-width: 1180px;

    margin: 0 auto;

    align-items: stretch;
}


/* =========================================
   CARD
========================================= */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 570px;

    padding: 38px 32px 32px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 22px;

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.pricing-card:hover {
    transform: translateY(-8px);

    border-color: rgba(157, 124, 255, 0.45);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(120, 90, 255, 0.08);
}


/* =========================================
   POPULAR CARD
========================================= */

.pricing-card.popular {
    border: 1px solid rgba(145, 112, 255, 0.65);

    background:
        linear-gradient(
            180deg,
            rgba(116, 87, 255, 0.13),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 0 0 1px rgba(145, 112, 255, 0.08),
        0 25px 80px rgba(79, 55, 180, 0.16);

    transform: translateY(-12px);
}


.pricing-card.popular:hover {
    transform: translateY(-18px);
}


/* =========================================
   POPULAR LABEL
========================================= */

.popular-label {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translate(-50%, -50%);

    padding: 8px 18px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #7656ff,
        #a678ff
    );

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    white-space: nowrap;

    box-shadow:
        0 8px 25px rgba(113, 78, 255, 0.35);
}


/* =========================================
   CARD TOP
========================================= */

.pricing-card-top h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 25px;

    font-weight: 650;
}


.pricing-card-top p {
    margin: 0;

    min-height: 52px;

    color: #8e8e8e;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   PRICE
========================================= */

.price-wrapper {
    margin-top: 30px;
}


.price {
    display: flex;
    align-items: baseline;

    color: #ffffff;

    font-size: 48px;

    font-weight: 700;

    line-height: 1;
}


.price .currency {
    margin-right: 5px;

    font-size: 24px;

    color: #d4d4d4;
}


.price small {
    margin-left: 6px;

    color: #777777;

    font-size: 14px;

    font-weight: 400;
}


.enterprise-price {
    font-size: 42px;
}


.price-note {
    display: block;

    margin-top: 10px;

    color: #707070;

    font-size: 12px;
}


/* =========================================
   DIVIDER
========================================= */

.pricing-divider {
    width: 100%;

    height: 1px;

    margin: 28px 0;

    background: rgba(255, 255, 255, 0.08);
}


/* =========================================
   FEATURES
========================================= */

.features-title {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;
}


.pricing-features {
    list-style: none;

    padding: 0;

    margin: 0;
}


.pricing-features li {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 15px;

    color: #a5a5a5;

    font-size: 14px;

    line-height: 1.5;
}


.feature-check {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: rgba(130, 100, 255, 0.14);

    color: #a889ff;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================
   BUTTON
========================================= */

.pricing-button-wrapper {
    margin-top: auto;

    padding-top: 30px;
}


.pricing-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 52px;

    padding: 0 20px;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.25);

    transform: translateY(-2px);
}


.pricing-card.popular .pricing-btn {
    border: none;

    background: linear-gradient(
        90deg,
        #7555ff,
        #9a72ff
    );

    box-shadow:
        0 10px 30px rgba(117, 85, 255, 0.25);
}


.pricing-card.popular .pricing-btn:hover {
    background: linear-gradient(
        90deg,
        #8467ff,
        #aa87ff
    );
}


.btn-arrow {
    margin-left: 10px;

    font-size: 18px;

    transition: transform 0.25s ease;
}


.pricing-btn:hover .btn-arrow {
    transform: translateX(4px);
}


/* =========================================
   EMPTY
========================================= */

.pricing-empty {
    grid-column: 1 / -1;

    text-align: center;

    padding: 60px;

    color: #888888;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .pricing-section {
        padding: 80px 20px;
    }

    .pricing-heading {
        margin-bottom: 50px;
    }

    .pricing-heading h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .pricing-heading p {
        font-size: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .pricing-card {
        min-height: auto;

        padding: 32px 25px 25px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

}
/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 30px 0 110px;
}

.cta-card {

    position: relative;

    overflow: hidden;

    padding: 90px 40px;

    text-align: center;

    border: 1px solid
        rgba(159,107,255,.2);

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(124,60,255,.18),
            rgba(124,60,255,.05) 35%,
            transparent 70%
        ),
        #0d0c14;
}

.cta-glow {

    position: absolute;

    width: 400px;
    height: 400px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    background:
        rgba(236,44,255,.08);

    filter: blur(80px);

    pointer-events: none;
}

.cta-card > *:not(.cta-glow) {

    position: relative;

    z-index: 2;
}

.cta-card h2 {

    max-width: 700px;

    margin: 0 auto 20px;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.cta-card h2 span {

    display: inline;

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.cta-card p {

    max-width: 550px;

    margin: 0 auto 30px;

    color: var(--text-secondary);

    font-size: 15px;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: #0a0a10;
}

.contact-container {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;

    align-items: start;
}

.contact-content h2 {

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.1;
}

.contact-info {

    margin-top: 40px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-item > span {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        rgba(124,60,255,.12);

    color: #c09cff;
}

.contact-item small {

    display: block;

    color: var(--text-muted);

    font-size: 10px;
}

.contact-item strong {

    display: block;

    font-size: 13px;

    margin-top: 2px;
}

.contact-form {

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(255,255,255,.025);
}

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {

    margin-bottom: 18px;
}

.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #d0d0d8;

    font-size: 11px;

    font-weight: 600;
}

.form-group input,
.form-group textarea {

    width: 100%;

    border: 1px solid var(--border);

    outline: none;

    border-radius: 10px;

    background:
        rgba(255,255,255,.035);

    color: #ffffff;

    font-size: 12px;

    padding: 14px;

    transition:
        border var(--transition),
        background var(--transition);
}

.form-group textarea {

    resize: vertical;

    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #5f5f6b;
}

.form-group input:focus,
.form-group textarea:focus {

    border-color:
        rgba(159,107,255,.5);

    background:
        rgba(124,60,255,.04);
}

.submit-btn {

    border: 0;

    width: 100%;

    font-size: 13px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding-top: 70px;

    background: #06060a;

    border-top:
        1px solid var(--border);
}

.footer-container {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand p {

    max-width: 300px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.8;

    margin: 20px 0;
}

.social-links {

    display: flex;

    gap: 8px;
}

.social-links a {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    border-radius: 9px;

    color: #999;

    font-size: 11px;

    transition: var(--transition);
}

.social-links a:hover {

    color: white;

    background:
        rgba(124,60,255,.15);

    border-color:
        rgba(159,107,255,.3);
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {

    font-size: 13px;

    margin-bottom: 5px;
}

.footer-column a {

    color: var(--text-muted);

    font-size: 11px;

    transition: color var(--transition);
}

.footer-column a:hover {

    color: #ffffff;
}

.footer-bottom {

    border-top:
        1px solid var(--border);

    padding: 20px 0;
}

.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    color: #5e5e69;

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 20px;
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .about-card {
        padding: 40px;
    }

}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {

        position: absolute;

        top: 82px;
        left: 20px;
        right: 20px;

        padding: 20px;

        border:
            1px solid var(--border);

        border-radius: 18px;

        background:
            rgba(14,14,22,.97);

        backdrop-filter: blur(20px);

        display: none;

        flex-direction: column;

        gap: 5px;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {

        padding: 13px;

        border-radius: 8px;

        color: var(--text-secondary);

        font-size: 14px;
    }

    .mobile-menu a:hover {
        background:
            rgba(255,255,255,.04);

        color: white;
    }

    .mobile-menu .primary-btn {
        margin-top: 10px;
        color: white;
        text-align: center;
    }

    .hero {
        min-height: auto;

        padding-top: 140px;

        padding-bottom: 80px;
    }

    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero-description {
        max-width: 650px;
    }

    .hero-visual {
        min-height: 620px;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 30px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--border);
        padding-top: 25px;
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid var(--border);
        padding-top: 25px;
    }

    .product-container,
    .gifts-container,
    .contact-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .product-content,
    .gifts-content {
        max-width: 700px;
    }

    .battle-card {

        grid-template-columns:
            1fr 1fr;

        padding: 35px;
    }

    .battle-center {

        grid-column: 1 / -1;

        grid-row: 1;
    }

    .battle-player {
        grid-row: 2;
    }

    .battle-card::before {
        display: none;
    }

    .about-card {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .pricing-grid {

        grid-template-columns: 1fr;

        max-width: 500px;

        margin: auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-7px);
    }

    .footer-container {

        grid-template-columns:
            2fr 1fr 1fr;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .section-padding {
        padding: 75px 0;
    }

    .hero {

        padding-top: 125px;

        padding-bottom: 60px;
    }

    .hero h1 {

        font-size: 44px;

        letter-spacing: -2.5px;
    }

    .hero-description {

        font-size: 14px;

        line-height: 1.7;
    }

    .hero-buttons {

        width: 100%;

        flex-direction: column;
    }

    .hero-btn {

        width: 100%;
    }

    .hero-trust {

        justify-content: center;
    }

    .hero-visual {

        min-height: 550px;

        transform:
            scale(.85);
    }

    .phone {

        width: 270px;
        height: 540px;
    }

    .viewers-card {

        left: -5px;
        top: 90px;

        transform: scale(.85);
    }

    .gift-card {

        right: -5px;
        bottom: 100px;

        transform: scale(.85);
    }

    .floating-heart {
        display: none;
    }

    .stats-grid {

        grid-template-columns:
            1fr 1fr;

        padding: 35px 0;
    }

    .stat-item {

        border-right: 1px solid var(--border);

        padding: 0 10px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {

        border-top:
            1px solid var(--border);

        padding-top: 25px;
    }

    .stat-item strong {
        font-size: 26px;
    }

    .stat-item span {
        font-size: 10px;
    }

    .section-heading {

        margin-bottom: 40px;
    }

    .section-heading h2,
    .product-content h2,
    .gifts-content h2,
    .about-content h2 {

        font-size: 36px;

        letter-spacing: -1.5px;
    }

    .section-heading p {

        font-size: 13px;
    }

    .features-grid {

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .feature-card {

        min-height: auto;

        padding: 25px;
    }

    .product-container {

        gap: 35px;
    }

    .streaming-preview {

        padding: 10px;

        min-height: 430px;
    }

    .stream-video {

        height: 280px;
    }

    .stream-person {

        width: 110px;
        height: 110px;

        font-size: 35px;
    }

    .battle-card {

        grid-template-columns:
            1fr 1fr;

        padding: 25px 15px;

        gap: 10px;
    }

    .battle-avatar {

        width: 90px;
        height: 90px;

        font-size: 30px;
    }

    .battle-player h3 {

        font-size: 17px;
    }

    .score {

        font-size: 22px;
    }

    .vs {

        width: 65px;
        height: 65px;

        font-size: 17px;
    }

    .gift-showcase {

        grid-template-columns:
            repeat(2,1fr);
    }

    .gift-item {

        min-height: 135px;

        font-size: 35px;
    }

    .about-card {

        padding: 25px;

        border-radius: 22px;
    }

    .about-features {

        grid-template-columns: 1fr;
    }

    .dashboard-body {

        min-height: 250px;
    }

    .dashboard-stats {

        grid-template-columns: 1fr;
    }

    .dashboard-stats > div {

        padding: 9px;
    }

    .dashboard-stats > div:nth-child(3) {

        display: none;
    }

    .dashboard-chart {

        height: 130px;
    }

    .chart-lines {
        height: 85px;
    }

    .pricing-card {

        padding: 30px 25px;
    }

    .cta-card {

        padding: 65px 20px;
    }

    .cta-card h2 {

        font-size: 38px;
    }

    .cta-buttons {

        flex-direction: column;
    }

    .cta-buttons a {

        width: 100%;
    }

    .contact-form {

        padding: 22px;

        border-radius: 17px;
    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .footer-container {

        grid-template-columns:
            1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {

        grid-column:
            1 / -1;
    }

    .footer-bottom .container {

        flex-direction: column;

        text-align: center;

        gap: 5px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 39px;
    }

    .hero-visual {
        transform: scale(.72);
        margin: -50px 0;
    }

    .gift-showcase {
        gap: 10px;
    }

    .gift-item {
        min-height: 120px;
    }

    .battle-card {
        padding: 20px 8px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }
}