/* ============================================================
   BROWSER SHOWCASE HERO SPECIFIC STYLES
   ============================================================ */

.browser-window-container {
    width: 100%;
    max-width: 580px;
    background: #000;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 15;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.browser-window-container:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* BROWSER CHROME HEADER */
.browser-header {
    height: 38px;
    background: #140d1e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    user-select: none;
}

.browser-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-address-bar {
    background: #09050f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    width: 60%;
    max-width: 320px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    letter-spacing: 0.5px;
}

.browser-lock-icon {
    font-size: 9px;
    opacity: 0.6;
}

.browser-url-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    opacity: 0.5;
}

.browser-menu-icon span {
    width: 14px;
    height: 1.5px;
    background: #fff;
    display: block;
}

/* BROWSER BODY & IMAGE SCREENSHOT */
.browser-body {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    background: #05010a;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    display: block;
}

.browser-blank-state {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* Tablet & Mobile Layout Shifts */
@media (min-width: 1025px) and (max-width: 1280px) {
    .browser-window-container {
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .browser-window-container {
        max-width: 520px;
        margin: 0 auto;
    }
    .browser-body {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .browser-window-container {
        width: min(100%, calc(100vw - 32px));
        max-width: 460px;
        margin: 0 auto;
    }
    .browser-body {
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 200px;
    }
    .browser-address-bar {
        width: 50%;
    }
}

@media (max-width: 360px) {
    .browser-window-container {
        width: calc(100vw - 20px);
        max-width: 300px;
    }
    .browser-address-bar {
        display: none; /* Hide address bar on extremely narrow screens to keep clean */
    }
}

