:root {
    /* The Stealth Umbrella Palette */
    --deep-space: #0D0221; /* Deepest Purple (Background) */
    --obsidian-purple: #1B0E33; /* Card Surface / Lighter Purple */
    --neon-green: #00FF41; /* Primary Accent (Action Items) */
    --electric-violet: #7B2CBF; /* Secondary Accent (Subtle Glows) */
    --glass-purple: rgba(123, 44, 191, 0.1);
    --text-main: #E0E0E0;
}

body {
    background-color: var(--deep-space);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Updated Bento Card for the New Theme */
.bento-card {
    background: var(--obsidian-purple);
    border: 1px solid rgba(123, 44, 191, 0.3); /* Subtle purple border */
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

    .bento-card:hover {
        transform: translateY(-8px);
        border-color: var(--neon-green);
        box-shadow: 0 0 20px rgba(0, 255, 65, 0.2); /* Neon green glow on hover */
    }

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.neon-button {
    background: var(--neon-green);
    color: var(--deep-space);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

    .neon-button:hover {
        transform: scale(1.05);
    }
/* Responsive Banner Control */
.stealth-banner {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* When the screen is narrow (like a vertical phone) */
@media (max-width: 768px) {
    .stealth-banner {
        max-height: 180px; /* Forces the banner to stay slim */
    }
}
/* Make Swiper arrows easier to tap on mobile */
@media (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev {
        padding: 20px; /* Increases the invisible tap zone */
        transform: scale(0.8); /* Keeps the visual arrow slightly smaller */
    }
}
/* --- THE ULTIMATE RESPONSIVE BANNER --- */
.stealth-banner {
    width: 100%;
    /* Gave it slightly more vertical room */
    aspect-ratio: 5 / 1;
    max-height: 220px;
    display: block;
    object-fit: cover;
    /* THE FIX: Shifts the focal point down so the bottom letters aren't clipped */
    object-position: center 65%;
}

/* Tablets and Large Phones */
@media (max-width: 1024px) {
    .stealth-banner {
        aspect-ratio: 4.5 / 1;
    }
}

/* Portrait Mobile (Vertical) */
@media (max-width: 600px) {
    .stealth-banner {
        aspect-ratio: 4 / 1;
        max-height: none;
    }
}

/* Landscape Mobile (Sideways) - Tactical Hide */
@media (max-height: 500px) and (orientation: landscape) {
    .stealth-banner {
        display: none !important;
    }
}