/* v2/css/style.css - V2 temel tema: renkler, sıfırlama, butonlar */

:root {
    --bg-main: #0a0e17;
    --bg-card: #141926;
    --bg-lighter: #1d2538;
    --text-main: #eaeaea;
    --text-muted: #8b92a5;
    --primary: #6350f2;
    --primary-hover: #523ee6;
    --success: #1ad598;
    --success-bg: rgba(26, 213, 152, 0.1);
    --blue: #1b8adb;
    --warning: #f9a826;
    --danger: #f25050;
    --radius: 12px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

button {
    font-family: inherit;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}

.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.btn-block {
    width: 100%;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid #a275f0;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    .btn-primary,
    .btn-secondary {
        transition: none;
    }
}
