* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Righteous', cursive;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(90deg, #ff1493, #00ffff, #ffd700);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #ffffff;
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.5), 0 5px 20px rgba(0, 255, 255, 0.3);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bangers', cursive;
    text-shadow: 2px 2px 0px #ffffff;
}

.nav-menu a:hover {
    color: #ffffff;
    transform: scale(1.1);
    text-shadow: 
        2px 2px 0px #000000,
        0 0 10px #ff1493;
}

.hero {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 6px solid #ff1493;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5), 0 0 30px rgba(0, 255, 255, 0.5);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(80%) saturate(150%) hue-rotate(10deg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3), rgba(10, 10, 10, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-family: 'Bungee Shade', cursive;
    font-size: 110px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff1493, #00ffff, #ffd700, #39ff14);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        5px 5px 0px #000000,
        -3px -3px 0px #ffffff;
    letter-spacing: 15px;
    margin-bottom: 15px;
    animation: psychedelic 4s ease-in-out infinite;
    transform: skewX(-5deg);
}

@keyframes psychedelic {
    0%, 100% {
        background-position: 0% 50%;
        transform: skewX(-5deg) scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: skewX(5deg) scale(1.05);
    }
}

.hero-subtitle {
    font-family: 'Righteous', cursive;
    font-size: 40px;
    color: #00ffff;
    text-shadow: 
        0 0 20px #ff1493,
        0 0 30px #00ffff,
        3px 3px 0px #000000;
    letter-spacing: 12px;
}

.main-content {
    padding: 60px 0;
}

.trending-section {
    margin-bottom: 40px;
}

.section-title {
    background: linear-gradient(90deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 6px solid #ffd700;
    padding-left: 15px;
    font-family: 'Bangers', cursive;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(0, 255, 255, 0.1));
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 5px solid #ff1493;
    border-right: 2px solid #00ffff;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.trending-item:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.4), rgba(0, 255, 255, 0.2));
    transform: translateX(15px) scale(1.02);
    border-left-color: #00ffff;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
}

.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, #1a1a1a, #0a0a0a);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff1493, #00ffff, #ffd700, #39ff14);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 
        0 15px 40px rgba(255, 20, 147, 0.5),
        0 15px 40px rgba(0, 255, 255, 0.3);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(130%) contrast(110%);
}

.card-content {
    padding: 20px;
}

.card h3 {
    background: linear-gradient(90deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-size: 22px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.card p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
}

.movie-promo {
    position: fixed;
    right: 20px;
    top: 150px;
    width: 300px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 20px;
    border-radius: 15px;
    border: 4px solid #ff1493;
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4);
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.gallery-section {
    background: linear-gradient(180deg, 
        rgba(255, 20, 147, 0.1), 
        rgba(0, 255, 255, 0.05),
        rgba(255, 215, 0, 0.1),
        rgba(0, 255, 255, 0.05),
        rgba(255, 20, 147, 0.1));
    padding: 80px 0;
    margin: 60px 0;
    border-top: 4px solid #ff1493;
    border-bottom: 4px solid #00ffff;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 20, 147, 0.02) 20px, rgba(255, 20, 147, 0.02) 40px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0, 255, 255, 0.02) 20px, rgba(0, 255, 255, 0.02) 40px);
    pointer-events: none;
}

.gallery-title {
    background: linear-gradient(90deg, #ff1493, #00ffff, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Bowlby One', cursive;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.gallery-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.gallery-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 15px 40px rgba(255, 20, 147, 0.6),
        0 15px 40px rgba(0, 255, 255, 0.4);
    border-color: #00ffff;
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(130%) contrast(110%);
}

.gallery-content {
    padding: 20px;
}

.gallery-card h3 {
    background: linear-gradient(90deg, #ffd700, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.gallery-card p {
    color: #c0c0c0;
    font-size: 14px;
}

.bottom-hero {
    margin: 60px 0;
}

.bottom-hero-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid #ff1493;
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.5),
        0 0 30px rgba(0, 255, 255, 0.5);
    filter: saturate(130%);
}

.footer {
    background: linear-gradient(180deg, #000000, #0a0a0a);
    padding: 60px 0 30px;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, #ff1493, #00ffff, #ffd700) 1;
    box-shadow: 0 -5px 20px rgba(255, 20, 147, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    background: linear-gradient(90deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'Bangers', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    color: #d0d0d0;
    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: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff1493;
    transform: translateX(5px);
    display: inline-block;
}

.footer-logo {
    margin-bottom: 15px;
    border: 4px solid #ff1493;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link:hover {
    color: #00ffff;
    background: linear-gradient(90deg, rgba(255, 20, 147, 0.2), rgba(0, 255, 255, 0.1));
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 60px;
        letter-spacing: 8px;
    }
    
    .hero-subtitle {
        font-size: 24px;
        letter-spacing: 6px;
    }
    
    .gallery-title {
        font-size: 36px;
    }
    
    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.logo {
    position: fixed;
    right: 20px;
    top: 150px;
    width: 100px;
    height: 150px;
    animation: spin 5s linear infinite;
    filter: drop-shadow(0 0 5px #000000) drop-shadow(0 0 20px rgb(116, 113, 113));
    transform-origin: center;
    z-index: 999;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}