/* ===================== */
/* Reset & Body          */
/* ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* ===================== */
/* Background & Overlay  */
/* ===================== */
#HeroBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* ===================== */
/* Disclaimer Modal      */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.disc-content {
    background: #1a1a1a;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.015) 20px,
            rgba(255,255,255,0.015) 22px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.015) 20px,
            rgba(255,255,255,0.015) 22px
        );
    border: 2px solid #00e5ff;
    border-radius: 4px;
    box-shadow:
        0 0 15px rgba(0, 229, 255, 0.3),
        0 0 40px rgba(0, 229, 255, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    padding: 48px 44px 36px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

/* Logo */
.disc-logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.disc-logo em {
    font-style: italic;
}

/* Subtitle */
.disc-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Title */
.disc-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #00e5ff;
    line-height: 1.3;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Description */
.disc-text {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Continue Button */
#DiscYes {
    display: block;
    width: 240px;
    margin: 0 auto 20px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #ffd700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

#DiscYes:hover {
    background: #ffe033;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

/* Leave the site */
.disc-leave {
    margin-bottom: 20px;
}

.disc-leave span {
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.disc-leave span:hover {
    color: #fff;
}

/* Sign in line */
.disc-signin {
    font-size: 0.85rem;
    color: #999;
}

.disc-signin a {
    color: #00e5ff;
    text-decoration: none;
    font-weight: 600;
}

.disc-signin a:hover {
    text-decoration: underline;
}

/* ===================== */
/* Animation             */
/* ===================== */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================== */
/* SEO Content (details) */
/* ===================== */
details {
    position: absolute;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

details summary {
    display: none;
}

article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ddd;
    line-height: 1.8;
}

article h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

article h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: #00e5ff;
}

article h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: #ffd700;
}

article p {
    margin-bottom: 16px;
    color: #ccc;
}

article ul, article ol {
    margin: 16px 0;
    padding-left: 24px;
}

article li {
    margin-bottom: 8px;
    color: #ccc;
}

article blockquote {
    border-left: 3px solid #00e5ff;
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

article table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

article th, article td {
    padding: 12px;
    border: 1px solid #333;
    text-align: left;
}

article th {
    background: #2a2a2a;
    color: #fff;
}

article td {
    color: #ccc;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media screen and (max-width: 600px) {
    .disc-content {
        padding: 32px 20px 28px;
        margin: 16px;
    }

    .disc-logo {
        font-size: 1.8rem;
    }

    .disc-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .disc-title {
        font-size: 1.3rem;
    }

    .disc-text {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    #DiscYes {
        width: 200px;
        padding: 12px 0;
        font-size: 1rem;
    }
}
