.showcase-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-container {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    /* Darker background */
    padding: 0.75rem;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    /* Slight fill */
    border: 1px solid transparent;
    color: #94a3b8;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tab-btn.active {
    background: var(--accent-primary);
    /* Blue Active */
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Tab Content Window */
.tab-window {
    padding: 4rem;
    min-height: 400px;
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Content Styling */
.pane-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.pane-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pane-visual {
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

/* Faked UI Elements inside Visuals */
.ui-mockup,
.graph-mockup {
    width: 80%;
    height: 60%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    position: absolute;
}

.graph-mockup {
    bottom: 20px;
    height: 40%;
    background: linear-gradient(to top, var(--accent-primary) 0%, transparent 100%);
    opacity: 0.5;
}

/* WEATHER ANIMATION STYLES */
.weather-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.lightning-bolt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    font-size: 4rem;
    opacity: 0;
    z-index: 1;
}

.animating .cloud-icon {
    animation: shakeCloud 3s infinite ease-in-out;
    filter: drop-shadow(0 0 10px #3b82f6);
}

.animating .lightning-bolt {
    animation: flashLightning 2s infinite;
}

@keyframes shakeCloud {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes flashLightning {

    0%,
    90% {
        opacity: 0;
        transform: translate(-50%, -20%) scale(0.8);
    }

    92% {
        opacity: 1;
        transform: translate(-50%, -20%) scale(1.2);
        filter: drop-shadow(0 0 20px #fbbf24);
    }

    94% {
        opacity: 0;
    }

    96% {
        opacity: 1;
    }

    98% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .tab-pane.active {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tab-nav {
        flex-direction: column;
    }
}
