/* ============================================
   AUTH PAGES - REFINED AURORA
   login.php / register.php / install.php
   ============================================ */


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

:root {
    --primary: #8b5cf6;
    --primary-soft: #a78bfa;
    --accent: #ec4899;
    --accent-2: #06b6d4;
    --accent-3: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;

    --bg-darkest: #07071a;
    --bg-card: rgba(20, 20, 40, 0.5);
    --bg-input: rgba(255, 255, 255, 0.03);
    --bg-input-focus: rgba(255, 255, 255, 0.06);

    --text: #e2e8f0;
    --text-bright: #ffffff;
    --text-dim: #94a3b8;
    --text-dimmer: #64748b;

    --border: rgba(148, 163, 184, 0.1);
    --border-bright: rgba(148, 163, 184, 0.2);
    --border-focus: rgba(139, 92, 246, 0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--cps-font-ui);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-darkest);
    min-height: 100vh;

    letter-spacing: -0.011em;
    overflow-x: hidden;
}

/* Aurora background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 0%, rgba(139, 92, 246, 0.18), transparent 50%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(236, 72, 153, 0.14), transparent 50%),
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(6, 182, 212, 0.1), transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Subtle noise */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--text-bright); }

/* ============================================
   PAGE LAYOUT (split: brand left, form right)
   ============================================ */

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Mobile/small: tek kolon */
@media (max-width: 968px) {
    .auth-page { grid-template-columns: 1fr; }
    .auth-brand { display: none; }
}

/* SOL TARAF: brand + features showcase */
.auth-brand {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(20,20,40,0.3) 0%, transparent 100%);
}

.auth-brand-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-logo {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
}

.auth-brand-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 480px;
}

.auth-brand-mid h2 {
    font-family: var(--cps-font-ui);
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.035em;
    color: var(--text-bright);
}

.auth-brand-mid h2 em {
    font-style: normal;
    font-weight: 300;
    background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent) 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-brand-mid p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.55;
    margin-bottom: 36px;
}

/* Highlight list */
.auth-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
}

.auth-highlights li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.15));
    border: 1px solid var(--border-bright);
    border-radius: 50%;
    background-image:
        linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.15)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6 L5 9 L10 3' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.auth-brand-bottom {
    font-size: 12px;
    color: var(--text-dimmer);
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.auth-brand-bottom a {
    color: var(--text-dim);
    margin-left: 16px;
}

/* SAĞ TARAF: form */
.auth-form-side {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

@media (max-width: 968px) {
    .auth-form-side { padding: 80px 24px 40px; min-height: 100vh; }
}

/* Mobil için üst logo */
.auth-mobile-logo {
    display: none;
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--cps-font-ui);
    font-size: 22px;
    color: var(--text-bright);
    letter-spacing: -0.02em;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
}

@media (max-width: 968px) {
    .auth-mobile-logo { display: flex; }
}

.auth-form-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 36px;
    transition: color 0.2s;
}
.auth-back::before {
    content: '←';
    transition: transform 0.2s;
}
.auth-back:hover { color: var(--text-bright); }
.auth-back:hover::before { transform: translateX(-3px); }

.auth-title {
    font-family: var(--cps-font-ui);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.auth-title em {
    font-style: normal;
    font-weight: 300;
    background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 36px;
    line-height: 1.55;
}

.auth-subtitle a {
    color: var(--text-bright);
    font-weight: 500;
    border-bottom: 1px solid var(--border-bright);
    transition: border-color 0.2s;
}
.auth-subtitle a:hover {
    border-color: var(--text-bright);
}

/* Flash messages */
.flash {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.flash::before {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.flash-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}
.flash-error::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fca5a5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E");
}

.flash-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #86efac;
}
.flash-success::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2386efac' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

.flash-info {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--primary-soft);
}
.flash-info::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23a78bfa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E");
}

/* FORMS */
.field {
    margin-bottom: 18px;
    position: relative;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 7px;
    letter-spacing: -0.005em;
}

.field label .required {
    color: var(--accent);
    margin-left: 2px;
}

.field label .hint {
    color: var(--text-dimmer);
    font-weight: 400;
    margin-left: 4px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-bright);
    font-family: inherit;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.field input::placeholder {
    color: var(--text-dimmer);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: var(--bg-input-focus);
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

/* Field with icon */
.field-with-icon {
    position: relative;
}
.field-with-icon input {
    padding-left: 40px;
}
.field-with-icon .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-dim);
    pointer-events: none;
}

/* Password toggle */
.field-password {
    position: relative;
}
.field-password .pwd-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    transition: all 0.2s;
}
.field-password .pwd-toggle:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-bright);
}

/* Forgot password row */
.field-row-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -8px;
    margin-bottom: 24px;
}
.field-row-meta label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    cursor: pointer;
}
.field-row-meta label input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary);
}
.field-row-meta a {
    font-size: 13px;
    color: var(--primary-soft);
}
.field-row-meta a:hover {
    color: var(--text-bright);
}

/* Submit button */
.btn-submit {
    width: 100%;
    background: var(--text-bright);
    color: var(--bg-darkest);
    border: none;
    border-radius: 100px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 0 0 1px rgba(255,255,255,0.05);
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 8px 24px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(255,255,255,0.05);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Divider */
.auth-divider {
    margin: 28px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-bright);
}
.auth-divider span {
    font-size: 11px;
    color: var(--text-dimmer);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Toggle between publisher/advertiser */
.role-switch {
    display: flex;
    background: var(--bg-input);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    padding: 4px;
    margin-bottom: 28px;
}

.role-switch a {
    flex: 1;
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.role-switch a.active {
    background: var(--bg-input-focus);
    color: var(--text-bright);
    box-shadow: 0 0 0 1px var(--border-bright);
}

.role-switch a:hover:not(.active) {
    color: var(--text);
}

/* Form footer */
.auth-footer-text {
    text-align: center;
    margin-top: 28px;
    font-size: 13.5px;
    color: var(--text-dim);
}

.auth-footer-text a {
    color: var(--text-bright);
    font-weight: 500;
    border-bottom: 1px solid var(--border-bright);
    transition: border-color 0.2s;
}
.auth-footer-text a:hover {
    border-color: var(--text-bright);
}

/* Legal text */
.auth-legal {
    margin-top: 20px;
    font-size: 11.5px;
    color: var(--text-dimmer);
    text-align: center;
    line-height: 1.6;
}
.auth-legal a {
    color: var(--text-dim);
    text-decoration: underline;
    text-decoration-color: var(--border-bright);
    text-underline-offset: 2px;
}
.auth-legal a:hover {
    color: var(--text-bright);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-form-wrap > * {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.auth-form-wrap > *:nth-child(1) { animation-delay: 0.0s; }
.auth-form-wrap > *:nth-child(2) { animation-delay: 0.05s; }
.auth-form-wrap > *:nth-child(3) { animation-delay: 0.1s; }
.auth-form-wrap > *:nth-child(4) { animation-delay: 0.15s; }
.auth-form-wrap > *:nth-child(5) { animation-delay: 0.2s; }
.auth-form-wrap > *:nth-child(6) { animation-delay: 0.25s; }

.auth-brand > * {
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.auth-brand > *:nth-child(2) { animation-delay: 0.1s; }
.auth-brand > *:nth-child(3) { animation-delay: 0.2s; }

/* ============================================
   BRAND BANNER (advertiser deeplink kartı)
   Yayıncı kayıt sayfasında üstte gösterilir
   ============================================ */

.brand-banner {
    background:
        linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(20, 20, 40, 0.5) 100%);
    border: 1px solid var(--border-bright);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
    backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.15),
        0 12px 32px rgba(139, 92, 246, 0.12);
    animation: brandFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes brandFadeIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Üst bar */
.brand-banner-bar {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.15));
    padding: 8px 16px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.005em;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.brand-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ec4899;
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.8);
    animation: brandPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes brandPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.7); opacity: 0.5; }
}

/* Gövde */
.brand-banner-body {
    padding: 20px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: flex-start;
}

/* Logo */
.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-bright);
    flex-shrink: 0;
}

.brand-logo-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--cps-font-ui);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-bright);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.18));
    letter-spacing: -0.02em;
}

/* Bilgi alanı */
.brand-info {
    min-width: 0;
}

.brand-name {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-bright);
    margin: 0 0 6px 0;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.brand-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.brand-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.brand-meta-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.brand-meta-item a {
    color: var(--text-dim);
    border-bottom: 1px dotted var(--border-bright);
    transition: color 0.2s;
}
.brand-meta-item a:hover {
    color: var(--primary-soft);
    border-color: var(--primary-soft);
}

.brand-meta-code {
    font-family: var(--cps-font-mono);
    font-size: 11px;
    color: var(--text-dimmer);
    background: rgba(255,255,255,0.04);
    padding: 1px 7px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.brand-desc {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 6px 0 0 0;
}

/* Komisyon kutucuğu */
.brand-commission {
    text-align: center;
    padding: 8px 14px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    flex-shrink: 0;
}

.brand-commission-num {
    font-family: var(--cps-font-ui);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.brand-commission-lbl {
    font-size: 10px;
    color: var(--text-dim);
    line-height: 1.3;
    margin-top: 4px;
}

/* Alt bilgi şeridi */
.brand-banner-foot {
    padding: 10px 16px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--border);
    font-size: 11.5px;
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.brand-banner-foot strong {
    color: var(--text-bright);
    font-weight: 600;
}

.brand-banner-clear {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    line-height: 18px;
    text-align: center;
    color: var(--text-dimmer);
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.2s;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
}
.brand-banner-clear:hover {
    color: var(--text-bright);
    background: rgba(239, 68, 68, 0.15);
}

/* Yayıncı kaydı tarafında özel highlight */
.auth-brand-mid .brand-callout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 12px;
    color: var(--primary-soft);
    margin-bottom: 20px;
}

.auth-brand-mid .brand-callout-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

/* Responsive */
@media (max-width: 540px) {
    .brand-banner-body {
        grid-template-columns: auto 1fr;
        gap: 14px;
    }
    .brand-commission {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 10px 14px;
    }
    .brand-commission-num {
        font-size: 24px;
    }
    .brand-commission-lbl {
        text-align: left;
        font-size: 11px;
        margin-top: 0;
    }
    .brand-commission-lbl br { display: none; }
}

/* ============================================
   IADE LOGO MARK (logo SVG + "network" yazısı)
   ============================================ */

.logo-mark,
.auth-logo .logo-mark,
.auth-mobile-logo .logo-mark {
    display: inline-block;
    height: 22px;
    width: auto;
    color: var(--text-bright);
    transform: translateY(4px);
    transition: opacity 0.2s;
}
.logo-mark svg {
    height: 100%;
    width: auto;
    display: block;
}

.logo-network,
.auth-logo .logo-network,
.auth-mobile-logo .logo-network {
    font-family: var(--cps-font-ui);
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    color: var(--text-dim);
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 0.2s;
}

.logo:hover .logo-network,
.auth-logo:hover .logo-network,
.auth-mobile-logo:hover .logo-network {
    color: var(--text-bright);
}

/* ============================================
   LANGUAGE SWITCHER (auth pages)
   ============================================ */
.dil-secici {
    display: inline-flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
}
.dil-opsiyon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
}
.dil-opsiyon:hover {
    color: var(--text-bright);
    background: rgba(255,255,255,0.04);
}
.dil-opsiyon.aktif {
    background: linear-gradient(135deg, var(--primary, #8b5cf6), var(--accent, #ec4899));
    color: white;
}
.dil-bayrak { font-size: 13px; line-height: 1; }
.dil-kod { font-family: var(--cps-font-mono); font-size: 10px; font-weight: 600; }
