/* ================================================
   CYUBATO — CONSOLIDATED STYLESHEET
   All landing page styles in one place.
   Optimized for Cloudflare Pages (static deploy)
   ================================================ */

/* ── 1. DESIGN TOKENS ── */
:root {
    /* Core palette */
    --bg-deep: #05050A;
    --bg-surface: #0A0A15;
    --bg-card: rgba(255, 255, 255, 0.03);
    --cyan: #00F0FF;
    --purple: #7000FF;
    --green: #10b981;
    --white: #F0F0FF;
    --white-muted: rgba(240, 240, 255, 0.7);

    /* Aliases for login.css compatibility */
    --bg-color: var(--bg-deep);
    --text-color: var(--white);
    --text-muted: var(--white-muted);
    --accent-color: var(--cyan);
    --accent-light: var(--cyan);
    --gradient-1: linear-gradient(135deg, var(--cyan), var(--purple));

    /* Spacing */
    --space-sm: 12px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-2xl: 120px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--cyan), var(--purple));
}


/* ── 2. RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    max-width: 100%;
    display: block;
}


/* ── 3. LAYOUT ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}


/* ── 4. 3D BACKGROUND CANVAS ── */
#bg-3d-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* ── 5. NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-logo span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--white-muted);
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--white);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ── 6. HERO SECTION ── */
.hero-parallax {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: none;
    min-height: auto;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 110%;
    z-index: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    opacity: 0.7;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #000 0%, rgba(5, 5, 12, 0.7) 45%, transparent 100%),
        linear-gradient(0deg, #000 0%, rgba(5, 5, 12, 0) 5%);
    z-index: 1;
}

.hero-overlay-content {
    position: relative;
    width: 100%;
    z-index: 10;
}

.hero-text-floating {
    max-width: 650px;
    padding: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-text-floating.active {
    opacity: 1;
    transform: translateX(0);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text-floating h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-floating p {
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}


/* ── 7. BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}


/* ── 8. SCROLL REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}


/* ── 9. GLASS CARD ── */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}


/* ── 10. SECTION SHARED ── */
section {
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--radius-full);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--white-muted);
    line-height: 1.7;
}


/* ── 11. THREAT SECTION ── */
.threat-section {
    background: radial-gradient(ellipse at 20% 50%, rgba(112, 0, 255, 0.06) 0%, transparent 60%);
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.threat-card {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.threat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.threat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--cyan);
}

.threat-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.threat-card p {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.6;
}


/* ── 12. SOLUTION SECTION ── */
.solution-section {
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.solution-card {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
}

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.6;
}


/* ── 13. MARKET SECTION ── */
.market-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(112, 0, 255, 0.06) 0%, transparent 50%);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.market-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.market-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.market-card-accent {
    height: 4px;
    background: var(--gradient-primary);
}

.market-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(0, 240, 255, 0.08);
    margin: var(--space-md) var(--space-md) 16px;
    font-size: 1.5rem;
    color: var(--cyan);
}

.market-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    padding: 0 var(--space-md);
    margin-bottom: 4px;
}

.market-tagline {
    font-size: 0.8rem;
    color: var(--cyan);
    font-style: italic;
    padding: 0 var(--space-md);
    margin-bottom: 12px;
}

.market-card > p {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.6;
    padding: 0 var(--space-md);
    margin-bottom: 16px;
}

.market-features {
    list-style: none;
    padding: 0 var(--space-md) var(--space-md);
}

.market-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--white-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    padding-left: 20px;
}

.market-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.market-features li:last-child {
    border-bottom: none;
}


/* ── 14. 3D CAROUSEL SECTION ── */
.carousel-section {
    overflow: hidden;
}

.carousel-3d-wrapper {
    position: relative;
    padding: 40px 0;
}

.carousel-3d {
    position: relative;
    height: 380px;
    perspective: 1200px;
}

.carousel-card {
    position: absolute;
    width: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.carousel-card.active {
    transform: translate(-50%, -50%) scale(1) translateZ(0);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.carousel-card.prev {
    transform: translate(calc(-50% - 280px), -50%) scale(0.85) rotateY(8deg);
    opacity: 0.5;
    z-index: 3;
}

.carousel-card.next {
    transform: translate(calc(-50% + 280px), -50%) scale(0.85) rotateY(-8deg);
    opacity: 0.5;
    z-index: 3;
}

.carousel-card.hidden-prev {
    transform: translate(calc(-50% - 500px), -50%) scale(0.7);
    opacity: 0;
    z-index: 1;
}

.carousel-card.hidden-next {
    transform: translate(calc(-50% + 500px), -50%) scale(0.7);
    opacity: 0;
    z-index: 1;
}

.carousel-card-visual {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.visual-gradient {
    position: absolute;
    inset: 0;
}

.gradient-1 { background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(112, 0, 255, 0.3)); }
.gradient-2 { background: linear-gradient(135deg, rgba(112, 0, 255, 0.3), rgba(255, 0, 128, 0.3)); }
.gradient-3 { background: linear-gradient(135deg, rgba(0, 200, 100, 0.3), rgba(0, 240, 255, 0.3)); }
.gradient-4 { background: linear-gradient(135deg, rgba(255, 200, 0, 0.3), rgba(255, 100, 0, 0.3)); }
.gradient-5 { background: linear-gradient(135deg, rgba(255, 0, 128, 0.3), rgba(112, 0, 255, 0.3)); }

.visual-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.carousel-card-content {
    padding: 24px;
}

.carousel-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.carousel-card-content p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.5;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyan);
    color: var(--cyan);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicators button.active {
    background: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}


/* ── 15. PRICING SECTION ── */
.pricing-section {
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 240, 255, 0.04) 0%, transparent 50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.pricing-card {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price span {
    font-size: 1rem;
    -webkit-text-fill-color: var(--white-muted);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--white-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 8px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--white-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.guarantee-box {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px dashed rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    text-align: center;
}

.guarantee-box h3 {
    color: var(--green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.guarantee-box p {
    color: var(--white-muted);
    font-size: 0.95rem;
}


/* ── 16. FOOTER ── */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--white-muted);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--white-muted);
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: var(--white-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--white-muted);
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--cyan);
}


/* ── 17. RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
    .threat-grid,
    .solution-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-2xl: 60px;
    }

    /* Navbar mobile */
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(5, 5, 10, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hero mobile */
    .hero-parallax {
        height: 100vh;
        text-align: center;
    }

    .hero-text-floating {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-video-overlay {
        background: radial-gradient(circle at center, rgba(5, 5, 12, 0.5) 0%, rgba(5, 5, 12, 0.95) 100%);
    }

    /* Grids mobile */
    .threat-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    /* Carousel mobile */
    .carousel-3d {
        height: 350px;
    }

    .carousel-card {
        width: 280px;
    }

    .carousel-card.prev {
        transform: translate(calc(-50% - 200px), -50%) scale(0.8);
        opacity: 0.3;
    }

    .carousel-card.next {
        transform: translate(calc(-50% + 200px), -50%) scale(0.8);
        opacity: 0.3;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-text-floating h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .hero-text-floating p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .carousel-3d {
        height: 320px;
    }

    .carousel-card {
        width: 260px;
    }

    .guarantee-box {
        padding: 1.5rem;
    }
}