/* ==========================================================================
   1. GLOBAL SYSTEM SETUP & VARIABLE CONFIGURATIONS
   ========================================================================== */
:root {
    --bg-main: #070a13;
    --accent-blue: #3b52df;
    --accent-blue-hover: #566cff;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --bg-surface: rgba(19, 25, 38, 0.6);
    --bg-surface-light: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    padding: 160px 24px 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
    min-height: 100vh;
    /* Background abstract gradient mesh layer setup */
    background-image: radial-gradient(at 0% 0%, rgba(59, 82, 223, 0.15) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Global Content Blocks Reusable Container Utility */
.section-container {
    max-width: 1100px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
    }

    .section-header p {
        color: var(--text-secondary);
        font-size: 1.1rem;
    }

/* Generic Layout Component Badges */
.badge, .pill-badge {
    background-color: rgba(59, 82, 223, 0.15);
    color: #818cf8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(59, 82, 223, 0.3);
}

.pill-badge {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    margin-bottom: 14px;
}

/* ==========================================================================
   2. TOP NAVIGATION MENU STICKY BAR LAYOUT
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    background-color: rgba(7, 10, 19, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Premium hardware-accelerated frost filter blur layout rules */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

    .logo svg {
        display: block;
    }

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

    .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

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

.external-link svg {
    opacity: 0.7;
}

.btn-nav-download {
    background-color: var(--accent-blue);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: background-color 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
}

    .btn-nav-download:hover {
        background-color: var(--accent-blue-hover);
    }

/* ==========================================================================
   3. HERO LAYOUT SPLIT MAIN CONTAINER SECTION
   ========================================================================== */
.download-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-content .badge {
    margin-bottom: 24px;
}

.download-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.download-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-download {
    background-color: var(--accent-blue);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 8px;
    width: fit-content;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(59, 82, 223, 0.4);
    transition: background-color 0.2s, transform 0.2s;
}

    .btn-download:hover {
        background-color: var(--accent-blue-hover);
        transform: translateY(-2px);
    }

.os-detect {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 4px;
}

/* Browser Visual Layout Mockup Panel */
.browser-mockup {
    background-color: var(--bg-surface);
    border: 1px solid var(--bg-surface-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.mockup-header {
    background-color: #0c101b;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--bg-surface-light);
}

    .mockup-header .dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
    }

.dot.red {
    background-color: #ef4444;
}

.dot.yellow {
    background-color: #eab308;
}

.dot.green {
    background-color: #22c55e;
}

.mockup-url {
    background-color: #171e2e;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 6px 20px;
    border-radius: 6px;
    margin-left: 16px;
    flex-grow: 1;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-body {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
}

.beta-section {
    background-color: rgba(23, 225, 252, 0.15);
    border: 1px solid rgba(29, 55, 221, 0.3);
    color: #afc6d3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}


.beta-info {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 30px;
}
.beta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.beta-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--bg-surface-light);
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 200px;
    text-align: center;
}

/* Main wrapper putting slider on the left and controls on the right */
.comparison-layout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Left Side: Much larger slider container */
.img-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px; /* Made significantly bigger */
    overflow: hidden;
    user-select: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.img-slider-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    transition: clip-path 0.05s ease-out;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-line {
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.slider-button {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 11;
}

/* Right Side: Control panel with glassmorphism blur effect */
.control-panel {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    border-radius: 12px;
    /* Blur effect and semi-transparent background */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.control-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.control-content p {
    margin: 0 0 20px 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.select-wrapper label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Nicer styled dropdown */
.select-wrapper select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.select-wrapper select:hover {
    border-color: #888;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}
/* ==========================================================================
   4. BANGS INTERACTIVE SHORTCUT ENGINE COMPONENT
   ========================================================================== */
#bangs-dashboard {
    margin-top: 20px;
}

.search-box-wrapper {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-bar-mock {
    background-color: #0c111d;
    border: 1px solid var(--bg-surface-light);
    border-radius: 12px;
    padding: 10px 10px 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .search-bar-mock:focus-within {
        border-color: var(--accent-blue-hover);
        box-shadow: 0 0 0 4px rgba(86, 108, 255, 0.15);
    }

.search-icon {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    margin-right: 14px;
}

.search-bar-mock input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    flex-grow: 1;
    padding-right: 15px;
    font-weight: 400;
}

    .search-bar-mock input::placeholder {
        color: var(--text-muted);
    }

#browser-search-btn {
    background-color: var(--accent-blue);
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

    #browser-search-btn:hover {
        background-color: var(--accent-blue-hover);
    }

.bangs-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.legend-pill {
    background-color: var(--bg-surface);
    border: 1px solid var(--bg-surface-light);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s, border-color 0.2s, transform 0.1s;
}

    .legend-pill strong {
        color: #818cf8;
        margin-right: 4px;
    }

    .legend-pill:hover {
        background-color: var(--bg-surface-light);
        border-color: var(--text-muted);
        transform: translateY(-1px);
    }

/* ==========================================================================
   5. BROWSER FEATURE HIGHLIGHT MODULES
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--bg-surface-light);
    border-radius: 14px;
    padding: 35px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(59, 82, 223, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 82, 223, 0.2);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   6. METRIC USAGE DATA STRIP OVERVIEW
   ========================================================================== */
.stats-bg {
    background-color: rgba(11, 15, 25, 0.4);
    border: 1px solid var(--bg-surface-light);
    border-radius: 16px;
    padding: 50px 20px;
    backdrop-filter: blur(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .stat-item:not(:last-child) {
        border-right: 1px solid var(--bg-surface-light);
    }

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}
/* ==========================================================================7. USER FEEDBACK / REVIEW LAYOUT PANEL========================================================================== */

.testimonial-card {
    background: radial-gradient(circle at top left, rgba(59, 82, 223, 0.08), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
}

.user-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--accent-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-user h4 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
/* ==========================================================================8. SYSTEM ARCHITECTURE / DOWNLOAD SELECTION PANELS========================================================================== */

.platforms-section {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

    .platforms-section h2 {
        font-size: 2.2rem;
        margin-bottom: 48px;
        font-weight: 700;
    }

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.platform-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--bg-surface-light);
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, transform 0.3s;
}
    /* Auto-detected engine highlight panel rules configuration */

    .platform-card.highlighted {
        border-color: var(--accent-blue);
        transform: scale(1.02);
        box-shadow: 0 15px 35px -10px rgba(59, 82, 223, 0.2);
    }

    .platform-card h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .platform-card p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

.btn-secondary {
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bg-surface-light);
    color: var(--text-primary);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s;
}

.platform-card.highlighted .btn-secondary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.platform-card.highlighted .btn-secondary:hover {
    background-color: var(--accent-blue-hover);
}
/* ==========================================================================9. MOBILE ADAPTATION RESPONSIVE DESIGN RULES========================================================================== */

@media (max-width: 900px) {
    body {
        padding: 120px 16px 60px 16px;
        gap: 80px;
    }

    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none; /* Collapse text link matrices on small phone screens */
    }

    .download-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .download-content h1 {
        font-size: 2.4rem;
    }

    .actions {
        align-items: center;
    }

    .features-grid, .stats-grid, .platform-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--bg-surface-light);
        padding-bottom: 24px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1.15rem;
    }

    .search-bar-mock {
        flex-direction: column;
        padding: 16px;
        gap: 14px;
        align-items: stretch;
    }

    .search-icon {
        display: none;
    }

    #browser-search-btn {
        width: 100%;
        text-align: center;
    }
    /* ==========================================================================
   13. PREMIUM INTERACTIVE FAQ ACCORDION DISPLAY
   ========================================================================== */

    /* Outer structure padding */
    #faq {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .faq-wrapper {
        max-width: 820px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Individual Accordion Glass Panel */
    .faq-item {
        background-color: var(--bg-surface);
        border: 1px solid var(--bg-surface-light);
        border-radius: 12px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        /* Subtle glowing accent border when item is toggled open */
        .faq-item[open] {
            border-color: rgba(86, 108, 255, 0.4);
            box-shadow: 0 10px 30px -10px rgba(59, 82, 223, 0.15);
        }

        /* Interactive Title Tab */
        .faq-item summary {
            list-style: none; /* Disables the native default black arrow marker */
            padding: 24px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            user-select: none;
            transition: background-color 0.2s;
        }

            /* Disables Safari-specific native summary arrows */
            .faq-item summary::-webkit-details-marker {
                display: none;
            }

            .faq-item summary:hover {
                background-color: rgba(255, 255, 255, 0.02);
            }

        /* Modern Down Chevron Icon Styling */
        .faq-item .chevron {
            color: var(--text-muted);
            transition: transform 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
        }

        /* Rotate arrow smoothly into an upbeat position when open */
        .faq-item[open] .chevron {
            transform: rotate(180deg);
            color: var(--accent-blue-hover);
        }

    /* Expanding text description space */
    .faq-content {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        background-color: rgba(7, 10, 19, 0.25);
    }

        .faq-content p {
            padding: 24px;
            color: var(--text-secondary);
            line-height: 1.65;
            font-size: 0.98rem;
            margin: 0;
        }

    /* Quick responsive adaptation tweak for compact screens */
    @media (max-width: 600px) {
        .faq-item summary {
            padding: 18px;
            font-size: 1rem;
        }

        .faq-content p {
            padding: 18px;
        }
    }
    /* ==========================================================================
   13. PREMIUM INTERACTIVE FAQ ACCORDION DISPLAY
   ========================================================================== */

    #faq {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .faq-wrapper {
        max-width: 850px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px; /* Distinct vertical gaps between questions */
    }

    /* Individual Accordion Glass Panels matching the features grid */
    .faq-item {
        background-color: #131926;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        /* Glowing accent frame when a tab item is expanded */
        .faq-item[open] {
            border-color: rgba(59, 82, 223, 0.4);
            box-shadow: 0 10px 30px -10px rgba(59, 82, 223, 0.2);
        }

        /* Main Interactive Row Layout Header */
        .faq-item summary {
            list-style: none; /* Disables standard ugly black list arrows */
            padding: 24px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            user-select: none;
            transition: background-color 0.2s;
        }

            /* Disables Safari vendor-specific list arrows */
            .faq-item summary::-webkit-details-marker {
                display: none;
            }

            .faq-item summary:hover {
                background-color: rgba(255, 255, 255, 0.02);
            }

        /* Modern Down Chevron Icon Rules */
        .faq-item .chevron {
            color: #64748b;
            transition: transform 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
        }

        /* Rotates the clean vector arrow seamlessly when open */
        .faq-item[open] .chevron {
            transform: rotate(180deg);
            color: #566cff;
        }

    /* Description inner paragraph wrapper box */
    .faq-content {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        background-color: rgba(7, 10, 19, 0.25);
    }

        .faq-content p {
            padding: 24px;
            color: #94a3b8;
            line-height: 1.65;
            font-size: 0.98rem;
            margin: 0;
        }

    @media (max-width: 768px) {
        .faq-item summary {
            padding: 20px;
            font-size: 1rem;
        }

        .faq-content p {
            padding: 20px;
        }
    }

   /* ==========================================================================
   14. FIX: SLEEK BROWSER SCREEN SLIDER LAYOUT
   ========================================================================== */
.slider-section {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    width: 100%;
}

.slider-viewport {
    position: relative;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Fixes the stacking text by separating the slides and hiding inactive ones */
.browser-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only the active slide shows up */
.browser-slide.active-slide {
    opacity: 1;
    pointer-events: auto;
}

/* Typography elements */
.slide-greeting {
    font-size: 3.2rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.slide-time {
    font-size: 0.95rem;
    color: #4b5563;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

/* Search input capsule wrapper layout */
.slide-search-wrapper {
    width: 100%;
    max-width: 460px;
    margin-bottom: 45px;
}

.slide-search-mock {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(86, 108, 255, 0.4);
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 1rem;
    color: #94a3b8;
    outline: none;
    box-shadow: 0 0 20px -5px rgba(59, 82, 223, 0.15);
    text-align: left;
}

.slide-caption-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #94a3b8;
    font-style: italic;
    max-width: 420px;
}

/* Weather pill element block alignment styling */
.slide-weather-pill {
    background-color: rgba(19, 25, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.temp-display {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.weather-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.condition-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
}

.area-text {
    font-size: 0.75rem;
    color: #475569;
}

/* Dots wrapper positioning control */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    background-color: #334155;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot-indicator.active-dot {
    background-color: #566cff;
}

/* =======================================================
   MODERN FOOTER LAYOUT (All Modern Browsers)
   ======================================================= */
.main-footer {
    background-color: #0b0f19; /* Deep dark theme background */
    padding: 60px 20px 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

.footer-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-info {
    flex: 1 1 300px;
    margin-bottom: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.footer-info .logo {
    color: #ffffff;
    margin-bottom: 15px;
    display: inline-block;
}

.brand-text {
    color: #94a3b8; /* Muted silver text for readability */
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-column {
    flex: 1 1 180px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.footer-column h4 {
    color: #ffffff; /* Bright white category headers */
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: #64748b; /* Clean slate-blue links that stay visible */
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover effects for link states */
.footer-column a:hover {
    color: #3b82f6; /* Pops with your signature brand blue on hover */
    transform: translateX(3px); /* Subtle shift interaction */
}

.footer-copyright {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-copyright p {
    color: #475569;
    font-size: 13px;
    margin: 0;
}

/* Responsive breakpoint for smaller browser widths */
@media (max-width: 768px) {
    .footer-layout {
        display: block;
    }
    .footer-column {
        width: 50%;
        float: left;
    }
}

/* =======================================================
   LEGACY INTERNET EXPLORER FALLBACK ALIGNMENT
   ======================================================= */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .main-footer {
        background-color: #0b0f19 !important;
    }
    .footer-layout {
        display: block !important;
    }
    .footer-info {
        width: 35% !important;
        float: left !important;
    }
    .footer-column {
        width: 20% !important;
        float: left !important;
    }
    .footer-layout::after, .main-footer::after {
        content: "" !important;
        display: table !important;
        clear: both !important;
    }
    .footer-column a {
        color: #3b82f6 !important; /* Forces link visibility inside standard IE configurations */
    }
}


}