/* GLOBAL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== GLOBAL PAGE FADE-IN ===== */
body {
    background-color: #020617;
    color: #ffffff;
    opacity: 0;
    animation: SG_FadeIn 2.8s ease forwards;
}

@keyframes SG_FadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NEON BUTTON HOVER GLOW ===== */
button, .CTA {
    transition: 0.25s ease-in-out;
}

button:hover, .CTA:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(56,189,248,0.8);
}

/* BACKGROUND IMAGE — HOMEPAGE ONLY */
.Home {
    background: url("./assets/images/background.image.png") no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    background-color: #000000;
}

.Home::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
    z-index: -1;
}

/* NAVIGATION */
.Nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid #4b5563;
    backdrop-filter: blur(10px);
}

.Logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e7eb;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.Logo-Mark {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px #22d3ee);
}

nav a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

nav a:hover {
    color: #38bdf8;
}

/* PAGE CONTAINER */
.Page {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 32px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 12px;
    border: 1px solid #4b5563;
}

/* CENTERED TITLE */
.CenterTitle {
    font-size: 2.6rem;
    color: #facc15;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
}

/* ELITE INTRO TEXT */
.EliteIntro {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 10px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* CENTERED BUTTON */
.CenterButton {
    text-align: center;
    margin-top: 40px;
}

/* CTA BUTTON */
.CTA {
    display: inline-block;
    padding: 12px 30px;
    background: #1d4ed8;
    color: #e5e7eb;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.CTA:hover {
    background: #2563eb;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ===========================
   ShadowGuard Games Dropdown
   =========================== */

.Dropdown {
    position: relative;
    display: inline-block;
}

.DropBtn {
    background: transparent;
    border: none;
    color: #e5e7eb;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: 0.2s ease;
}

.DropBtn:hover {
    color: #facc15;
    text-shadow: 0 0 6px rgba(250, 204, 21, 0.6);
}

.Dropdown-Content {
    display: none;
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 6px;
    min-width: 160px;
    z-index: 999;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.Dropdown-Content a {
    display: block;
    padding: 10px 14px;
    color: #e5e7eb;
    text-decoration: none;
    transition: 0.2s ease;
}

.Dropdown-Content a:hover {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
}

.Dropdown:hover .Dropdown-Content {
    display: block;
}
