body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/static/qitsuk_bg.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    font-family: sans-serif;
}

/* All boxes (landing page + login/dashboard) */
.container, .login-box, .dashboard-box {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    background-color: rgba(31, 34, 51, 0.9); /* semi-transparent dark grey */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    color: #2fff30; /* green text */
}

/* Headline only for landing page */
.headline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.circle-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 3rem;
    color: #2fff30;
    margin-bottom: 1rem;
}

.bio {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    color: #c5c6c7;
    transition: color 0.3s, transform 0.3s;
}

.social svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s;
}

.social:hover {
    transform: scale(1.1);
}

.social.twitch:hover { color: #9146FF; }
.social.youtube:hover { color: #FF0000; }

.error-message {
    background-color: #ff4c4c; /* red */
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.admin-link {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #1fa12e;  /* darker, subtle green */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
    z-index: 1000;
}

.admin-link:hover {
    color: #2fff30;              /* brighter green on hover */
    text-shadow: 0 0 6px #000000; /* subtle glow */
}