* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0b0b0b;
    color: #e5e5e5;
}

/* subtle GTA-style grain overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 0, 0.05), transparent 40%);
    pointer-events: none;
}

.page {
    min-height: 100vh;
}

/* HERO */
.hero {
    padding: 120px 24px;
    text-align: center;
    background: linear-gradient(135deg, #000000, #111111 60%, #0f0f0f);
    border-bottom: 2px solid #22c55e;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0 0 16px;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.hero p {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 1.2rem;
    color: #a3a3a3;
}

/* BUTTON */
.button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: #22c55e;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
    transition: all 0.2s ease;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(34, 197, 94, 1);
}

/* SECTION */
.section {
    padding: 64px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #22c55e;
}

/* CARDS (GTA UI feel) */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: #121212;
    border: 1px solid #1f1f1f;
    border-left: 4px solid #22c55e;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* subtle hover glow */
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
}

.card h3 {
    margin-top: 0;
    color: #22c55e;
}

.card p {
    color: #bdbdbd;
}