@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #141414;
}

::-webkit-scrollbar-thumb {
    background: #E50914;
    border-radius: 4px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 1.125rem !important;
    }
}
/* Animation for buttons and links */
button, a {
    transition: all 0.3s ease;
}

button:hover, a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Movie grid styles */
.movie-grid {
    display: grid;
    gap: 1rem;
}

/* Search styles */
.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.7);
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
}

.search-input:focus {
    outline: none;
    border-color: #E50914;
}
/* FAQ items */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #4d4d4d !important;
}