* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0a0a0f;
    color: #e6e6e6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #4d7cff;
}

nav a {
    margin-left: 20px;
    color: #bfc7ff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #4d7cff;
}

.hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0f, #111122);
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #bfc7ff;
}

.btn {
    padding: 12px 30px;
    background: #4d7cff;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn:hover {
    background: #3358cc;
}

.section {
    padding: 60px 40px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #4d7cff;
}

.social-list {
    list-style: none;
    margin-top: 20px;
}

.social-list li {
    margin: 10px 0;
}

.social-list a {
    color: #bfc7ff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.2s;
}

.social-list a:hover {
    color: #4d7cff;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 40px;
}
