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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.hero {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

/*.hero {
    background-color: #000000;    
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
}*/

.hero-content {
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.8;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.poster-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.poster-item:hover {
    transform: translateY(-5px);
}

.poster-image {
    position: relative;
    padding-top: 100%;
}

.poster-image img,
.poster-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-video {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Prevents video from intercepting hover events */
}

.poster-item:hover .poster-video {
    opacity: 1;
}

.poster-details {
    padding: 1rem;
}

.poster-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.poster-price {
    font-size: 1.5rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.buy-button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-content {
        margin: 0 1rem;
    }

    .hero-content p {
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .poster-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
    }

    .logo img {
        max-width: 140px;
    }
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2c5282;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Add before the footer styles */
.faq-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #2b2b2b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

.movie-card h3 {
    margin: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}