/* Base styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Netflix logo animation */
.netflix-intro {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    animation: logo-animation 4s ease-out;
    width: 100%;
}

/* Netflix SVG styling */
.netflix-svg {
    width: 80%; /* Reduced size */
    height: auto;
    max-width: 700px; /* Reduced maximum width */
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    fill: #E50914;
    font-size: 6vw; /* Reduced from 9vw */
    font-weight: bold;
    letter-spacing: -1px; /* Tighter letter spacing for Netflix look */
    text-shadow: 0 1px 4px rgba(229, 9, 20, 0.3);
    /* Add subtle gradient to match Netflix aesthetic */
    fill: url(#netflixGradient);
}

@keyframes logo-animation {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Arrow animation */
.arrow-container {
    margin-top: -20px; /* Reduced negative margin from -50px to -20px */
    opacity: 0;
    animation: appear 1s forwards;
    animation-delay: 4s;
}

.arrow {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
    /* Create circular gray bubble */
    width: 50px; /* Smaller circle */
    height: 50px; /* Smaller circle */
    background-color: rgba(128, 128, 128, 0.4); /* Semi-transparent gray */
    border-radius: 50%; /* Make it circular */
}

.arrow svg {
    width: 20px; /* Smaller icon */
    height: 20px; /* Smaller icon */
    transform: rotate(-90deg); /* Point to the right */
}

.arrow:hover {
    transform: scale(1.2);
    background-color: rgba(128, 128, 128, 0.5);
}

@keyframes appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}