/* ==========================================================================
   August Login — Frontend Styles
   ========================================================================== */

/* Login container */
.augustcs2-login-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Steam Login Button */
.augustcs2-steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #171a21 0%, #1b2838 50%, #2a475e 100%);
    color: #c7d5e0 !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.augustcs2-steam-btn:hover {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 50%, #3d6b8e 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.augustcs2-steam-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.augustcs2-steam-btn svg {
    width: 24px;
    height: 24px;
    color: #c7d5e0;
    fill: currentColor;
    flex-shrink: 0;
    display: block;
    transition: color 0.3s ease;
}

.augustcs2-steam-btn:hover svg {
    color: #ffffff;
}

/* Logged in state */
.augustcs2-user-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #171a21 0%, #1b2838 100%);
    border-radius: 4px;
    color: #c7d5e0;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.augustcs2-user-info img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #2a475e;
}

.augustcs2-user-info .augustcs2-username {
    font-weight: 600;
    color: #66c0f4;
}

.augustcs2-user-info .augustcs2-logout-link {
    color: #c7d5e0 !important;
    text-decoration: none !important;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    font-size: 12px;
    transition: all 0.2s ease;
    margin-left: 6px;
}

.augustcs2-user-info .augustcs2-logout-link:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff !important;
}

/* GDPR opt-in */
.augustcs2-gdpr-optin {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.augustcs2-gdpr-optin label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
}

.augustcs2-gdpr-optin input[type="checkbox"] {
    margin-top: 2px;
}

.augustcs2-gdpr-optin a {
    color: #2271b1;
}

/* Loading state */
.augustcs2-loading {
    opacity: 0.6;
    pointer-events: none;
}
