:root {
    --bg-color: #000000;
    --text-color: #e0e0e0;
    --accent-color: #ff6600;
    --secondary-bg: #111111;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 100px 0 50px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: 10px;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
}

section {
    padding: 60px 0;
}

#about {
    background-color: var(--secondary-bg);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}


footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}
