body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Intro Boot Animation */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 2s forwards;
    animation-delay: 3s;
}

#intro-text {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: 
        slideUp 1.5s ease-out forwards,
        pulse 2s infinite alternate;
    animation-delay: 0.5s;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { 
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes slideUp {
    0% { 
        transform: translateY(50px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    border-bottom: 2px solid #34495e;
}

.card {
    background-color: #1e1e1e !important;
    border: 1px solid #333;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: #3498db;
    border-color: #2980b9;
}

.btn-success {
    background-color: #2ecc71;
    border-color: #27ae60;
}

#movies .col-md-3 {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
