:root {
    --bg: rgb(69, 69, 69);
    --panel: rgb(33, 33, 33);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --glow: rgba(59, 130, 246, 0.25);
    --glow-strong: rgba(59, 130, 246, 0.4);
}

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

html, body {
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

.card {
    background: var(--panel);
    padding: 24px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 40px var(--glow);
}

.btn {
    display: block;
    margin: 32px auto 0 auto;
    padding: 24px;
    background: var(--panel);
    color: var(--text);
    text-decoration: none;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    background: #273449;
    color: #fff;
    box-shadow: 0 15px 40px var(--glow);
    transform: translateY(-6px) scale(1.01);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0px);
}