/*
Theme Name: Game Theme
Author: Kamu
Version: 1.2-clean
*/

/* =====================================================
   1. RESET & BASE
===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f1115;
    color: #eaeaea;
    line-height: 1.6;
}

a {
    color: #4da3ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =====================================================
   2. HEADER (GLOBAL)
===================================================== */
.site-header {
    width: 100%;
    background: #0b0d12;
    border-bottom: 1px solid #1a1d24;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #4da3ff;
}

.site-nav a {
    margin-left: 16px;
    font-size: 0.95rem;
    color: #eaeaea;
}

.site-nav a:hover {
    color: #4da3ff;
}

/* =====================================================
   3. FOOTER (GLOBAL)
===================================================== */
.site-footer {
    width: 100%;
    background: #0b0d12;
    border-top: 1px solid #1a1d24;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-note {
    margin-top: 6px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =====================================================
   4. RESPONSIVE (HEADER ONLY)
===================================================== */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 8px;
    }

    .site-nav a {
        margin: 0 8px;
    }
}


