﻿:root {
    /* Grifternet hero-matched neon palette */
    --page-back-color: #050713;
    --panel-back-color: #080B18;
    --cyan: #00EFFF;
    --cyan-soft: #7AFBFF;
    --purple: #B84DFF;
    --magenta: #F047FF;
    --blue: #2F7BFF;
    --ink: #050713;
    --white: #F4F8FF;
    --muted: #9AA6C8;
    /* Scroller */
    --scrolling-banner-back-color: #070915;
    --scrolling-banner-fore-color: #00EFFF;
    /* Regular buttons */
    --button-back-color: #10162A;
    --button-fore-color: #F4F8FF;
    --button-border-color: #5D35FF;
    /* Hot buttons */
    --hot-button-back-color: #00EFFF;
    --hot-button-fore-color: #050713;
    --hot-button-border-color: #B84DFF;
}

html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--page-back-color);
    overflow-y: auto;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Kalam', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    background: radial-gradient(circle at top left, rgba(0, 239, 255, 0.20), transparent 28%), radial-gradient(circle at top right, rgba(240, 71, 255, 0.20), transparent 30%), linear-gradient(180deg, #02040D 0%, #080B18 45%, #050713 100%);
    overflow-y: auto;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    background-color: var(--panel-back-color);
    box-shadow: 0 0 28px rgba(0, 239, 255, 0.25), 0 0 48px rgba(184, 77, 255, 0.18);
}

.banner {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.header {
    margin-top: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #050713 0%, #0D1230 35%, #140D2E 70%, #050713 100%);
    color: var(--scrolling-banner-fore-color);
    border-top: 2px solid var(--scrolling-banner-fore-color);
    border-bottom: 2px solid var(--scrolling-banner-fore-color);
    box-sizing: border-box;
    box-shadow: 0 0 16px rgba(0, 239, 255, 0.45), 0 0 24px rgba(0, 239, 255, 0.35);
}

#ScrollingBanner {
    margin-top: 0;
    padding: 10px 0;
    overflow: hidden;
    font-size: 28px;
    white-space: nowrap;
    text-align: left;
    letter-spacing: 1px;
    line-height: 40px;
    font-weight: 700;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: var(--scrolling-banner-fore-color);
    text-shadow: 0 0 5px rgba(0, 239, 255, 0.95), 0 0 12px rgba(0, 239, 255, 0.70), 0 0 20px rgba(184, 77, 255, 0.55);
}

.main {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 24px 24px;
    box-sizing: border-box;
    background: radial-gradient(circle at 15% 0%, rgba(0, 239, 255, 0.14), transparent 28%), radial-gradient(circle at 85% 0%, rgba(240, 71, 255, 0.15), transparent 30%), linear-gradient(180deg, #080B18 0%, #050713 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.styled-button {
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(90deg, #0C1228 0%, #12183A 50%, #170F32 100%);
    color: var(--button-fore-color);
    border: 2px solid var(--button-border-color);
    padding: 8px 0;
    box-sizing: border-box;
    font-family: 'Kalam', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: default;
    border-radius: 13px;
    text-align: center;
    text-transform: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 8px rgba(47, 123, 255, 0.28), 0 0 12px rgba(184, 77, 255, 0.22), 0 6px 14px rgba(0, 0, 0, 0.42);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.35), 0 0 8px rgba(184, 77, 255, 0.40);
}

.custom {
    background: linear-gradient(90deg, #00EFFF 0%, #39A8FF 45%, #B84DFF 100%);
    color: var(--hot-button-fore-color);
    border: 2px solid rgba(122, 251, 255, 0.95);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 0 9px rgba(0, 239, 255, 0.55), 0 0 16px rgba(184, 77, 255, 0.38), 0 7px 16px rgba(0, 0, 0, 0.50);
    text-shadow: none;
}

    .custom:hover {
        background: linear-gradient(90deg, #7AFBFF 0%, #5CB7FF 42%, #D26BFF 100%);
        border-color: #F047FF;
        box-shadow: 0 0 13px rgba(0, 239, 255, 0.75), 0 0 24px rgba(240, 71, 255, 0.52), 0 9px 20px rgba(0, 0, 0, 0.60);
        transform: translateY(-2px);
    }

.button-container {
    margin-bottom: 16px;
}

.scroll {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 600px) {
    #ScrollingBanner {
        font-size: 23px;
        line-height: 32px;
        letter-spacing: 0.8px;
    }

    .styled-button {
        font-size: 21px;
        padding: 7px 0;
        margin-top: 14px;
        letter-spacing: 0.5px;
        border-radius: 11px;
    }

    .main {
        padding-left: 20px;
        padding-right: 20px;
    }
}
