@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #121212;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #121212;
    width: 100%;
    overflow-x: hidden;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #F8CB2E 0%, #F8CB2E 100%);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-banner span {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    text-align: left;
}

.top-banner.hidden {
    transform: translateY(-100%);
}

/* Header */
.header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease;
}

.header.banner-hidden {
    top: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.header.banner-hidden .header-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 29px;
    margin: 10px auto;
    padding: 12px 17px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-icon {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .logo-icon {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .header-right {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        transition: max-height 0.3s ease, padding 0.3s ease;
        order: 3;
    }
    
    .header-right.active {
        max-height: 400px;
        padding: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 18px;
        text-align: center;
    }
    
    .btn-explore {
        padding: 12px 32px;
        font-size: 16px;
        width: 100%;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.btn-explore {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-explore:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
    }
    
    .header.banner-hidden .header-container {
        padding: 8px 15px;
        margin: 10px 20px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .btn-explore {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 15px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 10px;
    }
    
    .btn-explore {
        padding: 6px 12px;
        font-size: 10px;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-left {
    display: flex;
    gap: 40px;
    flex: 1;
    opacity: 1;
}

.nav-left a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-left a:hover {
    opacity: 0.7;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-ticket {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* Hero Section */
.hero-marquee-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #121212;
}

.hero {
    min-height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    background-color: #B4DEEA;
    position: relative;
    overflow: hidden;
}

.hero-bg-layer-0,
.hero-bg-layer-1,
.hero-bg-layer-2,
.hero-bg-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.hero-bg-layer-0 {
    z-index: 0;
}

.hero-bg-layer-1 {
    z-index: 0;
}

.hero-bg-layer-2 {
    z-index: 2;
    margin-top: 17px;
    left: -14px;
}

.hero-bg-layer-3 {
    z-index: 0;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.596) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
}

.hero-canvas-video {
    position: absolute;
    top: 18%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 407px;
    height: 185px;
    object-fit: cover;
    border-radius: 3px;
    z-index: 3;
    transition: transform 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.billboard-container {
    position: absolute;
    top: 18%;
    left: 75%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: transform 0.3s ease-out;
}

.billboard-frame {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), inset 0 2px 5px rgba(255, 255, 255, 0.1);
}

.billboard-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff9500 0%, #ff6b35 100%);
    border-radius: 10px;
    z-index: -1;
}

.billboard-stand {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 80px;
    background: linear-gradient(to bottom, #3a3a3a 0%, #2c2c2c 100%);
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.billboard-stand::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: linear-gradient(to bottom, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
}

.billboard-stand::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: #3a3a3a;
    border-radius: 3px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 10px;
    margin: 0;
}

.hero-subtitle {
    font-size: 55px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 10px 0 0 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 5px;
}

.hero-tree-left {
    position: absolute;
    bottom: 0;
    left: -20px;
    height: 50vh;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.3s ease-out;
}

.hero-tree-right {
    position: absolute;
    bottom: 0;
    right: -20px;
    height: 50vh;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.3s ease-out;
}

.hero-bird-left {
    position: absolute;
    bottom: -100px;
    left: 0px;
    height: 50vh;
    z-index: 55;
    pointer-events: none;
}

.hero-bird-right {
    position: absolute;
    bottom: -100px;
    right: 0px;
    height: 50vh;
    z-index: 55;
    pointer-events: none;
}

.hero-gate {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 60%;
    z-index: 5;
    width: fit-content;
}



.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 10px;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
}

.hero-subtitle {
    font-size: 55px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 10px 0 0 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 5px;
}

.hero-content {
    text-align: center;
}

.hero-content h2 {
    font-size: 36px;
    color: #666;
    font-weight: 300;
}

/* Marquee Section */
.marquee-bg-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.marquee {
    background-color: transparent;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    background-color: #121212;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    margin-right: 30px;
}

.marquee-content span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Festival Highlight Section */
.festival-highlight {
    background-color: #121212;
    padding: 0px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.ribbon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.ribbon-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    height: 100%;
}

.ribbon-part {
    width: 50px;
    height: 100%;
    border-right: 2px solid black;
}

.highlight-container {
    position: relative;
    width: 70vw;
    max-width: 1200px;
    z-index: 1;
}

.highlight-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 5px;
    bottom: -15px;
    background: linear-gradient(to bottom, #e8e4d8 0%, #d9d3c3 100%);
    transform: rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: -1;
    border-radius: 8px;
}

.highlight-card {
    background: linear-gradient(to bottom, #f5f1e8 0%, #ebe5d6 100%);
    border: none;
    border-radius: 8px;
    padding: 46px 47px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    transform: rotate(359deg);
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.02) 2px, rgba(139, 69, 19, 0.02) 3px);
    pointer-events: none;
}

.polaroid-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.polaroid {
    background: #fff;
    padding: 10px 10px 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: rotate(var(--rot));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: polaroidDrop 0.8s ease backwards;
    animation-delay: var(--delay);
    max-width: 220px;
    position: relative;
}

.polaroid::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    background: rgba(255, 248, 220, 0.7);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes polaroidDrop {
    from { opacity: 0; transform: translateY(-100px) rotate(var(--rot)); }
    to { opacity: 1; transform: translateY(0) rotate(var(--rot)); }
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.polaroid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.polaroid span {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: 'Yellowtail', cursive;
    font-size: 18px;
    color: #333;
}

.content-box {
    position: relative;
}

.year-stamp {
    font-size: 100px;
    font-weight: 900;
    color: #8B4513;
    line-height: 0.8;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 5px;
}

.festival-name {
    font-size: 40px;
    font-weight: 900;
    color: #2c1810;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.edition-tag {
    display: inline-block;
    background: #d4a574;
    color: #2c1810;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 25px;
    transform: rotate(-2deg);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.festival-desc {
    color: #4a3728;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-video {
    background: #8B4513;
    color: #fff;
    border: 2px solid #5d2e0f;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

.btn-video:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.video-icon {
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.btn-video span:last-child {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .highlight-card {
        padding: 50px 40px;
        gap: 40px;
    }
    
    .year-stamp {
        font-size: 100px;
    }
    
    .festival-name {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .festival-highlight {
        padding: 60px 15px;
        min-height: auto;
    }

    .highlight-container {
        position: relative;
        width: 84vw;
    }

    .highlight-container::before{
        content: '';
        position: absolute;
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
        height: 100%;
        background: linear-gradient(to bottom, #e8e4d8 0%, #d9d3c3 100%);
        transform: rotate(3deg);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        z-index: -1;
        border-radius: 8px;
    }
    
    .ribbon-part {
        width: 30px;
    }
    
    .highlight-card {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 13px;
    }
    
    .polaroid-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        position: relative;
        height: 200px;
    }
    
    .polaroid {
        position: absolute;
        max-width: none;
    }
    
    .polaroid:nth-child(1) {
        width: 110px;
        left: 0;
        z-index: 3;
        transform: rotate(-8deg);
    }
    
    .polaroid:nth-child(2) {
        width: 100px;
        left: 50%;
        transform: translateX(-50%) rotate(2deg);
        z-index: 2;
    }
    
    .polaroid:nth-child(3) {
        width: 100px;
        right: 0;
        z-index: 1;
        transform: rotate(6deg);
    }
    
    .polaroid:nth-child(4) {
        display: none;
    }
    
    .year-stamp {
        font-size: 80px;
    }
    
    .festival-name {
        font-size: 36px;
    }
    
    .festival-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .highlight-card {
        padding: 30px 20px;
    }
    
    .polaroid {
        padding: 8px 8px 10px;
    }
    
    .polaroid span {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .year-stamp {
        font-size: 60px;
        -webkit-text-stroke: 2px #ff6b35;
    }
    
    .festival-name {
        font-size: 28px;
    }
    
    .edition-tag {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .festival-desc {
        font-size: 14px;
    }
    
    .btn-video {
        padding: 15px 30px;
        font-size: 14px;
    }
}

/* About Festival Section */
.kyf-legacy-section {
    padding: 80px 5%;
    background-color: #fdfdfb;
    font-family: Arial, sans-serif;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
}

.kyf-legacy-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 40px;
}

.kyf-legacy-text-top {
    position: relative;
    padding-top: 40px;
}

.kyf-quote-mark {
    font-size: 80px;
    font-family: serif;
    position: absolute;
    top: -10px;
    left: -10px;
    color: #1a1a1a;
}

.kyf-legacy-paragraph {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.kyf-legacy-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 50px);
    gap: 15px;
}

.kyf-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kyf-c-1 { grid-column: 2 / 8; grid-row: 1 / 5; }
.kyf-c-2 { grid-column: 8 / 13; grid-row: 1 / 4; }
.kyf-c-3 { grid-column: 8 / 13; grid-row: 4 / 9; }
.kyf-c-4 { grid-column: 1 / 8; grid-row: 5 / 9; }

.kyf-legacy-bottom-left {
    align-self: end;
}

.kyf-brush-title {
    font-family: 'Brush Script MT', cursive;
    font-size: 4rem;
    color: #1a1a1a;
    margin: 0;
    border-bottom: 6px solid #e2decb;
    display: inline-block;
    padding-bottom: 5px;
}

.kyf-legacy-bottom-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.kyf-stat-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.kyf-stat-flex::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 15px;
    background: #e2decb;
    top: -20px;
    left: -10px;
    transform: skewX(-45deg);
}

.kyf-big-num {
    font-size: 5rem;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1;
}

.kyf-stat-desc {
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.2;
    text-transform: none;
    margin: 0;
}

@media (max-width: 991px) {
    .kyf-legacy-grid {
        grid-template-columns: 1fr;
    }
    .kyf-legacy-bottom-right {
        justify-content: flex-start;
        margin-top: 20px;
    }

}

/* About Section (Bottom People Image) */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    background-color: #f5f5f5;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
    position: relative;
}

.about-circle-cut {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 90%;
    background-color: #6b171a99;
    border-radius: 50%;
    z-index: 0;
    margin-bottom: -200px;
}

.about-image {
    z-index: 0;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .about-section {
        padding: 0;
    }
    
    .about-image-desktop {
        display: none;
    }
    
    .about-image-mobile {
        width: 90%;
        display: block;

    }

    .about-circle-cut {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 99%;
    height: 101%;
    background-color: #6b171a99;
    border-radius: 50%;
    z-index: 0;
    margin-bottom: -85px;
}
}

/* What to Expect Section */
.expect-section {
    background-color: #1a1a1a;
    padding: 0;
    position: relative;
}

.expect-wrapper {
    margin: 0 auto;
    position: relative;
}

.expect-top-round {
    background-color: #F5F2F2;
    height: 80px;
    border-radius: 0 0 50px 50px;
    border-left: 2px solid #000000;
    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5; */
}

.expect-bottom-round {
    background-color: #F5F2F2;
    height: 80px;
    border-radius: 50px 50px 0 0;
    border-left: 2px solid #000000;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    /* position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5; */
}

.expect-container {
    display: flex;
    align-items: stretch;
    position: relative;
    background-color: #1a1a1a;
    padding: 0px;
    z-index: 1;
}

.expect-left {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    padding: 40px;
}

.expect-heading {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: -2px;
    line-height: 0.8;
}

.expect-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: relative;
}

.expect-item {
    padding: 16px 0px;
    border-bottom: 3px solid #000000;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}



.expect-item:last-child {
    border-bottom: none;
}

.expect-item:nth-child(1) {
    background-color: #6B171A;
}

.expect-item:nth-child(2) {
    background-color: #B0BCCA;
}

.expect-item:nth-child(3) {
    background-color: #111318;
}

.expect-item:nth-child(4) {
    background-color: #6B171A;
}

.expect-item:nth-child(5) {
    background-color: #B0BCCA;
}

.expect-item h3 {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
}



.expect-image-container {
    position: absolute;
    width: 400px;
    height: 500px;
    pointer-events: none;
    z-index: 10;
}

.expect-hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 4px solid #000000;
    opacity: 0;
    position: absolute;
    transform: scale(0.8);
}

.expect-hover-img.active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .expect-left {
        flex: 0 0 250px;
    }
    
    .expect-heading {
        font-size: 50px;
    }
    
    .expect-item {
        padding: 40px 60px;
    }
    
    .expect-item h3 {
        font-size: 38px;
    }
    
    .expect-image-container {
        width: 300px;
        height: 400px;
        right: 80px;
    }
}

@media (max-width: 768px) {
    .expect-container {
        flex-direction: column;
    }
    
    .expect-left {
        flex: none;
        padding: 30px;
    }
    
    .expect-heading {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 48px;
    }
    
    .expect-item {
        padding: 30px 40px;
    }
    
    .expect-item h3 {
        font-size: 28px;
    }
    
    .expect-image-container {
        display: none;
    }
    
    .expect-top-round {
        height: 50px;
        border-radius: 0 0 30px 30px;
        border-left: 2px solid #000000;
        border-bottom: 2px solid #000000;
        border-right: 2px solid #000000;
        border-top: none;
        z-index: 2;
    }
    
    .expect-bottom-round {
        height: 50px;
        border-radius: 30px 30px 0 0;
        border-left: 2px solid #000000;
        border-top: 2px solid #000000;
        border-right: 2px solid #000000;
        border-bottom: none;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .expect-heading {
        font-size: 36px;
    }
    
    .expect-item {
        padding: 20px 30px;
    }
    
    .expect-item h3 {
        font-size: 22px;
    }
    
    .expect-top-round {
        height: 68px;
        border-radius: 0 0 51px 51px;
        border-left: 2px solid #000000;
        border-bottom: 2px solid #000000;
        border-right: 2px solid #000000;
        border-top: none;
    }
    
    .expect-bottom-round {
        height: 68px;
        border-radius: 51px 51px 0 0;
        border-left: 2px solid #000000;
        border-top: 2px solid #000000;
        border-right: 2px solid #000000;
        border-bottom: none;
    }
}

.item-hover-img {
    position: absolute;
    width: 25vw;
    height: 30vw;
    max-width: 340px;
    max-height: 400px;
    min-width: 200px;
    min-height: 250px;
    object-fit: cover;
    border-radius: 50px;
    border: 2px solid #000000;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.left-img {
    left: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0.8) rotate(-8deg);
}

.right-img {
    right: 70px;
    top: 50%;
    transform: translateY(-50%) scale(0.8) rotate(5deg);
}

.expect-item:hover .item-hover-img {
    opacity: 1;
}

.expect-item:hover .left-img {
    transform: translateY(-50%) scale(1) rotate(-8deg);
}

.expect-item:hover .right-img {
    transform: translateY(-50%) scale(1) rotate(5deg);
}

/* Custom Cursor */
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    will-change: transform;
    transform: translateZ(0);
}

.cursor-icon {
    width: 40px;
    height: 40px;
    transform: translateY(-20px) translateZ(0);
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.cursor-text {
    background: #ff6b35;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    display: block;
    transform: translateZ(0);
}





@media (max-width: 1024px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor {
        display: none;
    }
}


.hero-cloud-left {
    position: absolute;
    top: 1%;
    left: 20%;
    width: 400px;
    z-index: 0;
    opacity: 0.8;
    animation: cloud-drift-left 90s linear infinite;
}

.hero-cloud-right {
    position: absolute;
    top: 1%;
    left: 50%;
    width: 400px;
    z-index: 0;
    opacity: 0.8;
    animation: cloud-drift-right 80s linear infinite;
}

@keyframes cloud-drift-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 600px)); }
}

@keyframes cloud-drift-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 400px)); }
}


.hot-air-balloon {
    position: absolute;
    top: 20%;
    right: 15%;
    z-index: 1;
    animation: balloon-float 6s ease-in-out infinite;
}

.balloon-img {
    width: 130px;
    display: block;
}

.balloon-rope {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 220px;
}

@keyframes balloon-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes rope-sway {
    0%, 100% { transform: translateX(-50%) rotate(0deg); transform-origin: top center; }
    50% { transform: translateX(-50%) rotate(3deg); transform-origin: top center; }
}


.hero-cloud-slow {
    position: absolute;
    top: 8%;
    left: -10%;
    width: 300px;
    z-index: 0;
    opacity: 0.7;
    animation: cloud-drift-slow 120s linear infinite;
}

@keyframes cloud-drift-slow {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 500px)); }
}

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero {
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: 8px;
    }
    
    .hero-subtitle {
        font-size: 45px;
        letter-spacing: 4px;
    }
    
    .hero-tree-left,
    .hero-tree-right {
        height: 60vh;
    }
    
    .hero-gate {
        height: 55%;
    }
    
    .hot-air-balloon {
        right: 10%;
    }
    
    .balloon-img {
        width: 110px;
    }
    
    .balloon-rope {
        height: 180px;
    }
    
    .hero-cloud-left {
        width: 200px;
    }
    
    .hero-cloud-right {
        width: 240px;
    }
    
    .hero-cloud-slow {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-text {
        top: 30%;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 38px;
        letter-spacing: 3px;
    }
    
    .hero-tree-left,
    .hero-tree-right {
        height: 50vh;
    }
    
    .hero-tree-left {
        left: -40px;
    }
    
    .hero-tree-right {
        right: -40px;
    }
    
    .hero-gate {
        height: 50%;
    }
    
    .hero-bird-left,
    .hero-bird-right {
        height: 30vh;
        top: 62%;
    }
    
    .hot-air-balloon {
        top: 15%;
        right: 5%;
    }
    
    .balloon-img {
        width: 90px;
    }
    
    .balloon-rope {
        height: 150px;
    }
    
    .hero-cloud-left {
        width: 200px;
        top: 2%;
    }
    
    .hero-cloud-right {
        width: 240px;
        top: 2%;
    }
    
    .hero-cloud-slow {
        width: 200px;
        top: 10%;
    }
    
    .marquee-content span {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-text {
        top: 34%;
        width: 90%;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 30px;
        letter-spacing: 2px;
    }
    
    .hero-tree-left,
    .hero-tree-right {
        height: 40vh;
    }
    
    .hero-tree-left {
        left: -60px;
    }
    
    .hero-bird-left,
    .hero-bird-right {
        height: 23vh;
        top: 62%;
    }
    
    .hero-tree-right {
        right: -60px;
    }
    
    .hero-gate {
        height: 34%;
        bottom: -1px;
    }
    
    
    
    .hot-air-balloon {
        top: 15%;
        right: 2%;
    }
    
    .balloon-img {
        width: 70px;
    }
    
    .balloon-rope {
        height: 120px;
    }
    
    .hero-cloud-left {
        width: 200px;
        top: 3%;
    }
    
    .hero-cloud-right {
        width: 240px;
        top: 3%;
    }
    
    .hero-cloud-slow {
        width: 200px;
        top: 12%;
    }
    
    .marquee {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .marquee-content span {
        font-size: 16px;
        margin-right: 20px;
    }
}

/* Footer Section */
.footer {
    background-color: #1a1a1a;
}

.footer-top {
    background: #ff6b35;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-main {
    padding: 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-about {
    color: #999;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
}

.footer-logo p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    line-height: 1.2;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-address {
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-contact p {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-form {
    display: flex;
    gap: 10px;
}

.footer-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333;
    background: #2a2a2a;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.footer-form input::placeholder {
    color: #666;
}

.footer-form button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.footer-form button:hover {
    background: #ff8c5a;
}

.footer-bottom {
    text-align: center;
    padding: 20px 40px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}

.footer-bottom span {
    color: #F8CB2E;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-brand {
        font-size: 36px;
    }
    
    .footer-main {
        padding: 40px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        font-size: 32px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-form button {
        width: 100%;
    }
}

/* Creative Contact Section */
.creative-contact-section {
    background: #121212;
    padding: 0;
    margin: 0;
}

.cc-wrapper {
    width: 100%;
    max-width: 100%;
    background: #6B171A;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
}

.cc-header {
    background: #F5F2F2;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
}

.cc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cc-logo img {
    width: 50px;
    height: 50px;
}

.cc-logo-text {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
}

.cc-title {
    font-family: 'Brush Script MT', cursive;
    font-size: 48px;
    color: #1a1a1a;
    text-align: center;
    flex: 1;
}

.cc-whatsapp {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.cc-whatsapp:hover {
    transform: scale(1.1);
}

.cc-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.cc-main {
    background: #6B171A;
    padding: 80px 60px 120px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.cc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    color: white;
}

.cc-column h3 {
    background: white;
    color: #1a1a1a;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cc-column h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Righteous', cursive;
    letter-spacing: 1px;
}

.cc-column p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.cc-link {
    color: white;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cc-link:hover {
    opacity: 0.7;
}

.cc-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cc-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.cc-social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cc-social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.cc-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 246px;
    overflow: hidden;
}

.cc-wave-text {
    font-size: 270px;
    font-weight: 900;
    color: #F5F2F2;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 20px;
    font-family: 'Righteous', cursive;
}

.cc-sticker {
    position: absolute;
    z-index: 10;
}

.cc-sticker-1 {
    bottom: 60px;
    left: 100px;
    width: 80px;
    height: 80px;
    background: #F8CB2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transform: rotate(-15deg);
    border: 4px solid white;
}

.cc-sticker-2 {
    bottom: 80px;
    left: 40%;
    width: 70px;
    height: 70px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transform: rotate(10deg);
    border: 4px solid white;
}

.cc-sticker-3 {
    bottom: 50px;
    left: 100px;
    background: white;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 40px;
    font-weight: 900;
    color: #6B171A;
    transform: rotate(-8deg);
    border: 3px solid #1a1a1a;
}

.cc-sticker-4 {
    bottom: 70px;
    right: 80px;
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transform: rotate(15deg);
    border: 4px solid white;
}

.cc-footer {
    background: #1a1a1a;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    margin: 0;
}

.cc-footer span {
    color: #F8CB2E;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .cc-header {
        padding: 30px 40px;
    }

    .cc-title {
        font-size: 36px;
    }

    .cc-main {
        padding: 60px 40px 100px;
    }

    .cc-grid {
        gap: 40px;
    }

    .cc-column h2 {
        font-size: 26px;
    }

    .cc-wave-text {
        font-size: 200px;
        bottom: -80px;
    }
}

@media (max-width: 768px) {
    .cc-header {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .cc-title {
        font-size: 32px;
    }

    .cc-main {
        padding: 40px 30px 80px;
    }

    .cc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cc-wave-text {
        font-size: 120px;
        bottom: -45px;
    }

    .cc-sticker {
        display: none;
    }
}

@media (max-width: 480px) {
    .cc-logo-text {
        font-size: 24px;
    }

    .cc-title {
        font-size: 28px;
    }

    .cc-column h2 {
        font-size: 22px;
    }

    .cc-wave-text {
        font-size: 154px;
        bottom: -54px;
    }
    
    .cc-wave-text::after {
        content: 'KYF';
    }
    
    .cc-wave-text {
        font-size: 0;
    }
    
    .cc-wave-text::after {
        font-size: 154px;
        margin-left: -143px;
    }
}

/* Festival Date Section */
:root {
    --kyf-orange: #ff5e00;
    --kyf-black: #1a1a1a;
    --kyf-neon: #e1ff80;
    --kyf-blue: #70a1ff;
}

.date-section {
    margin-top: -30px;
    background: #f5f2f2;
    padding: 0px 20px;
    border-left: solid 2px #000000;
    border-right: solid 2px #000000;
}

@media (max-width: 768px) {
    .date-section {
      margin-top: -6px;
        padding: 0px 0px;
    }
}

.kyf-header-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.kyf-header-title {
    font-family: 'Yellowtail', cursive;
    font-size: clamp(2rem, 8vw, 3.8rem);
    color: #ff5e00;
    margin: 0;
    line-height: 1.1;
    transform: rotate(-2.5deg);
    text-shadow: 2px 2px 0px #1a1a1a;
    display: inline-block;
}

.kyf-header-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-top: 15px;
    opacity: 0.9;
}

.kyf-header-desc span {
    background: #e1ff80;
    padding: 2px 8px;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
}

.kyf-event-section-root {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.kyf-event-overlap-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
}

.kyf-play-card {
    width: 220px;
    height: 320px;
    background: white;
    border: 3px solid var(--kyf-black);
    border-radius: 18px;
    position: relative;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s;
    cursor: pointer;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    will-change: transform;
}

@media (min-width: 992px) {
    .kyf-event-overlap-wrap { gap: 0; }
    .kyf-play-card { margin-left: -50px; }
    .kyf-play-card:first-child { margin-left: 0; }
}

.kyf-play-card:hover {
    transform: translateY(-20px) scale(1.05) !important;
    z-index: 100;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
}

.card-rot-left { transform: rotate(-4deg); }
.card-rot-right { transform: rotate(3deg); }
.card-rot-slight { transform: rotate(-2deg); }

.kyf-badge-spin {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 90px;
    height: 90px;
    background: var(--kyf-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 8px;
    font-weight: 900;
    border: 2px dashed white;
    animation: kyfRotation 12s linear infinite;
    pointer-events: none;
}

@keyframes kyfRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.kyf-tape-effect {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 100px;
    height: 30px;
    background: rgba(112, 161, 255, 0.5);
    backdrop-filter: blur(2px);
    border-left: 5px dotted rgba(255,255,255,0.3);
    border-right: 5px dotted rgba(255,255,255,0.3);
}

.kyf-date-val {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-top: auto;
}

.kyf-status-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .kyf-play-card { transform: rotate(0deg) !important; margin: 0 !important; }
    .kyf-badge-spin { width: 70px; height: 70px; font-size: 8px; top: -15px; right: -10px; }
}

.kyf-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0px;
    margin: 10px 0;
    border: 2px solid rgba(0,0,0,0.1);
}

/* Expect Section Wrappers */
.expect-top-wrapper {
    padding-bottom: 0px;
    background: linear-gradient(to right, #1a1a1a 50%, #6B171A 50%);
}

.expect-bottom-wrapper {
    padding-top: 0px;
    background: linear-gradient(to right, #1a1a1a 50%, #B0BCCA 50%);
    background-color: #1a1a1a;
    position: relative;
}

@media (max-width: 768px) {
    .expect-top-wrapper {
        background: #1a1a1a;
    }
    
    .expect-bottom-wrapper {
        background: #B0BCCA;
        background-color: #B0BCCA;
    }
}

/* Video Popup */
.video-popup {
    position: fixed;
    z-index: 8888;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.video-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 90%;
    max-width: 900px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.video-popup.active .video-popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.video-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: #ff6b35;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-close-btn:hover {
    background: #ff8c5a;
    transform: rotate(90deg);
}

.video-close-btn svg {
    color: #fff;
}

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

#popupVideo {
    width: 100%;
    display: block;
    border-radius: 15px;
    background: #000;
}

@media (max-width: 768px) {
    .video-popup-content {
        width: 95%;
        padding: 15px;
    }
    
    .video-close-btn {
        width: 40px;
        height: 40px;
        top: -12px;
        right: -12px;
    }
    
    .control-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Responsive Image Visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Mobile Layer 2 Styling */
.hero-bg-layer-2-mobile {
    position: absolute;
    top: 316px;
    left: -134px;
    height: 69%;
    object-fit: cover;
    z-index: 2;
}

/* Mobile Layer 1 Styling */
.hero-bg-layer-1-mobile {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
