/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57, #48dbfb, #0abde3);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0" stop-color="%23ff6b6b"/><stop offset="1" stop-color="%23764ba2"/></radialGradient></defs><rect width="100" height="100" fill="url(%23a)"/></svg>');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #f8f9fa;
}

/* Content Sections */
.content-section {
    background: #fff;
    margin: 40px 0;
    padding: 60px 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;
    color: #555;
    margin: 40px 0 20px;
    background: linear-gradient(45deg, #48dbfb, #0abde3, #5f27cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #666;
    margin: 20px 0 15px;
    font-weight: 600;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #f1f2f6;
    line-height: 1.6;
}

/* Actor Cards */
.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.actor-card {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.actor-card:hover {
    transform: scale(1.05);
}

.actor-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Platform Cards */
.streaming-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.platform-card {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: #333;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-3px);
}

/* Genre Cards */
.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.genre-card {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

/* Trends List */
.trends-list {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.trend-item {
    background: linear-gradient(135deg, #a55eea, #26de81);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trend-item h4 {
    color: #fff;
    margin-bottom: 15px;
}

.trend-item p {
    color: #f1f2f6;
}

/* Image Sections */
.image-section {
    margin: 60px 0;
    text-align: center;
}

.responsive-image {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.responsive-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.responsive-image:hover img {
    transform: scale(1.05);
}

/* CTA Button */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nav h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #feca57;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #feca57;
}

.footer-info h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #48dbfb;
}

.footer-info p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

.conclusion {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.conclusion h2 {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.conclusion p {
    color: #f1f2f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.6rem;
    }
    
    .logo h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .actors-grid,
    .streaming-platforms {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Animation for Page Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Additional Color Gradients for Visual Appeal */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-form-container {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57);
    color: #fff;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #f1f2f6;
    margin-bottom: 5px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
}

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

.social-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.faq-item {
    background: linear-gradient(135deg, #a55eea, #26de81);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #f1f2f6;
    line-height: 1.6;
}

/* Hours Grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.hours-card {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    padding: 25px;
    border-radius: 15px;
    color: #333;
    text-align: center;
    transition: transform 0.3s ease;
}

.hours-card:hover {
    transform: scale(1.05);
}

.hours-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hours-card p {
    color: #555;
    margin-bottom: 8px;
}

/* Terms and Privacy Page Styles */
.terms-last-updated,
.privacy-last-updated {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.terms-last-updated p,
.privacy-last-updated p {
    margin: 0;
    font-weight: 600;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-acknowledgment,
.privacy-summary {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.terms-acknowledgment h3,
.privacy-summary h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.terms-acknowledgment p,
.privacy-summary p {
    color: #f1f2f6;
    margin-bottom: 15px;
}

.contact-details {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-details h3 {
    color: #fff;
    margin-bottom: 15px;
}

.contact-details ul {
    list-style: none;
    padding-left: 0;
}

.contact-details ul li {
    color: #f1f2f6;
    margin-bottom: 10px;
}

.contact-details a {
    color: #feca57;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for Contact and Legal Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .faq-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-card {
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .terms-acknowledgment,
    .privacy-summary,
    .contact-details {
        padding: 20px;
    }
}
