:root {
    --bg-dark: #070913;
    --bg-darker: #04050a;
    --text-main: #ffffff;
    --text-muted: #8e95b3;
    --accent-cyan: #00f0ff;
    --accent-blue: #0066ff;
    --accent-purple: #8a2be2;
    --accent-gold: #e5b35c;
    --accent-gold-light: #ffea9f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-darker);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ========================================= */
/* Canvas & Mouse Glow                       */
/* ========================================= */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
}

.mouse-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
}

/* Background Gradients */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    opacity: 0.5;
    pointer-events: none;
}

.glow-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.top-glow {
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
}

.bottom-glow {
    bottom: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
}

.center-glow {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    background: linear-gradient(90deg, #b0b5c9, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-highlight {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-info {
    font-size: 14px;
    font-weight: 500;
}

.support-text {
    color: var(--text-muted);
    margin-right: 5px;
}

.support-link,
.accent-link {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    position: relative;
    display: inline-block;
}

.link-hover-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent-cyan);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.link-hover-effect:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.support-link:hover,
.accent-link:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0 100px;
    min-height: 70vh;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    z-index: 5;
}

.hero-title {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    perspective: 1000px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 450px;
}

.title-top {
    display: inline-block;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 0%, #c2c7d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    letter-spacing: -2px;
}

.title-bottom {
    display: inline-block;
    font-size: 72px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: -2px;
}

/* Animated Gradient Text */
.animated-gradient-text {
    background: linear-gradient(-45deg,
            #e0e5f5,
            var(--accent-cyan),
            var(--accent-purple),
            #e0e5f5);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 300% center;
    }
}

/* Countdown */
.countdown-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cd-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 85px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 -2px 10px rgba(0, 240, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: default;
}

.cd-box:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 -2px 15px rgba(0, 240, 255, 0.2),
        0 0 20px rgba(0, 240, 255, 0.2);
}

.cd-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.cd-box span {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #e2e8f0;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cd-box:hover span {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.cd-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: capitalize;
}

.cd-colon {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-muted);
    padding-top: 15px;
    opacity: 0.5;
    animation: pulse-opacity 2s infinite;
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

/* Right Illustration: Advanced AI Trading Core */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    perspective: 1200px;
}

.ai-core-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transition: transform 0.1s ease-out;
    /* For mouse parallax */
}

/* Quantum Core 3D Base */
.quantum-core {
    position: absolute;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-45deg);
    animation: quantum-float 6s ease-in-out infinite;
}

@keyframes quantum-float {

    0%,
    100% {
        transform: rotateX(60deg) rotateZ(-45deg) translateZ(0);
    }

    50% {
        transform: rotateX(60deg) rotateZ(-45deg) translateZ(30px);
    }
}

/* Orbits */
.quantum-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transform-style: preserve-3d;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.orbit-1 {
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(0, 240, 255, 0.4);
    animation: spin-orbit 12s linear infinite;
}

.orbit-2 {
    width: 250px;
    height: 250px;
    border-color: rgba(138, 43, 226, 0.4);
    animation: spin-orbit 8s linear infinite reverse;
}

.orbit-3 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(229, 179, 92, 0.3);
    animation: spin-orbit 5s linear infinite;
    box-shadow: 0 0 30px rgba(229, 179, 92, 0.2), inset 0 0 30px rgba(229, 179, 92, 0.2);
}

@keyframes spin-orbit {
    100% {
        transform: rotateZ(360deg);
    }
}

/* Orbiting Planets/Nodes */
.orbit-planet {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: -6px;
    transform-style: preserve-3d;
}

/* Reverse rotation to face camera */
@keyframes counter-spin-1 {
    100% {
        transform: rotateX(-90deg) rotateY(360deg);
    }
}

@keyframes counter-spin-2 {
    100% {
        transform: rotateX(-90deg) rotateY(-360deg);
    }
}

.planet-cyan {
    background: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan), 0 0 30px var(--accent-cyan);
    animation: counter-spin-1 12s linear infinite reverse;
}

.planet-purple {
    background: #b366ff;
    box-shadow: 0 0 15px #b366ff, 0 0 30px #b366ff;
    left: auto;
    right: -6px;
    animation: counter-spin-1 12s linear infinite reverse;
}

.planet-gold {
    background: var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold), 0 0 30px var(--accent-gold);
    top: -6px;
    left: 50%;
    animation: counter-spin-2 8s linear infinite;
}

/* Core Globe */
.core-globe {
    position: absolute;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    z-index: 10;
}

.globe-inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.4), rgba(0, 0, 0, 0.8));
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), inset 0 0 20px rgba(138, 43, 226, 0.6);
    filter: blur(2px);
    animation: pulse-core 2s infinite alternate;
}

@keyframes pulse-core {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    }

    100% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(0, 240, 255, 1);
    }
}

.globe-grid {
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(0, 240, 255, 0.2) 10px, rgba(0, 240, 255, 0.2) 11px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 240, 255, 0.2) 10px, rgba(0, 240, 255, 0.2) 11px);
    transform: rotateX(90deg) translateZ(-60px);
    /* Stand upright against the 60deg tilt */
    animation: spin-orbit 20s linear infinite;
    mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
}

.solana-logo-core {
    position: relative;
    width: 45px;
    height: 45px;
    z-index: 15;
    /* Reverse parent rotations so logo stands upright to viewer */
    transform: rotateZ(45deg) rotateX(-60deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

/* Holographic Panels */
.holo-panel {
    position: absolute;
    background: rgba(4, 5, 10, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    /* Pill shape */
    padding: 8px 20px 8px 12px;
    display: flex;
    align-items: center;
    color: var(--text-main);
    font-family: var(--font-heading);
    z-index: 20;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 0 15px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: crosshair;
}

.holo-panel:hover {
    transform: scale(1.1) translateZ(40px) !important;
    background: rgba(10, 15, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.panel-glitch {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg) translateX(-150%);
    transition: 0.5s;
}

.holo-panel:hover .panel-glitch {
    transform: skewX(-20deg) translateX(150%);
    transition: 0.5s;
}

.panel-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.panel-icon {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 2px;
}

.panel-value {
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
}

/* Colors & Effects */
.highlight-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.highlight-purple {
    color: #b366ff;
    text-shadow: 0 0 10px rgba(179, 102, 255, 0.6);
}

.highlight-green {
    color: #00ff80;
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.6);
}

.holo-panel:hover .highlight-cyan {
    box-shadow: 0 0 0 transparent;
    /* Force repaint glitch bypass */
    text-shadow: 0 0 20px rgba(0, 240, 255, 1);
}

.holo-panel:hover .highlight-purple {
    text-shadow: 0 0 20px rgba(179, 102, 255, 1);
}

.holo-panel:hover .highlight-green {
    text-shadow: 0 0 20px rgba(0, 255, 128, 1);
}

/* Positioning & Floating Animations */
.panel-1 {
    top: 10%;
    left: -20px;
    animation: float-panel-1 5s ease-in-out infinite;
    border-left: 2px solid var(--accent-cyan);
}

.panel-2 {
    top: 60%;
    right: -40px;
    animation: float-panel-2 6s ease-in-out infinite 1s;
    border-right: 2px solid #b366ff;
}

.panel-3 {
    bottom: 5%;
    left: 15%;
    animation: float-panel-3 4.5s ease-in-out infinite 0.5s;
    border-bottom: 2px solid #00ff80;
}

@keyframes float-panel-1 {

    0%,
    100% {
        transform: translateZ(20px) translateY(0);
    }

    50% {
        transform: translateZ(20px) translateY(-15px);
    }
}

@keyframes float-panel-2 {

    0%,
    100% {
        transform: translateZ(10px) translateY(0);
    }

    50% {
        transform: translateZ(10px) translateY(10px);
    }
}

@keyframes float-panel-3 {

    0%,
    100% {
        transform: translateZ(30px) translateY(0);
    }

    50% {
        transform: translateZ(30px) translateY(-10px);
    }
}

/* Info Section */
.info-section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle-wrapper {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.bot-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.font-bold {
    font-weight: 700;
}

.underline-glow {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    animation: move-line 3s infinite linear;
}

@keyframes move-line {
    0% {
        left: -50px;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #f1f5f9;
}

/* Dashboard Preview & Tilt */
.dashboard-preview {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
    border-radius: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.1s ease-out;
    /* JavaScript mouse track */
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    transition: all 0.3s ease;
}

.dashboard-preview:hover .dashboard-glow {
    background: radial-gradient(circle, rgba(0, 240, 255, 0.35) 0%, transparent 70%);
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 40%);
    border-radius: 16px;
    z-index: 3;
    pointer-events: none;
    transform: translateZ(30px);
}

/* Exclusive Banner */
.exclusive-banner-wrapper {
    margin: 0 auto 15px;
    padding: 2px;
    border-radius: 8px;
    background: linear-gradient(90deg, #7c5c20, #e6c875, #fff5d1, #e6c875, #7c5c20);
    background-size: 200% auto;
    animation: gold-shine 3s linear infinite;
    box-shadow: 0 0 30px rgba(229, 179, 92, 0.2);
    transition: transform 0.3s ease;
}

.exclusive-banner-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(229, 179, 92, 0.4);
}

@keyframes gold-shine {
    to {
        background-position: 200% center;
    }
}

.exclusive-banner {
    background: linear-gradient(to right, #1a1710, #2c2411, #1a1710);
    border-radius: 6px;
    padding: 20px 40px;
}

.banner-inner {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, #e5b35c, #ffea9f, #e5b35c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.pulse-text {
    animation: pulse-text-glow 2s infinite ease-in-out;
}

@keyframes pulse-text-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(229, 179, 92, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(229, 179, 92, 0.9));
    }
}

.exclusive-subtext {
    color: var(--text-muted);
    font-size: 16px;
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* ========================================= */
/* Scroll Reveal Animations                  */
/* ========================================= */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-down {
    transform: translateY(-50px);
}

.reveal-fade {
    transform: scale(0.98);
}

.reveal-zoom {
    transform: scale(0.9);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-top,
    .title-bottom {
        font-size: 52px;
    }

    .ai-core-container {
        transform: scale(0.8);
    }

    .hero-right {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .title-top,
    .title-bottom {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .ai-core-container {
        transform: scale(0.6);
        margin-top: -60px;
        margin-bottom: -60px;
    }

    .countdown-container {
        gap: 8px;
    }

    .cd-box {
        width: 65px;
        height: 75px;
    }

    .cd-box span {
        font-size: 32px;
    }

    .cd-colon {
        font-size: 32px;
        padding-top: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .banner-inner {
        font-size: 18px;
    }

    .exclusive-subtext {
        font-size: 13px;
        text-align: center;
        padding: 0 20px;
    }
}