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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    color: white;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.1em;
    margin-bottom: 15px;
}

.books-promo {
    text-align: center;
    margin: 20px 0;
}

.book-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.book-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.books-separator {
    color: white;
    margin: 0 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.tagline {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 1em;
    margin-bottom: 30px;
    font-style: italic;
}

.movie-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.movie-card h2 {
    color: #667eea;
    font-size: 2em;
    margin-bottom: 10px;
}

.movie-meta {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.terrible-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.terrible-box strong {
    color: #856404;
    display: block;
    margin-bottom: 8px;
}

.terrible-box p {
    color: #856404;
    margin: 0;
}

.rating {
    font-size: 1.2em;
    margin-top: 15px;
}

.rating-number {
    color: #e74c3c;
    font-size: 1.5em;
    font-weight: bold;
}

.btn-primary {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 30px;
    font-size: 1em;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-content h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
}

#email-input {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

#email-input:focus {
    outline: none;
    border-color: #667eea;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    
    .movie-card h2 {
        font-size: 1.5em;
    }
    
    .btn-primary {
        font-size: 1em;
        padding: 12px 30px;
    }
    
    .book-link {
        font-size: 0.95em;
        padding: 8px 15px;
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
    
    .books-separator {
        display: block;
        margin: 5px 0;
    }
}