.footer {
    margin-top: 50px;
    padding: 40px;
    border-top: 3px solid #ff1a1a;
    background: rgba(10, 0, 0, 0.9);
}

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

.footer-section h3 {
    color: #ff1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff0000;
    border-bottom: 2px solid #ff3333;
    padding-bottom: 10px;
}

.footer-section p {
    color: #ff6666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff3333;
    color: #ff3333;
    padding: 12px;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6666;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: linear-gradient(180deg, #ff3333, #cc0000);
    border: 2px solid #ff6666;
    color: #000;
    padding: 12px 30px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(180deg, #ff6666, #ff3333);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(30, 0, 0, 0.8);
    border: 2px solid #ff3333;
    color: #ff3333;
    text-align: center;
    line-height: 46px;
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff3333;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ff1a1a;
    color: #ff6666;
    font-size: 0.9em;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .title {
        font-size: 1.8em;
        letter-spacing: 5px;
    }

    .subtitle {
        font-size: 0.9em;
    }

    .movie-image {
        height: 400px;
    }

    .movie-title {
        font-size: 1.4em;
    }

    .stat-value {
        font-size: 1.8em;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }

    .header-left {
        align-items: center;
    }

    .title {
        font-size: 1.3em;
        letter-spacing: 2px;
        text-align: center;
    }

    .subtitle {
        text-align: center;
    }

    .movies-grid {
        gap: 15px;
    }

    #moviesGrid {
        gap: 15px;
    }

    .movie-image {
        height: 350px;
    }
}
