:root {
    --blue: #0b45e4;
    --lime: #c9ff02;
    --dark: #020b24;
    --white: #ffffff;
    --pink: #ff009a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    /* overflow: hidden; */
    height: 100vh;
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden;
}


/* Background Lebih Hidup */
.bg-layer {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, #1a5bff 0%, #020b24 60%);
    z-index: 1;
}

body::before {
    top: -100px;
    left: -100px;
}

body::after {
    bottom: -150px;
    right: -100px;
}


.content-wrapper {
    position: relative;
    z-index: 10;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw;
    gap: 5vw;
}

/* LEFT SIDE */
.left-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-box {
    width: 40vw;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

.mascot-box img {
    width: 100%;
    height: auto;
}

/* RIGHT SIDE */
.right-side {
    flex: 1;
    text-align: left;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 40px;
    opacity: 0;
    color: var(--lime);
}

/* BUTTON tetap sama animasinya */
.btn-start {
    padding: 18px 45px;
    color: #e6ff6b;
    font-family: 'Unbounded';
    font-weight: 900;
    border: 2px solid #e6ff6b;
    background: transparent;
    cursor: pointer;
    border-radius: 50px;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.btn-start:hover {
    background: linear-gradient(135deg, var(--lime), #e6ff6b);
    box-shadow: 0 15px 40px rgba(201,255,2,0.4);
    color: #020b24;
    transition: 0.3s;
}


/* --- TRANSISI (TIDAK DIUBAH) --- */
.transition-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    z-index: 9999;
    pointer-events: none;
}

.slat {
    flex: 1;
    background: var(--lime);
    transform: scaleY(0);
    transform-origin: top;
}

.slat::before {
    content: "KNTHREE FEST 2026";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);

    writing-mode: vertical-rl;
    line-height: 1.5;
    text-orientation: mixed;

    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(14px, 1.2vw, 22px);

    color: black;
    /* opacity: 0.15; */
    letter-spacing: 3px;
    white-space: nowrap;
}


/* Animated BG */
.animated-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}

.animated-bg svg {
    width: 100%;
    height: 100%;
}

.main-title {
    position: relative;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.05;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff, var(--lime));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Wrapper supaya animasi tidak ikut center */
.text-wrapper {
    position: relative;
    display: inline-block;
}

/* Outline layer */
.outline-text {
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

/* Fill layer */
.fill-text {
    color: white;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    width: 0;
    animation: fillReveal 6s ease-in-out infinite;
}

@keyframes fillReveal {
    0% { width: 0; }
    40% { width: 100%; }
    60% { width: 100%; }
    100% { width: 0; }
}

.year {
    display: block;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--lime);
    margin-top: 10px;
}


#main-website {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff, #f5f7ff);
    z-index: 5000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .right-side {
        /* text-align: center; */
    }

    .mascot-box {
        width: 70vw;
        max-width: 400px;
    }
    .btn-start {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
    }

    .mascot-box {
        width: 80vw;
    }
}


/* MAIN STYLE */
.side-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 110px;
    height: 100vh;
    background: var(--lime);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    z-index: 20;
}
.nav-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hamburger {
    width: 28px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--dark);
    margin-bottom: 6px;
    transition: 0.3s;
}

.vertical-brand {
    writing-mode: vertical-rl;
    text-orientation: upright;

    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3vw, 40px);

    color: var(--dark);

    letter-spacing: 10px;
    transition: 0.7s ease-in-out;
}

.vertical-brand:hover {
    color: var(--blue);
    transition: 0.7s ease-in-out;
}


.nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nav-bottom a {
    color: var(--dark);
    font-size: 18px;
    transition: 0.3s;
}

.nav-bottom a:hover {
    color: var(--blue);
    transform: translateY(-3px);
}
.hero-left {
    height: 100vh;
    background: var(--blue);
    display: flex;
    align-items: center;
    padding: 80px;
    margin-right: 110px;
    width: 100%;
    position: relative;
}

.menu-social a {
    font-size: 1.3rem!important;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg svg,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-mascot {
    position: absolute;
    right: 70px;
    bottom: 0;
    z-index: 2;
}

.hero-mascot img {
    width: clamp(300px, 40vw, 600px);
    /* opacity: 0.25; */
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-up {
    color: var(--lime);
    font-size: clamp(1.5rem, 2vw, 1.8rem);
}
.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
    color: var(--white);
    text-shadow: 5px 5px 0px var(--dark); 
}
.hero-tagline {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    height: auto;
    letter-spacing: 1px;
}

.hero-tagline span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealLoopSharp 6s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

.hero-tagline span:nth-child(1) { animation-delay: 0s; }
.hero-tagline span:nth-child(2) { animation-delay: 0.2s; }
.hero-tagline span:nth-child(3) { animation-delay: 0.4s; }

@keyframes revealLoopSharp {
    0% {
        opacity: 0;
        transform: translateY(20px) skewX(-20deg);
    }
    10% {
        opacity: 1;
        transform: translateY(0) skewX(0);
    }
    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    92% {
        opacity: 0;
        transform: translateY(-15px) skewX(10deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-15px);
    }
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    position: relative;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    overflow: hidden;
}
.btn-hero-primary {
    background: var(--lime);
    border: 4px solid var(--lime);
    color: var(--dark);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(163,255,0,0.4);
}
.btn-hero-outline {
    border: 4px solid var(--lime);
    color: var(--lime);
}

.btn-hero-outline:hover {
    background: var(--lime);
    color: var(--dark);
    transform: translateY(-4px);
}
.btn-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: 0.5s;
}

.btn-hero:hover::after {
    left: 100%;
}


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

@media (max-width: 768px) {
    .moving-lines {
        display: none;
    }

    .ring {
        opacity: 0.05;
    }
    .hero-mascot {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }
}

.hero-content h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--white  );
}
.menu-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    pointer-events: none;
    z-index: 15;
}

.menu-slat {
    flex: 1;
    background: var(--lime);
    transform: scaleY(0);
    transform-origin: top;
}

.menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    opacity: 0;
}

.menu-content a {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    text-decoration: none;
    color: black;
}

.menu-left {
    display: flex;
    align-items: flex-end;
    padding-left: 80px;
    padding-bottom: 60px;
}

.menu-meta {
    font-size: 0.85rem;
    /* opacity: 0.6; */
    line-height: 1.8;
}

.menu-meta h3 {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.copyright {
    margin-top: 20px;
}

.menu-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
    gap: 40px;
    padding-right: 160px;
}

.menu-right a {
    position: relative;
    font-size: 32px;
    text-decoration: none;
    color: black;
    transition: transform 0.3s ease;
}

.menu-right a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: black;
    transition: 0.4s cubic-bezier(.77,0,.18,1);
    transform: translateX(-50%);
}

.menu-right a:hover {
    transform: translateY(-4px);
}

.menu-right a:hover::after {
    width: 100%;
}


@media (max-width: 900px) {

    .menu-content {
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
        text-align: center;
        gap: 60px;
        padding: 40px;
        overflow-y: auto;
    }

    .menu-right {
        order: 1;
        align-items: center;
        padding-right: 0;
        gap: 28px;
        margin-top: 70px;
    }

    .menu-right a {
        font-size: 28px;
    }

    .menu-left {
        order: 2;
        padding: 0;
        margin-top: auto;
    }

    .menu-meta {
        margin-top: 30px;
        /* opacity: 0.5; */
    }
}


#main-content {
    display: none;
}

.main-wrapper {
    margin-right: 110px;
}

.content-title {
    font-weight: 800;
    font-size: clamp(1rem, 4vw, 2rem);
    color: var(--dark);
    padding: 24px 48px;
    background-color: var(--lime);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -1px;
    border: 4px solid var(--dark);
    box-shadow: 12px 12px 0px var(--dark);
    position: relative;
    cursor: pointer; 
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1),
                background-color 0.3s ease;
    margin-bottom: 50px;
}

.content-title::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    border: 2px solid var(--dark);
    transition: transform 0.3s ease;
}

.content-title:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0px var(--dark), 0px 0px 20px rgba(201, 255, 2, 0.2);
    background-color: var(--dark);
    color: var(--lime);
    border-color: var(--lime);
}

.content-title:hover::before {
    transform: scale(1.5);
    background: var(--lime);
    border-color: var(--lime);
}

.content-title:active {
    transform: translate(12px, 12px);
    box-shadow: 0px 0px 0px var(--dark);
}


.content-title-alt {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    color: var(--lime);
    text-shadow: 5px 5px 0px var(--dark); 
    /* letter-spacing: -2px; */
    line-height: 1;
    position: relative;
    z-index: 10;
}

#content-about {
    background-color: var(--blue);
    text-align: center;
    position: relative;
}

.content-about-img {
    max-width: 650px;
    width: 100%;
    padding: 60px 30px 0 30px;
}
/* 
#content-about h1 {
    font-weight: 800;
    color: var(--lime);
    font-size: 2.5rem;
    font-family: "Montserrat";
} */

#content-about p {
    color: var(--white);
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
}

#content-video {
    background-color: var(--blue);
    padding: 60px 0 0 0;
    text-align: center;
    color: var(--white);
    position: relative;
}


#content-video iframe {
    margin-bottom: 60px;
    z-index: 10;
    position: relative;
    padding: 0 20px;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--lime);
    padding: 15px 0;
    display: flex;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 15s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    padding-right: 20px;
}

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

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

#content-competition {
    background-color: var(--blue);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
}
.content-competition-wrapper {
    position: relative;
    z-index: 10;
}
.competition-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.competition-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--lime);
    border-left: 8px solid var(--dark);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    text-align: left;
    z-index: 10;
    text-decoration: none;
    padding-left: 20px;
    cursor: pointer;
}

.competition-data:hover {
    transform: translateX(10px);
    border-left: 15px solid var(--pink);
}

.competition-data .left {
    flex: 1;
    padding-right: 20px;
}

.competition-data h3 {
    color: var(--dark);
    font-size: clamp(1.2rem, 4vw, 1.7rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

.competition-data .meta {
    display: flex;
    gap: 10px;
    row-gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}

.competition-data .meta span {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
}

.competition-data .meta span:not(:last-child)::after {
    content: "•";
    margin-left: 10px;
    font-weight: 900;
    color: var(--dark);
}

.competition-data .btn-daftar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    background: var(--dark);
    transition: all 0.3s ease;
    height: 50px;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 5%;
    z-index: 20;
    position: relative;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    max-width: 300px;
}

.filter-group label {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--lime);
    letter-spacing: 2px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark);
    font-size: 0.8rem;
    pointer-events: none;
}

.custom-select select {
    width: 100%;
    padding: 12px 15px;
    font-weight: 800;
    font-size: 1rem!important;
    font-family: 'Poppins'!important;
    text-transform: uppercase;
    background-color: var(--lime);
    border: none;
    border-radius: 0;
    color: var(--dark);
    cursor: pointer;
    appearance: none;
    box-shadow: 10px 10px 0 var(--dark);
    transition: 1s ease;
}

.custom-select select:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

.custom-select select:focus {
    outline: none;
    background-color: var(--lime);
    color: var(--dark);
}

#content-schedule {
    background-color: var(--blue);
    text-align: center;
    position: relative;
    padding: 0 20px 50px 20px;
}

#content-schedule {
    background-color: var(--blue);
    text-align: center;
    position: relative;
    padding: 0 20px 50px 20px;
}

.content-schedule-wrapper {
    margin-top: 50px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0 auto;
    padding: 0 5%;
    position: relative;
}

.schedule-item {
    display: flex;
    gap: 40px;
    align-items: stretch;
    position: relative;
}

.schedule-date {
    background: var(--lime);
    border: 4px solid var(--dark);
    box-shadow: 10px 10px 0 var(--dark);
    padding: 20px;
    min-width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-date .day {
    font-family: 'Unbounded';
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.schedule-date .month {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--dark);
}

.schedule-content {
    flex: 1;
    background: var(--lime);
    border-left: 8px solid var(--dark);
    padding: 25px 30px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.schedule-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.schedule-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.schedule-time {
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.schedule-item:hover .schedule-content {
    transform: translateX(10px);
    border-left: 12px solid var(--pink);
}

#content-faq {
    background-color: var(--blue);
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

.content-faq-wrapper {
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.faq-item {
    background: var(--lime);
    border: 4px solid var(--dark);
    box-shadow: 10px 10px 0 var(--dark);
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover {
    transform: translate(6px, 6px);
    box-shadow: 4px 4px 0 var(--dark);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
}

.faq-question i {
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.faq-answer {
    background: var(--dark);
    color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

#content-sponsor {
    background: var(--blue);
    padding: 0 20px 100px 20px;
    text-align: center;
    position: relative;
    color: var(--white);
}

.content-sponsor-wrapper {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.sponsor-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.sponsor-card {
    background: var(--white);
    border: 4px solid var(--dark);
    box-shadow: 12px 12px 0 var(--dark);
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 20px;
}

.sponsor-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.sponsor-card:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0 var(--dark);
}

.sponsor-card:hover img {
    transform: translateY(-5px) scale(1.5);
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.35));
}

.sponsor-cta {
    margin-top: 70px;
}

.btn-sponsor {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    background: var(--lime);
    color: var(--dark);
    border: 4px solid var(--dark);
    box-shadow: 10px 10px 0 var(--dark);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-sponsor:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0 var(--dark);
    background: var(--pink);
    color: var(--white);
}



#content-info {
    background: var(--lime);
    padding: 0 20px 100px 20px;
    text-align: center;
    position: relative;
}

.content-info-wrapper {
    margin-top: 60px;
}

.info-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: var(--white);
    border: 4px solid var(--dark);
    box-shadow: 12px 12px 0 var(--dark);
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-card:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0 var(--dark);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-card a {
    font-weight: 800;
    color: var(--blue);
    text-decoration: none;
    transition: 0.3s ease;
}

.info-card a:hover {
    color: var(--pink);
}

#content-schedule,
#content-faq,
#content-info,
#content-sponsor {
    position: relative;
}

#content-schedule .hero-bg,
#content-faq .hero-bg,
#content-info .hero-bg,
#content-sponsor .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#content-schedule > *,
#content-faq > *,
#content-info > *,
#content-sponsor > * {
    position: relative;
    z-index: 2;
}





/* DESKTOP RESPONSIVE */
@media (min-width: 769px) {
    .competition-data .btn-daftar {
        padding: 45px 30px;
        margin-right: -5px;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        gap: 10px;
        padding-left: 60px;
    }
    
    .competition-data:hover > .btn-daftar {
        background: var(--pink);
        color: var(--white);
        /* padding: 0 40px; */
    }
}

@media (max-width: 768px) {

    .side-nav {
        width: 100%;
        height: 70px;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }

    .hero-left {
        padding: 50px 20px;
    }

    .hero-left, .main-wrapper {
        margin-right: 0;
        width: 100%;
        /* margin-top: 70px; */
    }

    .nav-bottom {
        /* flex-direction: row; */
        display: none;
    }

    .vertical-brand {
        writing-mode: horizontal-tb;
        letter-spacing: 3px;
        font-size: 20px;
    }

    #content-about p {
        padding: 30px 20px;
    }

    .content-faq-wrapper  {
        padding-right: 20px;
        padding-left: 20px;
    }

    
    .competition-list {
        padding: 20px 15px;
    }

    .competition-data {
        padding: 15px 20px;
        gap: 10px;
    }

    .competition-data .btn-daftar {
        width: 50px;
        border-radius: 0;
        clip-path: none;
        background: var(--dark);
    }

    .competition-data .btn-daftar span {
        display: none;
    }

    .competition-data .btn-daftar svg {
        width: 24px;
        height: 24px;
    }

    .competition-data .meta span:not(:last-child)::after {
        margin-left: 8px;
    }

    
    .filter-container {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .filter-group {
        max-width: 100%;
    }

    .custom-select select {
        font-size: 0.8rem;
        clip-path: none;
    }

    .schedule-item {
        flex-direction: column;
        gap: 15px;
    }

    .schedule-date {
        min-width: unset;
        box-shadow: 6px 6px 0 var(--dark);
    }

    .schedule-content {
        border-left: none;
        border-top: 6px solid var(--lime);
    }

    .schedule-item:hover .schedule-content {
        transform: none;
        border-top: 6px solid var(--pink);
    }

    
    .sponsor-card {
        height: 150px;
        padding: 10px;
     }
    .logo-placeholder {
        padding: 20px;
    }

    .info-grid {
        grid-template-columns: unset;
    }
    .info-card {
        padding: 20px;
        /* display: flex; */
    }
    .info-card h3 {
        font-size: 1rem;
    }
    .menu-slat {
        margin-right: -1px;
    }
    .transition-overlay .slat {
        margin-right: -1px;
    }
}

/* ============================= */
/* MODAL BASE */
/* ============================= */
.competition-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    text-align: left;
    width: calc(100% - 110px);
}

.competition-modal.active{
    display:block;
}

.competition-modal-overlay{
    position:absolute;
    inset:0;
    background: var(--dark);
}


.competition-modal-wrapper{
    position:relative;
    height:100vh;
    overflow-y:auto;
    padding:120px 8%;
    color:var(--white);
}

.competition-modal-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.competition-modal-close{
    background:var(--lime);
    color:var(--dark);
    border: none;
    padding:12px 18px;
    font-weight:900;
    font-size:18px;
    cursor:pointer;
    box-shadow:6px 6px 0 var(--blue);
    transition:.2s ease;
}

.competition-modal-close:hover{
    transform:translate(4px,4px);
    box-shadow:2px 2px 0 var(--dark);
}

.competition-modal-grid{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap:80px;
    align-items:start;
}


.competition-modal-main{
    display:flex;
    flex-direction:column;
}

.competition-badge{
    display:inline-block;
    background:var(--lime);
    color:var(--dark);
    font-weight:800;
    padding:6px 14px;
    margin-bottom:20px;
    letter-spacing:1px;
}

.competition-title{
    font-size:52px;
    margin-bottom:25px;
    line-height:1.1;
}

.competition-meta{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    font-weight:600;
    margin-bottom:40px;
    opacity:0.9;
}


.competition-actions{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary-competition{
    background:var(--lime);
    color:var(--dark);
    padding:15px 30px;
    font-weight:800;
    text-decoration:none;
    transition:.2s ease;
}

.btn-primary-competition:hover{
    transform:translate(4px,4px);
}


.btn-secondary-competition{
    background:var(--blue);
    color:var(--white);
    padding:15px 30px;
    font-weight:800;
    text-decoration:none;
    transition:.2s ease;
}

.btn-secondary-competition:hover{
    transform:translate(4px,4px);
}


.btn-wa-competition{
    background:var(--pink);
    color:var(--white);
    padding:15px 30px;
    font-weight:800;
    text-decoration:none;
    transition:.2s ease;
}

.btn-wa-competition:hover{
    transform:translate(4px,4px);
}



.competition-modal-side{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.competition-card{
    border:2px solid var(--white);
    padding:30px;
    background:rgba(255,255,255,0.03);
}

.competition-card h3{
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.competition-modal-mascot {
    text-align: center;
}
.competition-modal-mascot h2 {
    font-size: 1.3rem;
}


@media(max-width:1024px){

    .competition-modal-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .competition-title{
        font-size:38px;
    }

    .competition-modal-close{
        right:20px;
        top:20px;
    }
    .competition-modal{
        width: 100%;
    }

    
    .btn-primary-competition,
    .btn-secondary-competition,
    .btn-wa-competition {
        padding:10px 20px;
    }

}
