/* ============================================================
   GENIE SYSTEME RESEAUX — "Neo-Neon" Premium Design System
   Inspired by High-Contrast Dev Agency Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Colors */
    --color-bg: #ffffff;
    --color-dark: #000000;
    --color-dark-surface: #0a0a0a;
    --color-dark-card: #151515;

    --color-neon-lime: #a3e635;
    /* vibrant neon green */
    --color-neon-dim: rgba(163, 230, 53, 0.15);
    --color-soft-blue: #22d3ee;
    /* soft cyan */

    --color-text-main: #000000;
    --color-text-muted: #555555;
    --color-text-white: #ffffff;

    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --font-main: 'Inter', -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.5;
    overflow-x: hidden;
    padding-top: 64px;
    /* Nav height only */
}

/* ---------- Background Mesh Gradients ---------- */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    /* Increased blur */
    opacity: 0.7;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
}

.blob-1 {
    width: 50%;
    height: 60%;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.45) 0%, transparent 70%);
}

.blob-2 {
    width: 45%;
    height: 50%;
    top: 5%;
    right: -10%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.35) 0%, transparent 70%);
}

/* ---------- Typography ---------- */
.text-display {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.highlight {
    background: var(--color-dark);
    color: var(--color-text-white);
    padding: 0.15em 0.5em;
    /* Better padding for capsule */
    border-radius: 99px;
    /* Force pill shape */
    display: inline-block;
    transform: rotate(-1deg);
    margin: 0.1em;
}

.text-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.text-body {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    opacity: 0.9;
}

/* ---------- Layout ---------- */
.container {
    max-width: 1300px;
    /* Slightly wider */
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    /* Consistent spacing */
}

/* ---------- Hero Adjustment ---------- */
.hero-wrapper {
    min-height: calc(100vh - 64px);
    /* Adjusted for nav height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 5vh;
}

/* ---------- Hero Slider ---------- */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}






.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slide-fade 24s infinite;
    /* Adjusted for 4 images */
    will-change: opacity, transform;
}

.slide:nth-child(1) {
    animation-delay: 0s;
    z-index: -2;
}

.slide:nth-child(2) {
    animation-delay: 6s;
}

.slide:nth-child(3) {
    animation-delay: 12s;
}

.slide:nth-child(4) {
    animation-delay: 18s;
}

@keyframes slide-fade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
        transform: scale(1);
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    30% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

/* Ensure the very first slide shows even before animation starts */
.first-slide {
    opacity: 1 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for visibility like in the screenshot */
    z-index: -1;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
}

/* ---------- Apple Utility Bar ---------- */
.top-utility-bar {
    background: #fbfbfd;
    height: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.utility-link {
    text-decoration: none;
    color: #6e6e73;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.utility-link:hover {
    color: #000;
}

.connect-link {
    font-weight: 500;
}

/* ---------- Service Layout Variants ---------- */
.service-page .hero-wrapper {
    min-height: 50vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Variant 1: Réseau & Variant 2: Sécurité (Green theme) */
.page-reseau,
.page-securite {
    background: linear-gradient(180deg, #f7fee7 0%, #ffffff 100%);
}

.page-reseau .highlight,
.page-securite .highlight {
    background: var(--color-neon-lime);
    color: var(--color-dark);
}

/* Variant 3: Web (Green theme) */
.page-web {
    background: linear-gradient(180deg, #f7fee7 0%, #ffffff 100%);
}

.page-web .highlight {
    background: var(--color-neon-lime);
    color: var(--color-dark);
}

/* Variant 4: Produits (Lime accents) */
.page-produits {
    background: linear-gradient(180deg, #f7fee7 0%, #ffffff 100%);
}

.page-produits .highlight {
    background: #65a30d;
}

.service-image-container {
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    margin: 4rem 0;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* ---------- Navigation & Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    /* Slightly taller for better visibility */
    max-width: 1200px;
}

.logo {
    background: white;
    padding: 10px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 900;
    color: #000;
    border-right: 1px solid #ddd;
}

.logo:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    /* Bolder */
    font-size: 0.85rem;
    /* Larger */
    padding: 0 1.5rem;
    opacity: 0.8;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: #000;
}

.nav-links a.active {
    font-weight: 800;
    /* Distinct but not green */
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: var(--color-neon-lime);
    /* A tiny brand touch instead of full green text */
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 2.5rem;
    border-left: 2px solid rgba(0, 0, 0, 0.08);
    /* Clean vertical divider */
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 850;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    white-space: nowrap;
    letter-spacing: -0.025em;
    cursor: pointer;
}

.action-btn span {
    display: inline-block;
    /* Crucial for visibility check */
    color: inherit;
    /* Ensure matches parent color */
}

.action-btn svg {
    width: 22px;
    height: 22px;
    color: inherit;
}

.app-btn {
    background: #f1f3f5;
    color: #111;
    /* Visible dark text */
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.signin-btn {
    background: #000;
    /* Deep black for premium contrast */
    color: #ffffff !important;
    /* Force explicit white */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.app-btn:hover {
    background: #fff;
    border-color: var(--color-neon-lime);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.signin-btn:hover {
    background: var(--color-neon-lime);
    color: #000 !important;
    /* Switch to black text on green hover */
    box-shadow: 0 20px 40px rgba(163, 230, 53, 0.4);
    transform: translateY(-3px);
}

/* ---------- Global Layout Utilities for Unique Pages ---------- */
.layout-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.layout-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 6rem 0;
}

.layout-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 6rem 0;
}

.list-item-premium {
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.list-item-premium:hover {
    transform: translateX(10px);
    border-color: var(--color-neon-lime);
}

@media (max-width: 991px) {
    .layout-split {
        grid-template-columns: 1fr;
    }
}

.nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    /* Start closer */
    background: rgba(255, 255, 255, 0.98);
    /* Less transparent for visibility */
    backdrop-filter: blur(30px);
    min-width: 300px;
    /* Wider */
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1001;
    margin-top: 5px;
}

/* Mega Dropdown for Services */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) !important;
    width: auto;
    min-width: 700px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-category {
    text-align: center;
}

.service-category h4 {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.service-category .links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.service-category a {
    padding: 0.4rem 0;
    font-weight: 500;
    color: #333;
    font-size: 0.85rem;
    text-align: center;
    white-space: normal;
}

.service-category a:hover {
    color: var(--color-neon-lime);
    background: transparent;
}

.service-category a:hover {
    padding-left: 0.5rem;
    background: transparent;
    color: var(--color-neon-lime);
    opacity: 1;
}

.dropdown-content {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
}

.dropdown a {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.8;
    text-align: center;
    white-space: nowrap;
    width: auto;
    display: inline-block;
    transition: all 0.2s;
}

.dropdown a:hover {
    background: #f1f5f9;
    color: #000;
    opacity: 1;
    padding-left: 1rem;
    border-left: 4px solid var(--color-neon-lime);
}

/* (Removed .nav-btn styles as requested) */

/* ---------- Dark Sections & Bento Cards ---------- */
.dark-section {
    background: var(--color-dark);
    color: var(--color-text-white);
    border-radius: 48px;
    /* Bigger corner radius */
    margin: 4rem 1.5rem 0;
    /* Added margin-top to separate from hero */
    padding: 8rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.bento-card {
    background: var(--color-dark-card);
    padding: 3rem 2rem;
    /* Reduced padding for mobile naturally */
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    word-break: break-word;
    /* Prevent long text overflow */
}

.bento-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-neon-lime);
    background: #1a1a1a;
}

.card-icon {
    margin-bottom: 2.5rem;
    color: var(--color-neon-lime);
}

.card-icon svg {
    width: 56px;
    height: 56px;
}

/* ---------- Buttons ---------- */
.btn-pill {
    border: 2px solid var(--color-dark);
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--color-dark);
    transition: all 0.3s;
    background: white;
}

.btn-pill:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ---------- Animation & Transitions ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ---------- Mobile Menu Toggle ---------- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Utility Classes ---------- */
body.no-scroll {
    overflow: hidden;
}

.mobile-actions {
    display: none;
}

.desktop-only {
    display: flex;
}

/* ---------- Footer ---------- */
.footer-main {
    padding: 6rem 0 3rem;
    border-top: 1px solid #eee;
    margin-top: 4rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}


.footer-brand p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact .contact-item {
    font-size: 0.95rem;
    color: #555;
    word-break: break-all;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000;
}

@media (max-width: 1024px) {

    /* --- Nav mobile overlay --- */
    .mobile-toggle {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-actions {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .mobile-actions .action-btn {
        display: inline-flex;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .nav-inner {
        padding: 0 1.5rem;
    }

    .logo {
        border-right: none;
        z-index: 1100;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        z-index: 1050;
        padding: 5rem 2rem 3rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .nav-item>a {
        font-size: 1.4rem;
        font-weight: 700;
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: center;
        display: block;
    }

    .nav-actions {
        display: none !important;
    }

    /* Dropdowns: hidden by default, open on click via .open class */
    .dropdown,
    .mega-dropdown {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: #f9f9f9 !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        backdrop-filter: none !important;
    }

    /* Open dropdown via JS click (.open) instead of hover */
    .nav-item.open>.dropdown,
    .nav-item.open>.mega-dropdown {
        max-height: 800px;
        padding: 1rem !important;
    }

    .dropdown-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
    }

    .dropdown a {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
        white-space: normal;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-category {
        margin-bottom: 0.5rem;
    }

    .service-category h4 {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .service-category a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    /* --- Layout --- */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .layout-split {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}

/* ==========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {

    body {
        padding-top: 60px;
    }

    .nav-inner {
        height: 60px;
    }

    .text-display {
        font-size: 2.5rem !important;
        text-align: center;
        line-height: 1.1;
    }

    .text-title {
        font-size: 2rem !important;
        text-align: center;
    }

    .text-body {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .highlight {
        font-size: inherit;
        padding: 0.1em 0.4em;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.2rem;
    }

    .hero-wrapper {
        min-height: auto !important;
        padding-top: 3rem;
        padding-bottom: 3rem;
        text-align: center;
    }

    .dark-section {
        margin: 1.5rem 0.8rem;
        border-radius: 20px;
        padding: 3rem 1.2rem;
    }

    .bento-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .card-icon svg {
        width: 40px;
        height: 40px;
    }

    .card-icon {
        margin-bottom: 1.5rem;
    }

    /* Service pages */
    .service-image-container {
        height: 200px;
        border-radius: 16px;
        margin: 2rem 0;
    }

    .layout-split {
        padding: 3rem 0;
        gap: 2rem;
    }

    .split-visual {
        padding: 1.5rem !important;
        border-radius: 20px !important;
    }

    .list-item-premium {
        padding: 1.5rem !important;
        margin-left: 0 !important;
        border-radius: 14px;
    }

    .feature-list>div {
        flex-direction: row;
        gap: 1rem !important;
    }

    /* Stage cards */
    .stage-grid {
        grid-template-columns: 1fr !important;
    }

    .stage-card {
        border-radius: 16px;
    }

    .stage-img {
        height: 180px;
    }

    .stage-content {
        padding: 1.5rem;
    }

    .stage-content h3 {
        font-size: 1.2rem;
    }

    /* Buttons */
    .btn-pill {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    /* Footer mobile */
    .footer-main {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand .logo {
        display: inline-block;
    }

    .footer-contact {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }

    /* Contact page cards */
    .bento-card h4 {
        font-size: 0.8rem;
    }

    .bento-card h2 {
        font-size: 1.5rem;
        word-break: break-all;
    }

    /* Hide mesh blobs on mobile for performance */
    .mesh-bg {
        opacity: 0.4;
    }
}

/* ==========================================
   RESPONSIVE — SMALL PHONES (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {

    .text-display {
        font-size: 2.2rem !important;
    }

    .text-title {
        font-size: 1.7rem !important;
    }

    .nav-item>a {
        font-size: 1.2rem;
    }

    .action-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .bento-card {
        padding: 1.5rem 1.2rem;
    }

    .dark-section {
        padding: 2rem 1rem;
        margin: 1rem 0.5rem;
        border-radius: 16px;
    }
}