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

html {
    scroll-behavior: smooth;
}

body {
    background: #060807;
    color: #f4efe4;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* HERO */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.96)),
        radial-gradient(circle at 70% 42%, rgba(214,155,69,0.35), transparent 34%),
        radial-gradient(circle at 18% 80%, rgba(20,80,45,0.38), transparent 28%),
        linear-gradient(135deg, #07110c, #050505 62%);
    position: relative;
    overflow: hidden;
    padding: 30px 7%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
}

.hero::after {
    content: "KONG";
    position: absolute;
    right: -40px;
    bottom: -110px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(170px, 28vw, 330px);
    color: rgba(255,255,255,0.04);
    letter-spacing: 12px;
    line-height: 1;
}

/* MENU */

.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 20;
}

.logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d69b45;
    font-size: 18px;
}

.menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.menu a {
    font-size: 14px;
    color: #ddd2bd;
    transition: 0.2s;
}

.menu a:hover {
    color: #d69b45;
}

.mobile-menu-button {
    display: none;
    background: rgba(255,255,255,0.08);
    color: #d69b45;
    border: 1px solid rgba(214,155,69,0.35);
    border-radius: 12px;
    padding: 8px 13px;
    font-size: 24px;
    cursor: pointer;
}

/* HERO CONTENT */

.hero-content {
    max-width: 790px;
    margin-top: 165px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: #d69b45;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 12vw, 155px);
    line-height: 0.9;
    letter-spacing: 4px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.intro {
    max-width: 650px;
    font-size: 20px;
    color: #ddd2bd;
    margin: 25px 0 35px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s;
}

.primary {
    background: #d69b45;
    color: #16110b;
}

.secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: #f4efe4;
    background: rgba(255,255,255,0.04);
}

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

/* SECTIONS */

.section {
    padding: 90px 7%;
}

.dark {
    background: #080b09;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: #d69b45;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 13px;
}

.section-title h2,
.split-section h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(34px, 6vw, 62px);
    margin-top: 8px;
}

/* FILM GRID */

.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.film-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    min-height: 285px;
    position: relative;
    overflow: hidden;
    transition: 0.25s;
}

.film-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(214,155,69,0.24), transparent 38%);
    opacity: 0;
    transition: 0.25s;
}

.film-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d69b45, transparent);
    opacity: 0.7;
}

.film-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214,155,69,0.45);
}

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

.film-card > * {
    position: relative;
    z-index: 2;
}

.year {
    color: #d69b45;
    font-weight: 800;
    font-size: 14px;
}

.film-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin: 10px 0 0;
    letter-spacing: 1px;
}

.film-card h4 {
    color: #d69b45;
    font-size: 15px;
    margin-bottom: 13px;
}

.film-card p {
    color: #cfc3ae;
}

.read-more {
    display: inline-block;
    margin-top: 25px;
    color: #d69b45;
    font-weight: 800;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s;
}

.read-more:hover {
    color: #f3c26b;
}

/* TIMELINE */

.timeline-section {
    background:
        radial-gradient(circle at top left, rgba(214,155,69,0.12), transparent 35%),
        #0d100d;
}

.timeline {
    max-width: 880px;
    margin: auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#d69b45, rgba(214,155,69,0.05));
}

.timeline-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    margin-bottom: 35px;
}

.dot {
    width: 30px;
    height: 30px;
    background: #d69b45;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(214,155,69,0.7);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 18px;
    padding: 20px;
}

.timeline-item strong {
    color: #d69b45;
}

.timeline-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-top: 3px;
}

.timeline-item p {
    color: #cfc3ae;
}

/* SPLIT */

.split-section {
    padding: 100px 7%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    background:
        linear-gradient(120deg, #050505, #10160f);
}

.split-section p {
    color: #d7ccb9;
    max-width: 650px;
    font-size: 18px;
}

.kong-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.kong-box span {
    min-height: 130px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(214,155,69,0.2), rgba(255,255,255,0.04));
    border: 1px solid rgba(214,155,69,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: #d69b45;
}

/* MONSTERVERSE */

.monsterverse {
    background:
        radial-gradient(circle at center, rgba(91,32,18,0.55), transparent 45%),
        #080808;
}

.center-text {
    max-width: 800px;
    margin: auto;
    text-align: center;
    color: #d7ccb9;
    font-size: 20px;
}

/* FOOTER */

footer {
    padding: 35px 7%;
    text-align: center;
    background: #030403;
    color: #8d8373;
    font-size: 14px;
}

/* MODAL */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 25px;
}

.modal-overlay.show {
    display: flex;
}

.film-modal {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.35), transparent 30%),
        linear-gradient(145deg, #e0aa4f, #b87924);
    color: #191006;
    max-width: 880px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 30px;
    padding: 36px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.75);
    animation: modalPop 0.25s ease;
}

@keyframes modalPop {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: #191006;
    color: #e0aa4f;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-year {
    font-weight: 900;
    letter-spacing: 3px;
    opacity: 0.75;
}

.film-modal h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 8vw, 72px);
    line-height: 0.95;
    margin: 8px 0 6px;
    color: #140d06;
}

.film-modal h3 {
    color: #3c2107;
    font-size: 19px;
    margin-bottom: 16px;
}

.film-modal p {
    font-size: 18px;
    color: #211407;
    margin-bottom: 25px;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */

@media (max-width: 800px) {
    .topnav {
        align-items: flex-start;
        gap: 20px;
        flex-direction: column;
    }

    .mobile-menu-button {
        display: block;
        position: absolute;
        right: 0;
        top: -4px;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 13px;
        background: rgba(0,0,0,0.55);
        border: 1px solid rgba(214,155,69,0.25);
        border-radius: 18px;
        padding: 18px;
        margin-top: 15px;
    }

    .menu.show {
        display: flex;
    }

    .hero-content {
        margin-top: 115px;
    }

    .intro {
        font-size: 18px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .kong-box span {
        min-height: 100px;
    }

    .film-modal {
        padding: 26px;
        border-radius: 22px;
    }
}