* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #0d0d0d;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #FF6B35;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFA500;
}


.hero {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 5px solid #FF6B35;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-family: 'Black Ops One', cursive;
    font-size: 80px;
    color: #ffffff;
    text-shadow: 
        0 0 10px #FF6B35,
        0 0 20px #FF6B35,
        0 0 30px #FF4500,
        0 0 40px #FF4500,
        0 0 70px #FFA500,
        0 0 80px #FFA500,
        0 0 100px #FFD700,
        5px 5px 0px #000000,
        -2px -2px 0px #000000,
        2px -2px 0px #000000,
        -2px 2px 0px #000000;
    letter-spacing: 8px;
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 10px #FF6B35,
            0 0 20px #FF6B35,
            0 0 30px #FF4500,
            0 0 40px #FF4500,
            0 0 70px #FFA500,
            0 0 80px #FFA500,
            0 0 100px #FFD700,
            5px 5px 0px #000000,
            -2px -2px 0px #000000,
            2px -2px 0px #000000,
            -2px 2px 0px #000000;
    }
    20%, 24%, 55% {
        text-shadow: 
            0 0 5px #FF6B35,
            5px 5px 0px #000000,
            -2px -2px 0px #000000,
            2px -2px 0px #000000,
            -2px 2px 0px #000000;
    }
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
    border: 2px solid transparent;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    transform: scale(1.1);
    border-color: #FFA500;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 0 15px rgba(240, 148, 51, 0.5);
}

.social-icon.facebook:hover {
    background-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.social-icon.twitter:hover {
    background-color: #000000;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

.social-icon.youtube:hover {
    background-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.social-icon.whatsapp:hover {
    background-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.main-content {
    padding: 60px 0;
}

.trending-section {
    margin-bottom: 40px;
}

.section-title {
    color: #FF6B35;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 4px solid #FFA500;
    padding-left: 15px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 165, 0, 0.05));
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 3px solid #FF6B35;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trending-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 165, 0, 0.1));
    transform: translateX(10px);
    border-left-color: #FFA500;
        box-shadow: 0 0 15px rgba(255, 187, 0, 0.863);
}

.featured-cards {
    margin: 60px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
    border-color: #FFA500;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card h3 {
    color: #FF6B35;
    margin-bottom: 10px;
    font-size: 20px;
}

.card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.movie-promo {
    position: fixed;
    right: 20px;
    top: 150px;
    width: 300px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #FF6B35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    z-index: 100;
}

.movie-promo h2 {
    color: #FF6B35;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.movie-promo img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.promo-text {
    color: #FFA500;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.gallery-section {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05), rgba(255, 165, 0, 0.02));
    padding: 80px 0;
    margin: 60px 0;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.gallery-title {
    color: #FF6B35;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 165, 0, 0.2);
    border-color: #FFA500;
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-content {
    padding: 20px;
}

.gallery-card h3 {
    color: #FFA500;
    margin-bottom: 10px;
    font-size: 18px;
}

.gallery-card p {
    color: #aaaaaa;
    font-size: 14px;
}

.bottom-hero {
    margin: 60px 0;
}

.bottom-hero-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.footer {
    background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    padding: 60px 0 30px;
    border-top: 3px solid #FF6B35;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #FF6B35;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFA500;
}

.footer-logo {
    margin-bottom: 15px;
    border: 2px solid #FF6B35;
    border-radius: 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link:hover {
    color: #FFA500;
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .movie-promo {
        position: static;
        width: 100%;
        margin: 40px 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }
    
    .gallery-title {
        font-size: 28px;
    }
    
    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.logo {
    position: fixed;
    right: 20px;
    top: 150px;
    width: 100px;
    height: 100px;
    animation: spin 5s linear infinite;
    filter: drop-shadow(0 0 5px #FF6B00) drop-shadow(0 0 20px #FFD100);
    transform-origin: center;
    z-index: 999;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
