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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

nav .brand span {
    color: #e94560;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e94560;
}

main {
    flex: 1;
}

footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #aaa;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

footer p {
    margin-bottom: 0.5rem;
}

footer .footer-links a {
    color: #e94560;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }
}
