/* Light blue theme inspired by skycast.html */
:root {
    --c-bg: #e0eaff;
    --c-bg-inner: #ffffff;
    --c-accent: #4b9aff;
    --c-accent-dark: #006aff;
    --c-text-dark: #003f7f;
    --c-text-light: #ffffff;
    --c-shadow-light: rgba(255, 255, 255, 0.8);
    --c-shadow-dark: rgba(73, 1, 255, 0.387);
    --radius-lg: 20px;
    --radius-md: 15px;
    --radius-sm: 10px;
}

body {
    background: url('https://videos.openai.com/vg-assets/assets%2Ftask_01k4tqryeje6krz1q6exnsdwh7%2F1757539097_img_0.webp?st=2025-09-10T20%3A13%3A58Z&se=2025-09-16T21%3A13%3A58Z&sks=b&skt=2025-09-10T20%3A13%3A58Z&ske=2025-09-16T21%3A13%3A58Z&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skoid=8ebb0df1-a278-4e2e-9c20-f2d373479b3a&skv=2019-02-02&sv=2018-11-09&sr=b&sp=r&spr=https%2Chttp&sig=sTv0aSCCE2qVBkmnOK9xSNZfeFwgxiXgpTRkqyJgfAo%3D&az=oaivgprodscus') center center/cover no-repeat;
    font-family: 'VT323', monospace;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(224,234,255,0.97); /* light blue */
    border: 6px double #89f5ff;
    box-shadow: 0 0 40px #b3e0ff, 0 0 0 12px #fff inset;
    border-radius: 16px;
    padding: 0;
    position: relative;
    border-bottom: none;
}

header .banner {
    width: 100%;
    padding: 0;
    background: none;
    border-bottom: 4px solid #89f5ff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: none;
    display: block;
    overflow: hidden;
}

.banner-img-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 24px #b3e0ff;
    margin: 0;
}

/* Optional: If you want to force a specific height for the header box, use this (replace 200px with your image's height) */
header .banner {
    height: 200px; /* Set this to your header image's pixel height */
}

.banner-img-full {
    height: 100%;
    object-fit: cover;
}

header h1 {
    font-family: 'Comic Sans MS', 'Orbitron', 'VT323', cursive;
    font-size: 2.7rem;
    color: #ff69b4;
    text-shadow: 2px 2px 0 #fff, 0 0 12px #00f, 0 0 24px #ff69b4;
    letter-spacing: 2px;
    font-weight: bold;
}

.hotlinks {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(224,234,255,0.8);
    border-bottom: 3px dashed #89f5ff;
    padding: 16px 0;
    margin-bottom: 32px;
    gap: 18px;
    box-shadow: 0 2px 12px #b3e0ff;
    position: relative;
}

.hotlinks::before {
    content: '';
    position: absolute;
    left: 10px; right: 10px; top: 0; bottom: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #a7ffeb 0%, #f3e5f5 100%);
    opacity: 0.3;
    z-index: 0;
}

.nav-btn {
    position: relative;
    font-family: 'Orbitron', 'VT323', monospace;
    background: linear-gradient(180deg, #e0eaff 0%, #89f5ff 100%);
    color: #0033ff;
    border: 2px solid #89f5ff;
    border-radius: 12px;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px #b3e0ff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    overflow: hidden;
    z-index: 1;
}

.nav-btn:hover {
    background: linear-gradient(180deg, #89f5ff 0%, #e0eaff 100%);
    color: #fff;
    box-shadow: 0 4px 16px #0033ff;
    border-color: #0033ff;
}

main {
    padding: 0 32px;
}

.intro, .updates {
    background: rgba(224,234,255,0.85);
    border: 2px solid #89f5ff;
    border-radius: 12px;
    margin-bottom: 24px;
    padding: 18px 24px;
    box-shadow: 0 0 12px #b3e0ff;
}

.intro h2, .updates h2 {
    font-family: "MS UI Gothic", sans-serif;
    color: #0033ff;
    text-shadow: 1px 1px 0 #fff, 0 0 6px #89f5ff;
    font-size: 1.5rem;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

#surpriseBtn {
    background: linear-gradient(180deg, #e0eaff 0%, #89f5ff 100%);
    color: #0033ff;
    border: 2px solid #89f5ff;
    border-radius: 12px;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    padding: 10px 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px #b3e0ff;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

#surpriseBtn:hover {
    background: linear-gradient(180deg, #89f5ff 0%, #e0eaff 100%);
    color: #fff;
    box-shadow: 0 4px 16px #0033ff;
    border-color: #0033ff;
}

.updates ul {
    list-style: square inside;
    font-size: 1.1rem;
    padding-left: 0;
}

footer {
    display: none;
}

.footer-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    position: relative;
    bottom: 0;
}

.footer-banner .banner-img-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    margin: 0;
}

@media (max-width: 600px) {
    .container {
        max-width: 98vw;
        margin: 8px auto;
        padding: 0 2vw 16px 2vw;
    }
    main {
        padding: 0 4vw;
    }
    .banner-img-full {
        height: auto;
    }
}