@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: "mc-main-bold";
    src: url("/macs-minecraft-bold.woff2");
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --surface-color: #1e293b;
    --nav-color: rgba(15, 23, 42, 0.75);
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --input-bg: #0f172a;

    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --warning: #f59e0b;
    --warning-hover: #d97706;
}

[data-theme="light"] {
    --bg-color: #f8fafc;
    --surface-color: #ffffff;
    --nav-color: rgba(255, 255, 255, 0.75);
    --text-color: #0f172a;
    --text-muted: #64748b;
    --border-color: rgba(0, 0, 0, 0.08);
    --input-bg: #f1f5f9;

    --primary: #7c3aed;
    --primary-hover: #6d28d9;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --warning: #f59e0b;
    --warning-hover: #d97706;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: default;
}
