:root {
    --primary-color: #8b0000;
    /* Dark Red */
    --secondary-color: #4a0000;
    /* Blackish Red */
    --accent-color: #ff4d4d;
    /* Bright Red for highlights */
    --text-color: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.7);
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #000;
    color: var(--text-color);
    overflow: hidden;
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.animate-text,
.lead,
.play-btn,
.social-icon,
.footer {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-text {
    font-family: 'Permanent Marker', cursive;
    color: #ffffff;
    letter-spacing: 0.2rem;
    text-shadow: 10px 10px 0px #000, 15px 15px 40px rgba(0, 0, 0, 1);
    transform: rotate(-2deg);
    animation-delay: 0.5s;
}

.lead {
    animation-delay: 1.2s;
    color: rgba(255, 255, 255, 0.8);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(139, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 77, 77, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
    animation-delay: 1.8s;
}

.play-btn:hover {
    transform: scale(1.1) rotate(0deg) !important;
    background: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.8);
}

.play-btn i {
    margin-left: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.social-icon:nth-child(1) {
    animation-delay: 2.2s;
}

.social-icon:nth-child(2) {
    animation-delay: 2.4s;
}

.social-icon:nth-child(3) {
    animation-delay: 2.6s;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
    filter: drop-shadow(0 0 15px var(--primary-color));
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 10;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 0.6);
    animation-delay: 3.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animate-text {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}