/* ========================================
   AUTH BUTTONS — Köşeli Mat Gold
   ======================================== */

.modern-auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-auth-btn {
    position: relative;
    height: 38px;
    padding: 0 20px;
    border-radius: 6px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: border-color .15s, color .15s, background .15s;
}

.modern-auth-btn:active { transform: scale(0.97); }

/* glow efekti — kapalı */
.btn-glow { display: none; }

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 7px;
}

.btn-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
    flex-shrink: 0;
}

.btn-text { line-height: 1; white-space: nowrap; }

/* ── Giriş Yap — şeffaf, mat gold border & yazı ── */
.modern-auth-btn-login {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.4);
    color: #C8A84B;

}

.modern-auth-btn-login:hover {
    background: rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.7);
    color: #FFD700;

    transform: none;
}

.modern-auth-btn-login .btn-icon { filter: none; }

/* ── Kayıt Ol — mat gold dolgu, siyah yazı ── */
.modern-auth-btn-register {
    background: #C8A84B;
    border: 1px solid #C8A84B;
    color: #000;
}

.modern-auth-btn-register:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
}

.modern-auth-btn-register .btn-icon { filter: none; }

/* ========================================
   GAME MODAL AUTH BUTTONS
   ======================================== */

.game-login-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    gap: 24px;
}

.lock-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,175,55,0.2);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.85; }
}

.lock-icon {
    width: 38px;
    height: 38px;
    stroke: #C8A84B;
    stroke-width: 2;
    filter: none;
}

.game-lock-text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.5;
}

.game-auth-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin-top: 8px;
}

.game-auth-btn {
    position: relative;
    flex: 1;
    height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s, border-color .15s, color .15s;
}

.game-auth-btn:active { transform: scale(0.97); }
.game-btn-glow { display: none; }

.game-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.game-btn-icon { width: 16px; height: 16px; stroke-width: 2.2; }
.game-btn-text { line-height: 1; white-space: nowrap; }

.game-auth-btn-login {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.4);
    color: #C8A84B;
}
.game-auth-btn-login:hover {
    background: rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.7);
    color: #FFD700;
}

.game-auth-btn-register {
    background: #C8A84B;
    border: 1px solid #C8A84B;
    color: #000;
}
.game-auth-btn-register:hover {
    background: #D4AF37;
    border-color: #D4AF37;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .modern-auth-buttons { gap: 6px; }
    .modern-auth-btn { height: 34px; padding: 0 14px; font-size: 12px; }
    .btn-icon { width: 13px; height: 13px; }
    .game-auth-buttons { flex-direction: column; gap: 8px; }
    .game-auth-btn { height: 42px; font-size: 13px; }
}

@media (max-width: 480px) {
    .modern-auth-btn { height: 32px; padding: 0 12px; font-size: 11.5px; }
    .btn-icon { width: 12px; height: 12px; }
    .lock-icon-wrapper { width: 64px; height: 64px; }
    .lock-icon { width: 30px; height: 30px; }
}