.tony-header {
    background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('images/tony-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.tony-content {
    padding: 0;
    background: var(--bg-primary);
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: calc(100vh - 70px);
    overflow: hidden;
    position: relative;
}

.tony-image-container {
    text-align: center;
    margin: 0;
    width: 100%;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInImage 5s ease-in forwards;
    opacity: 0;
}

.tony-image-container img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

.christmas-hat {
    color: #e74c3c;
}

.music-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.music-popup-overlay.fade-out {
    animation: popupFadeOut 0.6s ease-out forwards;
}

.music-popup-content {
    text-align: center;
    color: white;
    user-select: none;
}

.music-popup-icon {
    font-size: 150px;
    margin-bottom: 3rem;
    animation: popupPulse 1.5s ease-in-out infinite;
}

.music-popup-button {
    background: white;
    color: #000000;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
}

.music-popup-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.music-popup-button:active {
    transform: scale(0.95);
}

.music-popup-buttons-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.music-popup-button.no-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.music-popup-button.no-btn:hover {
    background: white;
    color: #000000;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popupFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes popupPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
