html, body {
    width: 100%;
    height: 100%;
}

/* =========================
   RESET
========================= */

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

body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

/* =========================
   INTRO
========================= */

#intro {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    width: 100%;
    height: 100dvh; /* dynamic viewport height */
}

#intro video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #intro video {
        object-fit: contain;
    }
}

#intro img {
    width: 300px;
    position: relative;
    z-index: 2;
}

/* =========================
   MAIN LAYOUT
========================= */

#mainContent {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================
   HEADER
========================= */

.site-header {
    height: 20%;
    padding: 20px;
    text-align: center;
    background: #000;
}

.header-logo {
    max-width: 180px;
    height: auto;
}

/* =========================
   HERO
========================= */

.hero {
    width: 100vw;
    height: 60vh;   /* 60% of viewport */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-top: 4px solid #c9db2b;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #000;
}

/* =========================
   BUTTONS
========================= */

.btn-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.btn {
    width: 200px;
    height: 50px;
    background: #c9db2b;
    color: #000;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    flex: 1; /* takes remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
    border-top: 4px solid #c9db2b;
    padding: 40px 20px;
    text-align: center;
}

.site-footer p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #fff; /* Force white text */
}

/* Sponsors */

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

.sponsors img {
    max-height: 60px;
    opacity: 0.7;
    transition: 0.3s ease;
}

.sponsors img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Links (social + privacy + terms) */

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9db2b;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links svg {
    width: 32px;
    height: 32px;
    fill: #c9db2b;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.footer-links svg:hover {
    fill: #ffffff;
    transform: scale(1.15);
}

/* =========================
   TikTok Wrapper
========================= */

.tiktok-wrapper {
    width: 80%;
    margin: 10px auto;
    overflow-y: auto;
}

.tiktok-wrapper blockquote {
    width: 100% !important;
    max-width: 100% !important;
}

.tiktok-embed-placeholder {
    background: #111;        /* dark background for visibility */
    color: #c9db2b;          /* neon yellow text matching site theme */
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: bold;
    margin: 20px auto;
    max-width: 600px;        /* optional, controls width */
}

.tiktok-embed-placeholder:hover {
    background: #222;        /* subtle hover effect */
    cursor: pointer;
}

@media (max-width: 350px) {
    .tiktok-wrapper {
        width: 75%;
    }
}

/* =========================
   COOKIE BANNER
========================= */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

#cookieBanner button {
    background: #c9db2b;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    font-weight: bold;
}

#cookieBanner a {
    color: #c9db2b;
    text-decoration: underline; /* optional for links */
    transition: color 0.3s ease;
}

#cookieBanner a:hover {
    color: #fff; /* optional hover effect */
}

/* =========================
   PRIVACY ICONS
========================= */

.privacy-icon {
    width: 28px;
    height: 28px;
    fill: #c9db2b;
    transition: 0.3s ease;
}

.privacy-icon:hover {
    fill: #ffffff;
    transform: scale(1.15);
}

/* =========================
   RESPONSIVE FOOTER
========================= */

@media (max-width: 480px) {
    .footer-links {
        gap: 20px;
    }
}