/* Main content styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section {
    background-color: var(--gray-dark);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn var(--animation-duration) ease-out forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
    position: relative;
    overflow: hidden;
}

.section:nth-child(1) { --delay: 1; }
.section:nth-child(2) { --delay: 2; }
.section:nth-child(3) { --delay: 3; }
.section:nth-child(4) { --delay: 4; }

.section h2 {
    color: var(--primary);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

.now-showing {
    position: relative;
}

.section-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseSpotlight 4s infinite ease-in-out;
    z-index: 0;
}

@keyframes pulseSpotlight {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.schedule-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.schedule-item h3 {
    color: var(--primary);
}

.schedule-item p {
    color: var(--white);
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.movie-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-info h3 {
    color: var(--primary);
}

.movie-info ul {
    list-style: none;
    margin-top: 1rem;
    color: var(--white);
}

.movie-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-info li:last-child {
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 24, 55, 0.4);
    color: var(--white);
}