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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Background Container */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 1;
    overflow: hidden;
}

.kong-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: fadeInBackground 2s ease-out 0.5s forwards;
    z-index: 2;
}

/* Kong Glow Effect */
.kong-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    z-index: 2;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Content Container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
}

/* Golden Gorilla Section */
.golden-gorilla-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 2.5s forwards;
}

.golden-gorilla {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.6));
    animation: floatGorilla 3s ease-in-out infinite;
}

/* Loading Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    animation: fadeOutLoader 1s ease-out 2s forwards;
}

.kong-loader {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.loader-bar {
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #D4AF37, #FFD700);
    border-radius: 2px;
    animation: loadBounce 0.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.loader-bar:nth-child(1) { animation-delay: 0s; }
.loader-bar:nth-child(2) { animation-delay: 0.2s; }
.loader-bar:nth-child(3) { animation-delay: 0.4s; }
.loader-bar:nth-child(4) { animation-delay: 0.6s; }
.loader-bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes loadBounce {
    0%, 100% { height: 20px; opacity: 0.6; }
    50% { height: 40px; opacity: 1; }
}

@keyframes fadeOutLoader {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Logo Section */
.logo-section {
    display: none;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 3.2s forwards;
}

.coming-soon-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1.2s ease-out 3.5s forwards;
}

.coming-soon-subtitle {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1.2s ease-out 3.9s forwards;
}

/* Mini Loader */
.mini-loader {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
}

.mini-bar {
    width: 3px;
    height: 12px;
    background: linear-gradient(to top, #D4AF37, #FFD700);
    border-radius: 2px;
    animation: miniBounce 0.6s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.mini-bar:nth-child(1) { animation-delay: 0s; }
.mini-bar:nth-child(2) { animation-delay: 0.15s; }
.mini-bar:nth-child(3) { animation-delay: 0.3s; }

@keyframes miniBounce {
    0%, 100% { height: 12px; opacity: 0.5; }
    50% { height: 24px; opacity: 1; }
}

/* Affiliations Bar */
.affiliations-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #f5f5f5, #ffffff, #f5f5f5);
    padding: 30px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    z-index: 50;
    opacity: 0;
    animation: slideUpBar 1.2s ease-out 4.3s forwards;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.affiliations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.affiliations-label {
    font-size: 13px;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 4.7s forwards;
}

.affiliations-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.affiliation-logo {
    width: 140px;
    height: 110px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards;
}

.affiliation-logo:nth-child(1) { animation-delay: 4.9s; }
.affiliation-logo:nth-child(2) { animation-delay: 5.05s; }
.affiliation-logo:nth-child(3) { animation-delay: 5.2s; }
.affiliation-logo:nth-child(4) { animation-delay: 5.35s; }
.affiliation-logo:nth-child(5) { animation-delay: 5.5s; }
.affiliation-logo:nth-child(6) { animation-delay: 5.65s; }
.affiliation-logo:nth-child(7) { animation-delay: 5.8s; }

.affiliation-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.affiliation-logo:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.affiliation-logo:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInBackground {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes floatGorilla {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 50px rgba(212, 175, 55, 0.3);
    }
}

@keyframes slideUpBar {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 36px;
    }

    .coming-soon-subtitle {
        font-size: 16px;
    }

    .golden-gorilla-section {
        height: 400px;
    }

    .golden-gorilla {
        max-width: 350px;
    }

    .affiliations-logos {
        gap: 20px;
    }

    .affiliation-logo {
        width: 120px;
        height: 95px;
        padding: 12px;
    }

    .affiliations-bar {
        padding: 25px 15px;
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 28px;
    }

    .coming-soon-subtitle {
        font-size: 14px;
    }

    .golden-gorilla-section {
        height: 300px;
    }

    .golden-gorilla {
        max-width: 250px;
    }

    .affiliations-logos {
        gap: 12px;
    }

    .affiliation-logo {
        width: 100px;
        height: 80px;
        padding: 10px;
    }

    .affiliations-label {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .affiliations-bar {
        padding: 20px 10px;
        padding-bottom: 90px;
    }
}
