:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --bg-color: #1a1a1a;
    --text-color: #f5f5f5;
    --light-text: #bdc3c7;
    --card-bg: #2d2d2d;
}

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

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

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}
