:root {
    --background-color: #0e0e10;
    --primary-color: #9146ff; /* Twitch Purple */
    --primary-hover-color: #772ce8;
    --text-color: #efeff1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.btn-twitch-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.btn-twitch-login:hover {
    background-color: var(--primary-hover-color);
}

.btn-twitch-login i {
    margin-right: 15px;
    font-size: 2rem;
}

.legal-links {
    margin-top: 60px;
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.legal-links a:hover {
    text-decoration: underline;
}
