/*
Theme Name: Game Download Theme
Theme URI: https://example.com
Author: Game Core
Description: Theme khusus website download game dengan sistem VIP.
Version: 1.0.0
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0f0f0f;
    color: #eaeaea;
}

a {
    color: #4da3ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
}

button {
    cursor: pointer;
    border: none;
}

/* ===============================
 GLOBAL TYPOGRAPHY
=============================== */
:root {
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
    font-family: var(--font-main);
    font-weight: 500;          /* INI KUNCI UTAMA */
    line-height: 1.6;
    color: #e5e7eb;
}

/* Heading lebih tebal */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Button & label */
button, .btn, input, select, textarea {
    font-family: var(--font-main);
    font-weight: 600;
}


