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

:root {
    /* Kmanju Cinema Brand Colors */
    --kmanju-gold: #D4AF37;
    --kmanju-gold-light: #F4E4BC;
    --kmanju-gold-dark: #B8941F;
    --kmanju-black: #000000;
    --kmanju-white: #FFFFFF;
    --kmanju-gray: #1a1a1a;
    
    /* Neon Green Accent Colors */
    --neon-green: #39FF14;
    --neon-green-light: #7FFF00;
    --neon-green-dark: #32CD32;
    --neon-green-glow: 0 0 20px rgba(57, 255, 20, 0.6);
    
    /* Base colors */
    --white: #ffffff;
    --off-white: #f8f5fa;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    --black: #000000;
    
    /* Gradients */
    --kmanju-gradient-1: linear-gradient(135deg, #D4AF37 0%, #E5D08C 100%);
    --kmanju-gradient-2: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    --kmanju-gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --neon-gradient: linear-gradient(135deg, #39FF14 0%, #7FFF00 100%);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(212,175,55,0.1);
    --shadow-medium: 0 5px 20px rgba(212,175,55,0.15);
    --shadow-heavy: 0 10px 40px rgba(212,175,55,0.2);
    --neon-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--kmanju-black);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px) brightness(0.9);
    z-index: 1000;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.98);
    border-color: rgba(212, 175, 55, 0.5);
}

.navbar.scrolled {
    top: 20px;
    padding: 12px 40px;
    background: rgba(0, 0, 0, 0.98);
    border-color: rgba(212, 175, 55, 0.4);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-right: 20px;
    position: relative;
    height: 100px;
    margin: -25px 0;
}

.logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: var(--kmanju-gold);
}

.logo-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    position: relative;
    z-index: 1;
    /* Clean display with subtle glow */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 5px 0;
    opacity: 0.9;
}

.nav-links a:hover {
    color: var(--white);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: var(--primary-gold);
}

.nav-links li.active a::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 20px 0;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--kmanju-gold);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 13px;
    text-transform: none;
}

.dropdown-menu a:hover {
    background: var(--kmanju-gradient-1);
    color: var(--kmanju-black);
    text-shadow: none;
}

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

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section - Override for minimal design */
.hero-section,
.hero-section-minimal {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    background: transparent;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--light-gray);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(221,160,221,0.3) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 82px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -3px;
    line-height: 1;
    color: var(--dark-gray);
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 28px;
    color: var(--secondary-gold);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--kmanju-black);
    border: 3px solid var(--white);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    border: 3px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--kmanju-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--kmanju-black);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.indicator {
    width: 50px;
    height: 4px;
    background: rgba(106,13,173,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.indicator.active {
    background: var(--primary-gold);
    width: 80px;
}

/* Section Common Styles */
section {
    padding: 80px 0 0 0;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.section-title span {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--white);
    margin: 0 auto 25px;
    border-radius: 3px;
    opacity: 0.8;
}

.section-subtitle {
    font-size: 22px;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Featured Films Section */
.featured-films-section {
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    backdrop-filter: blur(5px);
    border-top: none;
    border-bottom: none;
}

/* Featured Films Grid */
.featured-films-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.featured-film-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #111;
    aspect-ratio: 2/3;
}

.featured-film-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.film-poster {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-film-card:hover .film-poster img {
    transform: scale(1.05);
}

.film-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.film-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    line-height: 1.2;
}

.film-overlay p {
    font-size: 14px;
    opacity: 0.8;
    color: var(--white);
    margin: 0;
}

/* Films CTA Button */
.films-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-films-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .featured-films-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .film-overlay h3 {
        font-size: 16px;
    }
    
    .film-overlay p {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .featured-films-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* Legacy Section - Horizontal Scroll Design */
.legacy-section {
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 0;
    backdrop-filter: blur(5px);
    border-top: none;
    border-bottom: none;
}

.legacy-scroll-container {
    overflow: hidden;
    padding: 20px 0;
    margin: 50px 0;
    position: relative;
}

.legacy-stats {
    display: flex;
    gap: 80px;
    padding: 0 20px;
    min-width: max-content;
    animation: scroll-infinite 120s linear infinite;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
    flex-shrink: 0;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.stat-item:hover .stat-label {
    color: var(--kmanju-gold-light);
    opacity: 1;
    text-shadow: 0 0 10px var(--kmanju-gold);
}


/* Featured Films - Unique Card Design */
.featured-films {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

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

.film-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: var(--shadow-light);
}

.film-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.8);
}

.film-poster {
    position: relative;
    padding-bottom: 140%;
    overflow: hidden;
}

.film-poster img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.film-card:hover .film-poster img {
    transform: scale(1.1);
}

.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(106,13,173,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.film-card:hover .film-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--kmanju-gold);
    color: var(--kmanju-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(212,175,55,0.2);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--kmanju-gold-light);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

.film-info {
    padding: 30px;
    background: transparent;
}

.film-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.film-genre {
    color: var(--white);
    font-size: 16px;
    opacity: 0.8;
}

.film-year {
    color: var(--kmanju-gold);
    font-size: 16px;
    margin-top: 8px;
    font-weight: 600;
}

/* News Section - Magazine Style */
.news-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--kmanju-gold);
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--kmanju-gold-light);
    background: rgba(0, 0, 0, 0.8);
}

.news-card.featured {
    grid-column: 1;
    grid-row: span 3;
}

.news-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-content {
    padding: 35px;
}

.news-date {
    color: var(--kmanju-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.news-title {
    font-size: 28px;
    margin: 15px 0 20px;
    color: var(--white);
    line-height: 1.3;
}

.news-excerpt {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.8;
}

.read-more {
    color: var(--kmanju-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.read-more:hover {
    gap: 15px;
    color: var(--kmanju-gold-light);
    text-shadow: 0 0 10px var(--kmanju-gold);
}

/* Awards Section - Trophy Design */
.awards-section {
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    backdrop-filter: blur(5px);
}

.awards-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.award-item {
    text-align: center;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--kmanju-gold);
    backdrop-filter: blur(10px);
}

.award-item:hover {
    transform: translateY(-20px) rotateY(10deg);
    box-shadow: 0 10px 30px var(--kmanju-gold);
    border-color: var(--kmanju-gold-light);
    background: rgba(0, 0, 0, 0.8);
}

.award-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: inline-block;
    animation: pulse 2s infinite;
    color: var(--kmanju-gold);
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.3));
}

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

.award-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.award-count {
    font-size: 48px;
    font-weight: 700;
    color: var(--kmanju-gold-light);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Story Section - Split Design */
.story-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text .section-title {
    text-align: left;
}

.story-text .title-underline {
    margin-left: 0;
}

.story-paragraph {
    font-size: 20px;
    line-height: 1.9;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.8;
}

.story-image {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-heavy);
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--kmanju-gold);
    border-radius: 30px;
    z-index: -1;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section - Masonry Style */
.gallery-section {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 2px solid var(--kmanju-gold);
}

.gallery-item:nth-child(odd) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--kmanju-gold);
    border-color: var(--kmanju-gold-light);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Fan Zone - Interactive Design */
.fanzone-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.fanzone-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.fan-activity {
    text-align: center;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--kmanju-gold);
    backdrop-filter: blur(10px);
}

.fan-activity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--kmanju-gradient-1);
}

.fan-activity:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 30px var(--kmanju-gold);
    border-color: var(--kmanju-gold-light);
    background: rgba(0, 0, 0, 0.8);
}

.activity-icon {
    font-size: 72px;
    margin-bottom: 30px;
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--kmanju-gold);
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.3));
}

.fan-activity:hover .activity-icon {
    transform: rotateY(360deg);
}

.fan-activity h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.fan-activity p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
}

/* Collaborate Section - Professional Design */
.collaborate-section {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.collaborate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.collab-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid var(--kmanju-gold);
    backdrop-filter: blur(10px);
}

.collab-card:hover {
    transform: translateY(-10px);
    border-color: var(--kmanju-gold-light);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 30px var(--kmanju-gold);
}

.collab-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--white);
}

.collab-card p {
    color: var(--white);
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
}

/* Contact Section - Modern Design */
.contact-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--white);
}

.contact-address,
.contact-detail {
    color: var(--white);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 18px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kmanju-gradient-1);
    color: var(--kmanju-black);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--kmanju-gold);
    background: var(--kmanju-gold-light);
    color: var(--kmanju-black);
}

.contact-form {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    border: 2px solid var(--kmanju-gold);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--kmanju-gold);
    color: var(--white);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--kmanju-gold-light);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px var(--kmanju-gold);
}

/* Footer - Elegant Design */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 80px 0 30px;
    color: var(--white);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--kmanju-gold);
}

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

.footer-column h4 {
    margin-bottom: 25px;
    color: var(--kmanju-gold);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-text {
    animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .legacy-stats {
        gap: 60px;
        padding: 0 10px;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-item:nth-child(odd) {
        grid-row: span 1;
    }
}