/* ===== BASE & RESET ===== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    background-color: #000000;
    background-image: linear-gradient(0deg, #ffffff12 1px, transparent 1px),
        linear-gradient(90deg, #ffffff12 1px, transparent 1px);
    background-size: 50px 50px;
    font-family: "JetBrains Mono", monospace;
    color: #ffffff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */

h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ===== FONTS ===== */

.font-jetbrains {
    font-family: "JetBrains Mono", monospace;
}

.font-manjari {
    font-family: "Manjari", sans-serif;
}

.font-cursive {
    font-family: "Edu NSW ACT Cursive", cursive;
}

.font-mono {
    font-family: "JetBrains Mono", monospace;
}

/* ===== TEXT COLORS ===== */

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-gray-100 {
    color: #f3f4f6;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-blue-300 {
    color: #93c5fd;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-blue-700 {
    color: #1d4ed8;
}

.text-green-300 {
    color: #86efac;
}

.text-green-400 {
    color: #4ade80;
}

.text-green-500 {
    color: #22c55e;
}

.text-yellow-400 {
    color: #facc15;
}

.text-yellow-500 {
    color: #eab308;
}

.text-purple-300 {
    color: #d8b4fe;
}

.text-purple-400 {
    color: #c084fc;
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-cyan-500 {
    color: #06b6d4;
}

.text-pink-400 {
    color: #f472b6;
}

.text-orange-400 {
    color: #fb923c;
}

/* ===== TEXT SIZES ===== */

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

/* ===== FONT WEIGHTS ===== */

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* ===== TEXT ALIGNMENT ===== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ===== SCROLLBAR HIDE ===== */

.sbar-hide {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.sbar-hide::-webkit-scrollbar {
    display: none;
}

/* ===== CURSOR ===== */

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/* ===== TRANSITIONS ===== */

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}