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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: 100vh;
}

.header-main-yweb {
    background: linear-gradient(90deg, #16213e 0%, #0f3460 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container-yweb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-yweb {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e94560;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-yweb:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.nav-menu-yweb {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu-yweb a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu-yweb a:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.hero-section-yweb {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.hero-banner-yweb {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-banner-yweb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-yweb {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 3rem;
    color: white;
}

.hero-overlay-yweb h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-overlay-yweb p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
}

.content-section-yweb {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title-yweb {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #e94560;
    border-left: 5px solid #e94560;
    padding-left: 1rem;
}

.movie-grid-yweb {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.movie-card-yweb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-card-yweb:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
    border-color: #e94560;
}

.movie-poster-yweb {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.movie-info-yweb {
    padding: 1.5rem;
}

.movie-info-yweb h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.movie-meta-yweb {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.8rem;
}

.movie-description-yweb {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.rating-yweb {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 0.5rem;
}

.footer-main-yweb {
    background: #0a0a0a;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
    border-top: 3px solid #e94560;
}

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

.footer-section-yweb h3 {
    color: #e94560;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section-yweb p,
.footer-section-yweb ul {
    color: #999;
    line-height: 1.8;
}

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

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

.footer-section-yweb a:hover {
    color: #e94560;
}

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

.text-content-yweb {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    line-height: 1.8;
}

.text-content-yweb h3 {
    color: #e94560;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.text-content-yweb p {
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.contact-form-yweb {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.form-group-yweb {
    margin-bottom: 1.5rem;
}

.form-group-yweb label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group-yweb input,
.form-group-yweb textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group-yweb textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-yweb {
    background: #e94560;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-yweb:hover {
    background: #d63851;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-menu-yweb {
        flex-direction: column;
        gap: 1rem;
    }

    .movie-grid-yweb {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .hero-overlay-yweb h2 {
        font-size: 1.8rem;
    }
}