/* Hero Mic Image */
.hero-mic-img {
    width: 100%;
    max-width: 400px;
    /* Adjust as needed */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

/* Match Tabs Styles */
.match-tabs {
    display: none;
    /* Hidden on Desktop by default */
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--silver);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1rem;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--sky-blue);
    color: var(--navy-dark);
    border-color: var(--sky-blue);
    font-weight: 700;
}

/* Desktop Layout (Grid) */
.match-grid-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Increased gap for better separation */
    max-width: 1000px;
    /* Limit width */
    margin: 0 auto;
    /* Center the grid block */
    align-items: start;
}

/* Mobile Tabs Logic */
@media (max-width: 768px) {
    .match-grid-tabs {
        display: block;
        /* Stack or just show one */
        max-width: 100%;
    }

    .match-col {
        display: none;
        /* Hide all by default on mobile */
        animation: fadeIn 0.5s ease;
    }

    .match-col.active {
        display: block;
        /* Show active */
    }

    .match-tabs {
        display: flex;
        /* Show tabs on mobile */
    }

    .desktop-only {
        display: none;
        /* Hide the H3 headers inside tabs since buttons act as headers */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Facade */
.video-facade {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
}

.video-facade img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-facade:hover img {
    opacity: 0.6;
}

.video-facade .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-facade iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 5;
}
/* Host Avatar Images */
.host-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* App Download Section */
.app-label {
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.app-btn i {
    font-size: 1.5rem;
}

.app-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.app-btn .btn-text small {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.app-btn .btn-text span {
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
}

.app-btn.apple:hover {
    background: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.app-btn.google.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}
