/* ===== RENK PALETİ & PREMIUM STİLLER ===== */
:root {
    --bg: #030712; /* Daha koyu, derin uzay siyahı */
    --sidebar-bg: rgba(13, 19, 33, 0.45); /* Şeffaf cam menü */
    --kart-bg: rgba(17, 24, 39, 0.55); /* Şeffaf cam kart */
    --sinir: rgba(30, 45, 69, 0.4); /* İnce yarı saydam sınır */
    --mavi: #3B5BDB;
    --neon-mavi: #00f2fe; /* Cyberpunk neon mavi */
    --neon-mor: #d946ef; /* Cyberpunk neon mor */
    --mor: #7C3AED;
    --yazi: #f8fafc;
    --gri-yazi: #94a3b8;
    --altin: #fbbf24;
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.07);
    --glass-blur: blur(20px);
    --glow-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
}

/* ===== ANIMATLI MESH ARKA PLAN HAKLARI ===== */
.mesh-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    background: #030712;
}

.mesh-glow-item {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: floatGlow 25s infinite alternate ease-in-out;
}

.mesh-glow-1 {
    background: radial-gradient(circle, var(--neon-mavi) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-duration: 20s;
}

.mesh-glow-2 {
    background: radial-gradient(circle, var(--neon-mor) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-duration: 30s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(80px, -60px) scale(1.15) rotate(180deg); }
    100% { transform: translate(-40px, 40px) scale(0.9) rotate(360deg); }
}

/* ===== SCROLL REVEAL ANIMASYONU ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOUSE-GLOW KART DESTEĞİ ===== */
.teklif-karti, .earnlab-card, .adim-kart, .ozellik-kart {
    position: relative;
    overflow: hidden;
    background: var(--kart-bg) !important;
    border: var(--glass-border) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-premium);
    will-change: transform, box-shadow;
}

.teklif-karti::before, .earnlab-card::before, .adim-kart::before, .ozellik-kart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(0, 242, 254, 0.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.teklif-karti:hover::before, .earnlab-card:hover::before, .adim-kart:hover::before, .ozellik-kart:hover::before {
    opacity: 1;
}

.teklif-karti:hover, .earnlab-card:hover, .adim-kart:hover, .ozellik-kart:hover {
    transform: translateY(-5px) scale(1.02) !important;
    border-color: rgba(0, 242, 254, 0.4) !important;
    box-shadow: 0 12px 40px rgba(0, 242, 254, 0.15) !important;
}


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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--yazi);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== ANA KUTU (Sidebar + Sağ Taraf yan yana) ===== */
.ana-kutu {
    display: flex;
    /* İkisini yan yana dizer */
    min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 250px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--sinir);
    display: flex;
    flex-direction: column;
    /* İçindekileri alt alta dizer */
    position: fixed;
    /* Sayfayı kaydırınca yerinde kalır */
    height: 100vh;
    padding: 24px 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--yazi);
    padding: 0 8px 28px;
    border-bottom: 1px solid var(--sinir);
    margin-bottom: 24px;
}

.logo i {
    color: var(--mavi);
}

.logo strong {
    color: var(--neon-mavi);
}

/* Menü Linkleri */
.menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--gri-yazi);
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.25s;
    /* Hover animasyonu için */
}

.menu li a:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--yazi);
}

/* Aktif (seçili) menü öğesi */
.menu li.aktif a {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), transparent);
    border-left: 3px solid var(--mavi);
    color: var(--neon-mavi);
}

.menu li a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* ===== SAĞ TARAF ===== */

ul {
    list-style: none;
}

/* ===== ANA KUTU (Sidebar + Sağ Taraf yan yana) ===== */
.ana-kutu {
    display: flex;
    /* İkisini yan yana dizer */
    min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 250px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--sinir);
    display: flex;
    flex-direction: column;
    /* İçindekileri alt alta dizer */
    position: fixed;
    /* Sayfayı kaydırınca yerinde kalır */
    height: 100vh;
    padding: 24px 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--yazi);
    padding: 0 8px 28px;
    border-bottom: 1px solid var(--sinir);
    margin-bottom: 24px;
}

.logo i {
    color: var(--mavi);
}

.logo strong {
    color: var(--neon-mavi);
}

/* Menü Linkleri */
.menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--gri-yazi);
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.25s;
    /* Hover animasyonu için */
}

.menu li a:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--yazi);
}

/* Aktif (seçili) menü öğesi */
.menu li.aktif a {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), transparent);
    border-left: 3px solid var(--mavi);
    color: var(--neon-mavi);
}

.menu li a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* ===== SAĞ TARAF ===== */
.sag-taraf {
    flex: 1;
    /* Kalan tüm alanı kaplar */
    margin-left: 250px;
    /* Sidebar kadar boşluk bırakır */
    display: flex;
    flex-direction: column;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 9, 18, 0.82);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 28px 0 36px;
    height: 68px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.arama-kutusu {
    display: none !important;
    align-items: center;
    gap: 10px;
    background-color: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 24px;
    padding: 8px 18px;
    width: 280px;
}

.arama-kutusu i {
    color: var(--gri-yazi);
}

.arama-kutusu input {
    background: none;
    border: none;
    outline: none;
    color: var(--yazi);
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.header-sag {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.bildirim-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sinir);
}

.bildirim-dropdown-head h4 {
    margin: 0;
    font-size: 14px;
    color: var(--yazi);
}

.bildirim-dropdown-head span {
    color: var(--gri-yazi);
    font-size: 11px;
    font-weight: 700;
}

.bildirim-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.bildirim-item:last-child {
    border-bottom: 0;
}

.bildirim-item.unread .bildirim-item-body strong::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-radius: 999px;
    background: #ef4444;
}

.bildirim-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.bildirim-item-body {
    min-width: 0;
}

.bildirim-item-body strong {
    display: block;
    color: var(--yazi);
    font-size: 13px;
    line-height: 1.35;
}

.bildirim-item-body p {
    margin: 4px 0 0;
    color: var(--gri-yazi);
    font-size: 12px;
    line-height: 1.4;
}

.bildirim-item-body span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.bildirim-empty {
    padding: 18px 8px;
    color: var(--gri-yazi);
    font-size: 13px;
    text-align: center;
}

/* ===== PREMIUM BAKİYE PİLLİ ===== */
.bakiye {
    display: flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(251,191,36,0.04));
    border: 1px solid rgba(245, 158, 11, 0.22);
    padding: 7px 15px 7px 12px;
    border-radius: 999px;
    font-weight: 700;
    color: #fbbf24;
    min-height: 38px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 0 rgba(245,158,11,0), 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.bakiye::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,158,11,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.bakiye:hover::before { opacity: 1; }

.bakiye:hover {
    background: linear-gradient(135deg, rgba(245,158,11,0.14), rgba(251,191,36,0.08));
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 0 16px rgba(245,158,11,0.2), 0 2px 8px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

.bakiye i.bakiye-ikon {
    font-size: 14px;
    animation: coinPulse 2.8s infinite ease-in-out;
    flex-shrink: 0;
}

@keyframes coinPulse {
    0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 2px rgba(245,158,11,0.3)); }
    50% { transform: scale(1.15) rotate(-5deg); filter: drop-shadow(0 0 7px rgba(245,158,11,0.7)); }
}

.bakiye-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-width: 0;
}

.bakiye-label {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(251,191,36,0.55);
    line-height: 1;
    margin-bottom: 1px;
}

#header-puan {
    font-size: 13px;
    font-weight: 800;
    color: #fde68a;
    line-height: 1;
    letter-spacing: -0.01em;
    min-width: 0;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-bakiye-mod {
    height: 18px;
    border: none;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' fill='%23fbbf24' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 2px center;
    color: rgba(251,191,36,0.7);
    outline: none;
    padding: 0 14px 0 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: color 0.2s ease;
    margin-top: 2px;
}

.header-bakiye-mod:hover { color: #fbbf24; }

.header-bakiye-mod option {
    background: #0d1321;
    color: #f8fafc;
}

/* ===== PREMIUM PROFİL ALANI ===== */
.profil {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding: 5px 10px 5px 5px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.025);
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    min-width: 0;
    max-width: 200px;
}

.profil:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(112, 150, 255, 0.3);
    box-shadow: 0 0 18px rgba(59,91,219,0.15);
}

.profil-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.profil img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(112, 150, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    display: block;
}

.profil:hover img {
    border-color: var(--neon-mavi);
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(112,150,255,0.4);
}

.profil-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background: #10b981;
    border: 2px solid #070b14;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(16,185,129,0.8);
    animation: onlinePulse 2.2s infinite;
}

.profil-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.profil-name {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-width: 110px;
}

.profil-role {
    font-size: 10px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-top: 2px;
}

/* Backwards compat — if span is used directly */
.profil > span:not(.profil-name):not(.profil-role) {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

/* Old ::after online dot for pages that don't use .profil-avatar-wrap */
.profil::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 32px;
    width: 9px;
    height: 9px;
    background: #10b981;
    border: 2px solid #070b14;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(16,185,129,0.8);
    animation: onlinePulse 2.2s infinite;
    /* Hide when using .profil-avatar-wrap (which has its own dot) */
}

.profil-avatar-wrap ~ * ~ .profil::after,
.profil:has(.profil-avatar-wrap)::after {
    display: none;
}

@keyframes onlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
    60% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Bildirim zili düzenlemesi */
.bildirim-zil {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    position: relative;
}

.bildirim-zil:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bildirim-zil i {
    font-size: 15px;
    color: #94a3b8;
    transition: color 0.2s;
}

.bildirim-zil:hover i { color: #e2e8f0; }

.bildirim-nokta {
    position: absolute !important;
    top: 7px !important;
    right: 7px !important;
    width: 8px !important;
    height: 8px !important;
    background: #ef4444 !important;
    border: 2px solid #050912 !important;
    border-radius: 50% !important;
    display: block !important;
    box-shadow: 0 0 6px rgba(239,68,68,0.7) !important;
    animation: notifPulse 2s infinite !important;
}

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

/* Banner */
.banner {
    background: linear-gradient(135deg, #0f1f3d 0%, #0d1321 100%);
    border: 1px solid var(--sinir);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 32px;
}

.banner-yazi h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.mavi {
    color: var(--neon-mavi);
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.banner-yazi p {
    color: var(--gri-yazi);
    font-size: 17px;
    margin-bottom: 28px;
    max-width: 480px;
}

.banner-istatistik {
    display: flex;
    gap: 16px;
}

.stat-kart {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 180px;
}

.stat-kart i {
    font-size: 28px;
    color: var(--mavi);
}

.stat-kart h3 {
    font-size: 22px;
}

.stat-kart p {
    color: var(--gri-yazi);
    font-size: 13px;
}

/* Butonlar */
.btn-birincil {
    background: linear-gradient(135deg, var(--mavi), #2563eb);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.35);
}

.btn-birincil:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.55);
}

.btn-ikincil {
    background: transparent;
    border: 1px solid var(--mavi);
    color: var(--neon-mavi);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-ikincil:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* Bölüm Başlıkları */
.bolum {
    margin-bottom: 48px;
}

.bolum-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bolum-baslik a {
    color: var(--neon-mavi);
    font-weight: 500;
}

.bolum h2,
.bolum-baslik h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Teklif Kartları */
.kart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 eşit sütun */
    gap: 16px;
}

.teklif-karti {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.25s;
}

.teklif-karti:hover {
    border-color: var(--mavi);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.teklif-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.logo-mor {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.logo-kirmizi {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.logo-mavi {
    background: linear-gradient(135deg, var(--mavi), #1d4ed8);
}

.logo-yesil {
    background: linear-gradient(135deg, #059669, #065f46);
}

.teklif-karti h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.teklif-karti p {
    font-size: 12px;
    color: var(--gri-yazi);
    margin-bottom: 6px;
}

.bonus-etiketi {
    font-size: 11px;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.15);
    color: var(--neon-mavi);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Görev Listesi */
.gorev-listesi {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gorev-satiri {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.25s;
}

.gorev-satiri:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.gorev-ikon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gorev-detay {
    flex: 1;
}

.gorev-detay h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.gorev-detay p {
    color: var(--gri-yazi);
    font-size: 13px;
}

.gorev-odul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gorev-odul span {
    font-size: 18px;
    font-weight: 700;
    color: var(--altin);
    display: flex;
    align-items: center;
    gap: 6px;
}

.gorev-odul span i {
    font-size: 14px;
}

/* ===========================
   LANDING PAGE STİLLERİ
   =========================== */

.landing-body {
    background-color: var(--bg);
}

/* Üst Navigasyon */
.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    border-bottom: 1px solid var(--sinir);
    position: sticky;
    top: 0;
    background: rgba(7, 11, 20, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
}

.landing-logo i {
    color: var(--mavi);
}

.landing-logo strong {
    color: var(--neon-mavi);
}

.landing-nav-linkler {
    display: flex;
    gap: 36px;
}

.landing-nav-linkler a {
    color: var(--gri-yazi);
    font-weight: 500;
    transition: color 0.25s;
}

.landing-nav-linkler a:hover {
    color: var(--yazi);
}

.landing-nav-butonlar {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-giris {
    color: var(--yazi);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: color 0.25s;
}

.btn-giris:hover {
    color: var(--neon-mavi);
}

.btn-kayit {
    background: var(--mavi);
    color: white;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    transition: all 0.25s;
}

.btn-kayit:hover {
    background: var(--neon-mavi);
    color: #000;
}

/* Hero Bölümü */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 80px;
    gap: 60px;
    min-height: 90vh;
}

.hero-icerik {
    max-width: 600px;
}

.hero-etiket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--neon-mavi);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-baslik {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.neon-gradient {
    background: linear-gradient(135deg, var(--mavi), var(--neon-mavi));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-alt-yazi {
    font-size: 18px;
    color: var(--gri-yazi);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-alt-yazi strong {
    color: var(--yazi);
}

.hero-butonlar {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.btn-buyuk {
    padding: 16px 32px;
    font-size: 17px;
    border-radius: 14px;
}

.btn-ghost {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gri-yazi);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s;
}

.btn-ghost:hover {
    color: var(--yazi);
}

.guven-notlari {
    display: flex;
    gap: 20px;
}

.guven-notlari span {
    color: var(--gri-yazi);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guven-notlari span i {
    color: var(--mavi);
}

/* Hero Sağ İstatistikler */
.hero-sag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex-shrink: 0;
}

.hero-stat-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 180px;
    transition: border-color 0.25s;
}

.hero-stat-kart:hover {
    border-color: var(--mavi);
}

.stat-ikon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-mavi {
    background: rgba(59, 130, 246, 0.15);
    color: var(--mavi);
}

.stat-yesil {
    background: rgba(5, 150, 105, 0.15);
    color: #34d399;
}

.stat-turuncu {
    background: rgba(245, 158, 11, 0.15);
    color: var(--altin);
}

.stat-mor {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.hero-stat-kart h3 {
    font-size: 22px;
    font-weight: 700;
}

.hero-stat-kart p {
    color: var(--gri-yazi);
    font-size: 13px;
}

/* Nasıl Çalışır */
.nasil-calisir {
    padding: 100px 80px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--sinir);
    border-bottom: 1px solid var(--sinir);
}

.bolum-baslik-merkez {
    text-align: center;
    margin-bottom: 60px;
}

.bolum-baslik-merkez h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.bolum-baslik-merkez p {
    color: var(--gri-yazi);
    font-size: 17px;
}

.adimlar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.adim-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    max-width: 280px;
    transition: border-color 0.25s, transform 0.25s;
}

.adim-kart:hover {
    border-color: var(--mavi);
    transform: translateY(-6px);
}

.adim-numara {
    font-size: 48px;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.adim-ikon {
    font-size: 32px;
    color: var(--mavi);
    margin-bottom: 16px;
}

.adim-kart h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.adim-kart p {
    color: var(--gri-yazi);
    font-size: 14px;
    line-height: 1.6;
}

.adim-cizgi {
    font-size: 32px;
    color: var(--sinir);
    flex-shrink: 0;
}

/* Özellikler */
.ozellikler {
    padding: 100px 80px;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ozellik-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s;
}

.ozellik-kart:hover {
    border-color: var(--mavi);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.ozellik-kart i {
    font-size: 28px;
    color: var(--mavi);
    margin-bottom: 16px;
    display: block;
}

.ozellik-kart h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.ozellik-kart p {
    color: var(--gri-yazi);
    font-size: 14px;
    line-height: 1.6;
}

/* Yorumlar */
.yorumlar {
    padding: 100px 80px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--sinir);
    border-bottom: 1px solid var(--sinir);
}

.yorum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yorum-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 28px;
}

.yildizlar {
    color: var(--altin);
    font-size: 18px;
    margin-bottom: 14px;
}

.yorum-kart>p {
    color: var(--gri-yazi);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.yorum-kisi {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yorum-kisi img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--mavi);
}

.yorum-kisi strong {
    display: block;
    font-size: 14px;
}

.yorum-kisi span {
    color: var(--gri-yazi);
    font-size: 12px;
}

/* Son Çağrı */
.son-cagri {
    padding: 100px 80px;
    text-align: center;
    background: linear-gradient(135deg, #0f1f3d 0%, #0d1321 50%, #070b14 100%);
}

.son-cagri h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.son-cagri p {
    color: var(--gri-yazi);
    font-size: 18px;
    margin-bottom: 36px;
}

/* Footer */
.footer {
    padding: 40px 80px;
    border-top: 1px solid var(--sinir);
}

.footer-icerik {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--mavi);
}

.footer-logo strong {
    color: var(--neon-mavi);
}

.footer-linkler {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
}

.footer-linkler a {
    color: var(--gri-yazi);
    font-size: 14px;
    transition: color 0.25s;
}

.footer-linkler a:hover {
    color: var(--yazi);
}

.footer-telif {
    color: var(--gri-yazi);
    font-size: 13px;
}

/* ===========================
   GİRİŞ / KAYIT SAYFALARI
    line-height: 1;
    margin-bottom: 12px;
}

.adim-ikon {
    font-size: 32px;
    color: var(--mavi);
    margin-bottom: 16px;
}

.adim-kart h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.adim-kart p {
    color: var(--gri-yazi);
    font-size: 14px;
    line-height: 1.6;
}

.adim-cizgi {
    font-size: 32px;
    color: var(--sinir);
    flex-shrink: 0;
}

/* Özellikler */
.ozellikler {
    padding: 100px 80px;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ozellik-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s;
}

.ozellik-kart:hover {
    border-color: var(--mavi);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.ozellik-kart i {
    font-size: 28px;
    color: var(--mavi);
    margin-bottom: 16px;
    display: block;
}

.ozellik-kart h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.ozellik-kart p {
    color: var(--gri-yazi);
    font-size: 14px;
    line-height: 1.6;
}

/* Yorumlar */
.yorumlar {
    padding: 100px 80px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--sinir);
    border-bottom: 1px solid var(--sinir);
}

.yorum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yorum-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 28px;
}

.yildizlar {
    color: var(--altin);
    font-size: 18px;
    margin-bottom: 14px;
}

.yorum-kart>p {
    color: var(--gri-yazi);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.yorum-kisi {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yorum-kisi img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--mavi);
}

.yorum-kisi strong {
    display: block;
    font-size: 14px;
}

.yorum-kisi span {
    color: var(--gri-yazi);
    font-size: 12px;
}

/* Son Çağrı */
.son-cagri {
    padding: 100px 80px;
    text-align: center;
    background: linear-gradient(135deg, #0f1f3d 0%, #0d1321 50%, #070b14 100%);
}

.son-cagri h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.son-cagri p {
    color: var(--gri-yazi);
    font-size: 18px;
    margin-bottom: 36px;
}

/* Footer */
.footer {
    padding: 40px 80px;
    border-top: 1px solid var(--sinir);
}

.footer-icerik {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--mavi);
}

.footer-logo strong {
    color: var(--neon-mavi);
}

.footer-linkler {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
}

.footer-linkler a {
    color: var(--gri-yazi);
    font-size: 14px;
    transition: color 0.25s;
}

.footer-linkler a:hover {
    color: var(--yazi);
}

.footer-telif {
    color: var(--gri-yazi);
    font-size: 13px;
}

/* ===========================
   GİRİŞ / KAYIT SAYFALARI
   =========================== */

.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

/* Arka plan ışık efektleri */
.auth-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.auth-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(13, 148, 136, 0.05) 50%, transparent 100%);
    top: -150px;
    left: -150px;
    animation: authGlowPulse 12s ease-in-out infinite alternate;
}

.auth-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.03) 60%, transparent 100%);
    bottom: -100px;
    right: -100px;
    animation: authGlowPulse 15s ease-in-out infinite alternate-reverse;
}

@keyframes authGlowPulse {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.5;
    }
}

/* Ana kapsayıcı */
.auth-kapsayici {
    width: 100%;
    max-width: 480px;
    padding: 24px;
    position: relative;
    z-index: 1;
    animation: authCardFade 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authCardFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Logo */
.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: var(--yazi);
    margin-bottom: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-logo img {
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
    transition: transform 0.5s ease;
}

.auth-logo:hover img {
    transform: rotate(360deg) scale(1.1);
}

.auth-logo span {
    letter-spacing: 0.5px;
}

.auth-logo strong {
    color: #2dd4bf;
    text-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
}

/* Form kartı */
.auth-kart {
    background: rgba(13, 20, 35, 0.55);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(45, 212, 191, 0.16);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 
                inset 0 1px 0 rgba(255, 255, 255, 0.08), 
                0 0 40px rgba(45, 212, 191, 0.02);
    transition: box-shadow 0.4s, border-color 0.4s;
}

.auth-kart:hover {
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 
                inset 0 1px 0 rgba(255, 255, 255, 0.12), 
                0 0 50px rgba(45, 212, 191, 0.06);
}

.auth-baslik {
    text-align: center;
    margin-bottom: 32px;
}

.auth-baslik h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 40%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.auth-baslik p {
    color: var(--gri-yazi);
    font-size: 15px;
    line-height: 1.5;
}

/* Form Grupları */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grup {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-grup label {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(241, 245, 249, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.3px;
}

.sifremi-unuttum {
    color: #2dd4bf;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s ease;
    text-shadow: 0 0 8px rgba(45, 212, 191, 0.2);
}

.sifremi-unuttum:hover {
    color: #5eead4;
    text-shadow: 0 0 12px rgba(45, 212, 191, 0.5);
    transform: translateY(-0.5px);
}

/* Input kutusu */
.input-kutu {
    display: flex;
    align-items: center;
    background: rgba(8, 12, 24, 0.5);
    border: 1px solid rgba(30, 45, 69, 0.85);
    border-radius: 14px;
    padding: 0 18px;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-kutu:hover {
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(8, 12, 24, 0.6);
}

.input-kutu:focus-within {
    border-color: #2dd4bf;
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    background: rgba(8, 12, 24, 0.75);
}

.input-kutu i {
    color: var(--gri-yazi);
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.input-kutu:focus-within i {
    color: #2dd4bf;
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.input-kutu input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--yazi);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 15px 0;
}

.input-kutu input::placeholder {
    color: rgba(100, 116, 139, 0.7);
}

.goz-btn {
    background: none;
    border: none;
    color: var(--gri-yazi);
    cursor: pointer;
    padding: 5px;
    font-size: 15px;
    transition: all 0.25s ease;
}

.goz-btn:hover {
    color: #2dd4bf;
    text-shadow: 0 0 8px rgba(45, 212, 191, 0.3);
}

/* Checkbox */
.beni-hatirla {
    margin-top: -2px;
}

.checkbox-etiket {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    font-size: 13.5px;
    color: rgba(241, 245, 249, 0.75);
    font-weight: 500 !important;
    user-select: none;
}

.checkbox-etiket input {
    display: none;
}

.checkbox-ozel {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(30, 45, 69, 0.85);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 24, 0.6);
}

.checkbox-etiket:hover .checkbox-ozel {
    border-color: rgba(45, 212, 191, 0.4);
    background: rgba(8, 12, 24, 0.8);
}

.checkbox-etiket input:checked+.checkbox-ozel {
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
    border-color: #2dd4bf;
    box-shadow: 0 0 12px rgba(45, 212, 191, 0.4);
}

.checkbox-etiket input:checked+.checkbox-ozel::after {
    content: '✓';
    color: #070b14;
    font-size: 12.5px;
    font-weight: 900;
}

.link-mavi {
    color: #2dd4bf;
    font-weight: 600;
    transition: all 0.25s ease;
}

.link-mavi:hover {
    color: #5eead4;
    text-shadow: 0 0 8px rgba(45, 212, 191, 0.3);
}

/* Auth Butonu */
.auth-btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 50%, #f59e0b 150%) !important;
    background-size: 200% auto !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 16px 28px !important;
    color: #070b14 !important;
    font-weight: 750 !important;
    font-size: 15.5px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(45, 212, 191, 0.25), 0 0 40px rgba(45, 212, 191, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-btn:hover {
    background-position: right center !important;
    transform: translateY(-2.5px) !important;
    box-shadow: 0 12px 30px rgba(45, 212, 191, 0.4), 
                0 0 50px rgba(45, 212, 191, 0.2), 
                0 0 15px rgba(251, 191, 36, 0.2) !important;
}

.auth-btn:active {
    transform: translateY(0.5px) !important;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3) !important;
}

/* Ayırıcı */
.ayirici {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gri-yazi);
    font-size: 13px;
    font-weight: 500;
}

.ayirici::before,
.ayirici::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(30, 45, 69, 0.6);
}

/* Sosyal Giriş */
.sosyal-giris {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sosyal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: var(--yazi);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sosyal-btn:hover {
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 15px rgba(45, 212, 191, 0.05);
    transform: translateY(-1.5px);
}

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

.sosyal-btn .fa-google {
    color: #EA4335;
    text-shadow: 0 0 10px rgba(234, 67, 53, 0.15);
}

/* Alt link */
.auth-alt-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(100, 116, 139, 0.9);
}

.auth-alt-link a {
    color: #2dd4bf;
    font-weight: 700;
    transition: all 0.25s ease;
}

.auth-alt-link a:hover {
    color: #5eead4;
    text-shadow: 0 0 8px rgba(45, 212, 191, 0.3);
}

/* ===========================
   CASHOUT SAYFASI
   =========================== */

.sayfa-baslik {
    margin-bottom: 28px;
}

.sayfa-baslik h1 {
    font-size: 28px;
    margin-bottom: 6px;
}

.sayfa-baslik p {
    color: var(--gri-yazi);
}

/* Bakiye Kartı */
.bakiye-kart {
    background: linear-gradient(135deg, #0f2460 0%, #0d1321 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.bakiye-sol p {
    color: var(--gri-yazi);
    font-size: 14px;
    margin-bottom: 8px;
}

.bakiye-sol h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--yazi);
    margin-bottom: 4px;
}

.bakiye-sol span {
    color: var(--neon-mavi);
    font-size: 14px;
}

.bakiye-sag {
    display: flex;
    gap: 32px;
}

.bakiye-bilgi {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 14px;
}

.bakiye-bilgi i {
    font-size: 22px;
    color: var(--mavi);
}

.bakiye-bilgi p {
    color: var(--gri-yazi);
    font-size: 12px;
    margin-bottom: 4px;
}

.bakiye-bilgi strong {
    font-size: 18px;
}

/* Cashout Grid */
.cashout-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: start;
}

.bolum-h2 {
    font-size: 18px;
    margin-bottom: 16px;
}

/* Yöntem Listesi */
.yontem-listesi {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yontem-karti {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.25s;
}

.yontem-karti:hover {
    border-color: var(--mavi);
}

.aktif-yontem {
    border-color: var(--mavi) !important;
    background: rgba(59, 130, 246, 0.06) !important;
}

.yontem-ikon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.bitcoin-ikon {
    background: linear-gradient(135deg, #f7931a, #e07b00);
}

.paypal-ikon {
    background: linear-gradient(135deg, #003087, #009cde);
}

.amazon-ikon {
    background: linear-gradient(135deg, #ff9900, #e47911);
    color: #000;
}

.steam-ikon {
    background: linear-gradient(135deg, #1b2838, #4c6b22);
}

.eth-ikon {
    background: linear-gradient(135deg, #627eea, #3c5bd4);
}

.yontem-bilgi {
    flex: 1;
}

.yontem-bilgi h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.yontem-bilgi p {
    color: var(--gri-yazi);
    font-size: 12px;
}

.yontem-check {
    color: var(--gri-yazi);
    font-size: 18px;
    transition: color 0.2s;
}

.aktif-yontem .yontem-check {
    color: var(--mavi);
}

/* Cashout Form */
.cashout-form-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secilen-yontem-goster {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
}

.secilen-yontem-goster strong {
    display: block;
    font-size: 15px;
}

.secilen-yontem-goster p {
    color: var(--gri-yazi);
    font-size: 12px;
}

.input-bilgi {
    color: var(--gri-yazi);
    font-size: 12px;
    margin-top: -12px;
}

.hizli-secim {
    display: flex;
    gap: 8px;
}

.hizli-btn {
    flex: 1;
    padding: 10px;
    background: var(--sidebar-bg);
    border: 1px solid var(--sinir);
    border-radius: 10px;
    color: var(--yazi);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.hizli-btn:hover {
    border-color: var(--mavi);
    color: var(--neon-mavi);
}

.cashout-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.uyari-notu {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    padding: 12px 14px;
}

.uyari-notu i {
    color: var(--mavi);
    margin-top: 2px;
    flex-shrink: 0;
}

.uyari-notu p {
    color: var(--gri-yazi);
    font-size: 13px;
    line-height: 1.5;
}

/* Son İşlemler */
.islem-listesi {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.islem-satiri {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.islem-ikon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.islem-basarili {
    background: rgba(5, 150, 105, 0.15);
    color: #34d399;
}

.islem-bekliyor {
    background: rgba(245, 158, 11, 0.15);
    color: var(--altin);
}

.islem-detay {
    flex: 1;
}

.islem-detay strong {
    display: block;
    font-size: 14px;
}

.islem-detay span {
    color: var(--gri-yazi);
    font-size: 12px;
}

.islem-tutar {
    font-weight: 700;
    font-size: 15px;
}

.tutar-yesil {
    color: #34d399;
}

.tutar-sari {
    color: var(--altin);
}

/* ===========================
   PROFİL SAYFASI
   =========================== */

.profil-ust {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    gap: 24px;
}

.profil-avatar-alan {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profil-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--mavi);
}

.profil-avatar-alan h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.profil-email-yazi {
    color: var(--gri-yazi);
    font-size: 14px;
    margin-bottom: 10px;
}

.profil-rozet {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--neon-mavi);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.profil-istatistik {
    display: flex;
    gap: 24px;
}

.profil-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sinir);
    border-radius: 14px;
    padding: 16px 24px;
}

.profil-stat h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--mavi);
}

.profil-stat p {
    color: var(--gri-yazi);
    font-size: 12px;
    margin-top: 4px;
}

.profil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profil-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 24px;
}

.profil-kart h3 {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profil-kart h3 i {
    color: var(--mavi);
}

.bilgi-satirlari {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bilgi-satiri {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--sinir);
}

.bilgi-satiri:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bilgi-satiri span {
    color: var(--gri-yazi);
    font-size: 14px;
}

.bilgi-satiri strong {
    font-size: 14px;
}

.durum-aktif {
    color: #4ade80;
}

/* ===========================
   LİDERLİK TABLOSU
   =========================== */

.donem-secici {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.donem-btn {
    padding: 10px 24px;
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 10px;
    color: var(--gri-yazi);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.donem-btn:hover {
    border-color: var(--mavi);
    color: var(--yazi);
}

.aktif-donem {
    background: var(--mavi) !important;
    border-color: var(--mavi) !important;
    color: white !important;
}

/* Podyum */
.podyum {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.podyum-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 20px 20px 0 0;
    padding: 24px 32px 0;
    min-width: 160px;
    position: relative;
}

.podyum-1 {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(251, 191, 36, 0.05);
}

.podyum-2 {
    border-color: rgba(148, 163, 184, 0.4);
}

.podyum-3 {
    border-color: rgba(180, 120, 60, 0.4);
}

.podyum-kron {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: -4px;
}

.podyum-avatar {
    position: relative;
    margin-bottom: 4px;
}

.podyum-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--sinir);
}

.podyum-1 .podyum-avatar img {
    border-color: #fbbf24;
}

.podyum-2 .podyum-avatar img {
    border-color: #94a3b8;
}

.podyum-3 .podyum-avatar img {
    border-color: #b47c3c;
}

.podyum-rozet {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
}

.rozet-altin {
    background: #fbbf24;
}

.rozet-gumus {
    background: #94a3b8;
}

.rozet-bronz {
    background: #b47c3c;
}

.podyum-kart strong {
    font-size: 15px;
}

.podyum-puan {
    color: var(--mavi);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.podyum-sutun {
    width: 100%;
    border-radius: 4px 4px 0 0;
    margin-top: auto;
}

.sutun-altin {
    height: 60px;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.05));
}

.sutun-gumus {
    height: 40px;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.3), rgba(148, 163, 184, 0.05));
}

.sutun-bronz {
    height: 25px;
    background: linear-gradient(180deg, rgba(180, 120, 60, 0.3), rgba(180, 120, 60, 0.05));
}

/* Tablo */
.liderlik-tablo {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    overflow: hidden;
}

.tablo-baslik {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 120px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--sinir);
    font-size: 12px;
    font-weight: 700;
    color: var(--gri-yazi);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tablo-satir {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 120px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--sinir);
    align-items: center;
    transition: background 0.2s;
}

.tablo-satir:last-child {
    border-bottom: none;
}

.tablo-satir:hover {
    background: rgba(255, 255, 255, 0.02);
}

.benim-siram {
    background: rgba(59, 130, 246, 0.06) !important;
    border-top: 2px dashed rgba(59, 130, 246, 0.3);
    border-bottom: none;
}

.sira {
    font-weight: 700;
    font-size: 14px;
}

.sira-altin {
    color: #fbbf24;
}

.sira-gumus {
    color: #94a3b8;
}

.sira-bronz {
    color: #b47c3c;
}

.kullanici-bilgi {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kullanici-bilgi img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--sinir);
}

.kullanici-bilgi span {
    font-weight: 600;
    font-size: 14px;
}

.puan-deger {
    color: var(--mavi);
    font-weight: 700;
}

.kazanc-deger {
    color: #4ade80;
    font-weight: 700;
}

/* ===========================
   ÖDÜLLER SAYFASI (PREMIUM GLASSMORPHISM & NEON GLOW)
   =========================== */

.odul-bakiye-banner {
    background: linear-gradient(135deg, rgba(59, 91, 219, 0.15), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(59, 91, 219, 0.35);
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(59, 91, 219, 0.1);
}

.odul-bakiye-banner p {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.odul-bakiye-banner h2 {
    font-size: 32px;
    font-weight: 850;
    color: white;
    letter-spacing: -0.01em;
}

.odul-bakiye-banner h2 i {
    color: var(--altin);
    margin-right: 8px;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

.odul-bilgi-kutu {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 12px;
    padding: 12px 20px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
}

.odul-bilgi-kutu i {
    color: #a78bfa;
}

/* Ödül Grid */
.odul-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.odul-kart {
    background: rgba(13, 19, 33, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.odul-kart::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent, rgba(59, 91, 219, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.odul-kart:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 91, 219, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(59, 91, 219, 0.15);
}

.odul-resim {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    position: relative;
}

.odul-resim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(13, 19, 33, 0.95));
}

.odul-resim span {
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.odul-amazon {
    background: linear-gradient(135deg, #ff9900 30%, #e47911 100%);
}

.odul-steam {
    background: linear-gradient(135deg, #1b2838 30%, #171a21 100%);
}

.odul-bitcoin {
    background: linear-gradient(135deg, #f7931a 30%, #b86b00 100%);
}

.odul-playstation {
    background: linear-gradient(135deg, #003791 30%, #001233 100%);
}

.odul-netflix {
    background: linear-gradient(135deg, #e50914 30%, #800000 100%);
}

.odul-spotify {
    background: linear-gradient(135deg, #1db954 30%, #0c4d22 100%);
}

.odul-icerik {
    padding: 22px 24px;
    position: relative;
    z-index: 2;
}

.odul-icerik h3 {
    font-size: 17px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.odul-icerik p {
    color: #64748b;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.odul-alt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.odul-puan {
    color: var(--altin);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.odul-puan i {
    color: var(--altin);
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.4));
}

.odul-btn {
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif;
}

/* ===========================
   REFERANS SAYFASI
   =========================== */

.ref-banner {
    background: linear-gradient(135deg, #0f2460, #0d1321);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-bottom: 36px;
}

.ref-banner-sol {
    flex: 1;
}

.ref-banner-sol h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.ref-banner-sol p {
    color: var(--gri-yazi);
    margin-bottom: 20px;
}

.ref-link-kutu {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ref-link-kutu .input-kutu {
    flex: 1;
}

.ref-link-kutu input {
    font-size: 13px;
    color: var(--gri-yazi);
}

.ref-paylas-butonlari {
    display: flex;
    gap: 10px;
}

.paylas-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s;
    color: white;
}

.paylas-btn:hover {
    opacity: 0.85;
}

.paylas-whatsapp {
    background: #25D366;
}

.paylas-telegram {
    background: #0088CC;
}

.paylas-twitter {
    background: #000000;
}

.ref-banner-sag {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.ref-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px 32px;
}

.ref-stat h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--neon-mavi);
}

.ref-stat p {
    color: var(--gri-yazi);
    font-size: 13px;
    margin-top: 4px;
}

/* Referans Adımları */
.ref-adimlar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.ref-adim {
    flex: 1;
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.ref-adim-no {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mavi);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-adim-ikon {
    font-size: 28px;
    color: var(--mavi);
    margin-bottom: 12px;
    margin-top: 8px;
}

.ref-adim h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.ref-adim p {
    color: var(--gri-yazi);
    font-size: 13px;
    line-height: 1.5;
}

.ref-ok {
    color: var(--gri-yazi);
    font-size: 20px;
    flex-shrink: 0;
}

/* ===========================
   GÜNLÜK BONUS & BİLDİRİM
   =========================== */

.gunluk-bonus {
    background: linear-gradient(135deg, #1a0533, #0d1321);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    animation: bonusPulse 2s infinite;
}

@keyframes bonusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    }
}

.bonus-sol {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bonus-ikon {
    font-size: 36px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-6px);
    }
}

.bonus-sol h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.bonus-sol p {
    color: var(--gri-yazi);
    font-size: 13px;
}

.bonus-sol strong {
    color: #a855f7;
}

.bonus-sag {
    display: flex;
    align-items: center;
    gap: 20px;
}

.streak-bilgi {
    text-align: center;
}

.streak-sayi {
    font-size: 36px;
    font-weight: 800;
    color: #f97316;
    display: block;
    line-height: 1;
}

.streak-yazi {
    font-size: 12px;
    color: var(--gri-yazi);
}

.bonus-al-btn {
    background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
    animation: bonusBtnPulse 1.5s infinite;
}

@keyframes bonusBtnPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* Bildirim Çanı */
.bildirim-zil {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s;
    color: var(--gri-yazi);
    font-size: 18px;
}

.bildirim-zil:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--yazi);
}

.bildirim-nokta {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--arkaplan);
}

.bolum-h2 {
    font-size: 18px;
    margin-bottom: 16px;
}

/* Mobil Menü Yardımcı Elementleri (Masaüstünde Gizli) */
.mobil-menu-tetikleyici {
    display: none;
}
.mobil-menu-kapat {
    display: none;
}
.mobil-menu-arka-plan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 7, 12, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobil-menu-arka-plan.acik {
    opacity: 1;
    pointer-events: auto;
}

/* ===========================
   RESPONSIVE MODİFİKASYONLAR & MOBİL UYUMLULUK CİLASI
   =========================== */

@media (max-width: 768px) {
    /* 1. Header & Bakiye & Profil mobil yerleşim düzenlemeleri */
    .header {
        padding: 0 16px !important;
        height: 64px !important;
        justify-content: space-between !important;
    }
    
    .mobil-menu-tetikleyici {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--sinir);
        border-radius: 10px;
        width: 40px;
        height: 40px;
        color: white;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.2s;
        margin-right: 12px;
    }
    .mobil-menu-tetikleyici:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--mavi);
    }
    
    .mobil-menu-kapat {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 0;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        color: #64748b;
        cursor: pointer;
        transition: all 0.2s;
    }
    .mobil-menu-kapat:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .sag-taraf {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .header-sag {
        gap: 8px !important;
        margin-left: auto;
    }
    
    /* Mobil Bakiye Rozeti */
    .bakiye {
        padding: 6px 10px !important;
        font-size: 12px !important;
        min-height: 32px !important;
        gap: 4px !important;
    }
    
    .bakiye i {
        font-size: 11px !important;
    }
    
    /* Mobil Profil */
    .profil {
        gap: 6px !important;
    }
    
    .profil img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .profil span {
        display: none !important; /* Mobilde kullanıcı adı gizlenir, sadece avatar kalır */
    }
    
    .bildirim-zil {
        font-size: 16px !important;
    }
    
    /* 2. Sidebar Drawer ile bakiye kutusunun çakışmasını engelleme */
    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -260px !important; /* Slide off screen completely */
        width: 250px !important;
        height: 100vh !important;
        z-index: 100000 !important;
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 25px 0 50px rgba(0, 0, 0, 0.8) !important;
        display: flex !important;
    }
    .sidebar.acik {
        left: 0 !important;
    }
    
    /* 3. Liderlik, Anket ve Teklif Kartlarındaki Taşmaları Çözme */
    .icerik {
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .banner {
        padding: 24px !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .banner-yazi h1 {
        font-size: 26px !important;
    }
    
    .banner-istatistik {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .stat-kart {
        min-width: 100% !important;
    }
    
    /* Grid ve Satır taşmalarını önleme */
    .earnlab-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .earnlab-card {
        min-width: 0 !important; /* Flex/Grid kırılmalarını önler */
    }
    
    .el-badge {
        font-size: 9px !important;
        padding: 1px 4px !important;
    }
    
    .el-top h3 {
        font-size: 15px !important;
    }
    
    .el-bottom {
        font-size: 11px !important;
        padding: 8px !important;
    }
    
    /* Görev listesi mobilde sığsın */
    .gorev-satiri {
        padding: 12px 16px !important;
        gap: 12px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .gorev-ikon {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
    }
    
    .gorev-odul {
        width: 100% !important;
        justify-content: space-between !important;
        border-top: 1px solid rgba(255,255,255,0.05) !important;
        padding-top: 10px !important;
        margin-top: 4px !important;
    }
    
    .gorev-odul span {
        font-size: 15px !important;
    }
    
    /* Mobil auth kartı küçültme */
    .auth-kart {
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }
    
    .auth-baslik h1 {
        font-size: 22px !important;
    }
    
    .sosyal-giris {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

/* ===========================
   LANDING PAGE
   =========================== */

.landing-body {
    background: #080d14;
    overflow-x: hidden;
}

/* Nav */
.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 13, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
}

.nav-logo i {
    color: #3B5BDB;
}

.nav-logo strong {
    color: #3B5BDB;
}

.nav-linkler {
    display: flex;
    gap: 32px;
}

.nav-linkler a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-linkler a:hover {
    color: white;
}

.nav-butonlar {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Hero */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 60px 40px 60px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-icerik {
    flex: 1;
}

.hero-rozet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 91, 219, 0.1);
    border: 1px solid rgba(59, 91, 219, 0.3);
    color: #7096ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-rozet i {
    color: #7C3AED;
}

.hero-icerik h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: white;
}

.gradient-yazi {
    background: linear-gradient(135deg, #3B5BDB, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-icerik p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-butonlar {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn-buyuk {
    padding: 16px 32px !important;
    font-size: 16px !important;
}

.hero-istatistikler {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.hero-ayirici {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Görsel */
.hero-gorsel {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-kart-stack {
    position: relative;
    width: 320px;
    height: 320px;
}

/* Yüksek teknoloji arka plan ızgarası */
.hero-kart-stack::before {
    content: '';
    position: absolute;
    top: -40px; left: -40px; right: -40px; bottom: -40px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.04) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-kart {
    position: absolute;
    background: rgba(8, 12, 24, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    width: 270px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s, z-index 0.4s !important;
    z-index: 1;
}

.kart-1 {
    top: -10px;
    left: -20px;
    z-index: 2;
    animation: heroFloat 7s ease-in-out infinite;
}

.kart-2 {
    top: 85px;
    left: 45px;
    z-index: 3;
    animation: heroFloat 7s ease-in-out infinite 1.8s;
}

.kart-3 {
    top: 185px;
    left: -10px;
    z-index: 4;
    animation: heroFloat 7s ease-in-out infinite 3.6s;
}

.kart-1:hover {
    transform: scale(1.08) translateY(-12px) rotate(-1.5deg) !important;
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.35), 0 0 25px rgba(0, 242, 254, 0.2) !important;
    border-color: rgba(0, 242, 254, 0.6) !important;
    z-index: 10 !important;
}

.kart-2:hover {
    transform: scale(1.08) translateY(-12px) rotate(1.5deg) !important;
    box-shadow: 0 20px 50px rgba(217, 70, 239, 0.35), 0 0 25px rgba(217, 70, 239, 0.2) !important;
    border-color: rgba(217, 70, 239, 0.6) !important;
    z-index: 10 !important;
}

.kart-3:hover {
    transform: scale(1.08) translateY(-12px) rotate(-1deg) !important;
    box-shadow: 0 20px 50px rgba(74, 222, 128, 0.35), 0 0 25px rgba(74, 222, 128, 0.2) !important;
    border-color: rgba(74, 222, 128, 0.6) !important;
    z-index: 10 !important;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.015);
    }
}

.hk-ust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hk-ikon {
    font-size: 20px;
}

.hk-etiket {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-kart p {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.hk-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hk-odul {
    color: var(--mavi);
    font-weight: 700;
    font-size: 14px;
}

.kart-2 .hk-odul {
    color: var(--mor);
}

.hk-durum {
    background: rgba(59, 91, 219, 0.12);
    color: #7096ff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.kart-2 .hk-durum {
    background: rgba(124, 58, 237, 0.15);
    color: #b794f4;
}

/* Nasıl Çalışır */
.nasil-calisir {
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bolum-baslik-orta {
    text-align: center;
    margin-bottom: 56px;
}

.bolum-baslik-orta h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.bolum-baslik-orta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.adimlar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.adim-kart {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s;
}

.adim-kart:hover {
    border-color: rgba(59, 91, 219, 0.4);
    transform: translateY(-6px);
}

.adim-no {
    font-size: 48px;
    font-weight: 900;
    color: rgba(59, 91, 219, 0.15);
    margin-bottom: 8px;
}

.adim-ikon-buyuk {
    font-size: 40px;
    margin-bottom: 16px;
}

.adim-kart h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.adim-kart p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
}

.adim-ok {
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    flex-shrink: 0;
}

/* Özellikler */
.ozellikler-bolum {
    padding: 40px 60px;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.ozellik-kart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.ozellik-kart:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
}

.ozellik-ikon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.oz-mavi {
    background: rgba(59, 91, 219, 0.15);
    color: #7096ff;
}

.oz-yesil {
    background: rgba(124, 58, 237, 0.15);
    color: #b794f4;
}

.oz-mor {
    background: rgba(59, 91, 219, 0.15);
    color: #7096ff;
}

.oz-turuncu {
    background: rgba(124, 58, 237, 0.15);
    color: #b794f4;
}

.ozellik-kart h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.ozellik-kart p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.5;
}

/* Ödeme */
.odeme-bolum {
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.odeme-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.odeme-kart {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 28px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.odeme-kart:hover {
    border-color: rgba(59, 91, 219, 0.4);
    background: rgba(59, 91, 219, 0.05);
}

.odeme-kart span {
    color: #3B5BDB;
    font-size: 20px;
}

/* Yorumlar */
.yorumlar-bolum {
    padding: 40px 60px;
}

.yorum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.yorum-kart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
}

.yorum-yildiz {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 14px;
}

.yorum-kart p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.yorum-kullanici {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yorum-kullanici img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(59, 91, 219, 0.3);
}

.yorum-kullanici strong {
    display: block;
    font-size: 14px;
    color: white;
}

.yorum-kullanici span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* CTA */
.cta-bolum {
    text-align: center;
    padding: 60px 60px;
    background: linear-gradient(135deg, rgba(59, 91, 219, 0.12), rgba(124, 58, 237, 0.12));
    border-top: 1px solid rgba(59, 91, 219, 0.2);
}

.cta-bolum h2 {
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.cta-bolum p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    font-size: 16px;
}

/* Footer */
.landing-footer {
    padding: 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-icerik {
    text-align: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo i,
.footer-logo strong {
    color: #3B5BDB;
}

.footer-linkler {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-linkler a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-linkler a:hover {
    color: white;
}

.footer-telif {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* Landing mobil */
@media (max-width: 768px) {
    .landing-nav {
        padding: 16px 20px;
    }

    .nav-linkler {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-icerik h1 {
        font-size: 36px;
    }

    .hero-gorsel {
        display: none;
    }

    .hero-istatistikler {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nasil-calisir,
    .ozellikler-bolum,
    .odeme-bolum,
    .yorumlar-bolum {
        padding: 40px 20px;
    }

    .adimlar-grid {
        flex-direction: column;
    }

    .adim-ok {
        transform: rotate(90deg);
    }

    .ozellik-grid,
    .yorum-grid {
        grid-template-columns: 1fr;
    }

    .cta-bolum {
        padding: 40px 20px;
    }

    .cta-bolum h2 {
        font-size: 28px;
    }
}

/* ===========================
   ADMİN PANELİ
   =========================== */

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.admin-stat-kart {
    background: var(--kart-bg);
    border: 1px solid var(--sinir);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-stat-ikon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.admin-stat-kart h3 {
    font-size: 24px;
    font-weight: 800;
}

.admin-stat-kart p {
    color: var(--gri-yazi);
    font-size: 13px;
    margin-top: 2px;
}

.admin-araclari {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .admin-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-araclari {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   SAYFA YÜKLEME
   =========================== */
.sayfa-yukle {
    position: fixed;
    inset: 0;
    background: #080d14;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s, visibility 0.4s;
}

.sayfa-yukle.gizle {
    opacity: 0;
    visibility: hidden;
}

.yukle-logo {
    font-size: 32px;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: logoPulse 1s ease-in-out infinite alternate;
}

.yukle-logo i {
    color: #3b82f6;
}

.yukle-logo strong {
    color: #3b82f6;
}

@keyframes logoPulse {
    from {
        opacity: 0.4;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SSS (PREMIUM MODERN ACCORDION) */
.sss-liste {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sss-item {
    background: rgba(13, 19, 33, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.sss-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent, rgba(124, 58, 237, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.sss-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(124, 58, 237, 0.05);
}

.aktif-sss {
    border-color: rgba(124, 58, 237, 0.4) !important;
    background: rgba(13, 19, 33, 0.85);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 25px rgba(124, 58, 237, 0.1) !important;
}

.sss-soru {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    color: white;
    font-weight: 750;
    font-size: 16px;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.sss-soru i {
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    font-size: 14px;
}

.aktif-sss .sss-soru i {
    transform: rotate(180deg);
    color: #a78bfa;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.sss-cevap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #94a3b8;
    font-size: 14.5px;
    line-height: 1.7;
    padding: 0 28px;
    font-weight: 500;
}

.aktif-sss .sss-cevap {
    max-height: 250px;
    padding: 0 28px 24px;
}

/* Yasal Sayfalar */
.yasal-icerik h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 32px 0 12px;
}

.yasal-icerik p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CANLI AKIS (LIVE FEED - ULTRA PREMIUM REDESIGN) ===== */
.canli-akis-container {
    width: 100%;
    background: linear-gradient(90deg, #070b14, #0d1321, #070b14);
    border-bottom: 1px solid rgba(59, 91, 219, 0.25);
    overflow: hidden;
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.canli-akis-container::before,
.canli-akis-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.canli-akis-container::before {
    left: 0;
    background: linear-gradient(to right, #070b14 20%, transparent 100%);
}

.canli-akis-container::after {
    right: 0;
    background: linear-gradient(to left, #070b14 20%, transparent 100%);
}

.canli-akis-icerik {
    display: flex;
    white-space: nowrap;
    align-items: center;
    animation: akisKaydir 30s linear infinite;
    gap: 16px;
}

.canli-akis-icerik:hover {
    animation-play-state: paused;
}

.akis-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 650;
    color: #94a3b8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.akis-item:hover {
    background: rgba(59, 91, 219, 0.1);
    border-color: rgba(59, 91, 219, 0.35);
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(59, 91, 219, 0.2);
    color: white;
}

.akis-item .isim {
    color: #e2e8f0;
    font-weight: 750;
}

.akis-item .puan {
    color: #34d399;
    font-weight: 800;
    background: rgba(52, 211, 153, 0.12);
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px solid rgba(52, 211, 153, 0.2);
    filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.2));
}

.akis-item .odul {
    color: #a78bfa;
    font-weight: 800;
    background: rgba(167, 139, 250, 0.12);
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px solid rgba(167, 139, 250, 0.2);
}

@keyframes akisKaydir {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}



/* ===========================
   EARNLAB TARZI OFFERWALL GRID
   =========================== */
.earnlab-grid {
    display: grid;
    /* Ekranda tam 6 sütun olacak şekilde ayarlandı */
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.earnlab-card {
    background: rgba(13, 21, 37, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.earnlab-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--neon-mavi);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.2), 0 0 15px rgba(0, 242, 254, 0.1);
}

.el-desc {
    color: #64748b;
    font-size: 11.5px;
    padding: 0 16px 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s;
}

.earnlab-card:hover .el-desc {
    color: #cbd5e1;
}

.el-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #0284c7;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}

.el-top {
    height: 75px; /* Logoların olduğu kısım ekran görüntüsündeki gibi daraltıldı */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
}

.el-bottom {
    background: rgba(255, 255, 255, 0.02);
    padding: 10px; /* Yazının etrafındaki boşluklar azaltıldı */
    text-align: center;
    font-size: 13px; /* Yazı boyutu hafif küçültüldü */
    font-weight: 600;
    color: #cbd5e1;
    border-top: 1px solid #1e293b;
    z-index: 1;
}

@media (max-width: 1200px) {
    .earnlab-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .earnlab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icerik {
        padding: 20px !important;
    }
}

/* ===========================
   GÖREV SİMÜLASYONU MODAL CSS
   =========================== */
.modal-arkaplan {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-icerik {
    background: #0f1523;
    border: 1px solid #1e293b;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    background: #111827;
    padding: 20px 24px;
    border-bottom: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 18px;
    margin: 0;
    color: white;
}

.modal-kapat {
    color: var(--gri-yazi);
    cursor: pointer;
    font-size: 20px;
    transition: color 0.2s;
}

.modal-kapat:hover {
    color: white;
}

.modal-govde {
    padding: 24px;
}

.gercek-gorev-listesi {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gercek-gorev-karti {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}

.gercek-gorev-karti:hover {
    border-color: #3b82f6;
}

.gg-sol {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gg-ikon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.gg-detay h4 {
    font-size: 15px;
    color: white;
    margin: 0 0 4px 0;
}

.gg-detay span {
    font-size: 12px;
    color: var(--gri-yazi);
}

.gg-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.gg-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.gg-btn:disabled {
    background: #1e293b;
    color: var(--gri-yazi);
    cursor: not-allowed;
    transform: none;
}


/* ==========================================
   ⚡ LITECOIN (LTC) PREMIUM CARD STYLING
   ========================================== */

.ltc-odeme-kapsayici {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.ltc-premium-kart {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(9, 14, 23, 0.75), rgba(7, 10, 16, 0.9));
    border: 1px solid rgba(59, 91, 219, 0.25);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(59, 91, 219, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ltc-premium-kart::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(59, 91, 219, 0.4), transparent, rgba(124, 58, 237, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    pointer-events: none;
}

.ltc-premium-kart:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 91, 219, 0.45);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.9), 0 0 50px -5px rgba(59, 91, 219, 0.3);
}

.ltc-premium-kart:hover .ltc-logo-alan {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 30px rgba(59, 91, 219, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.3);
}

.ltc-kart-icerik {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.ltc-logo-alan {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3B5BDB, #7C3AED);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    border: 2px solid rgba(112, 150, 255, 0.4);
    box-shadow: 0 0 20px rgba(59, 91, 219, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.ltc-logo-alan i {
    position: absolute;
    font-size: 14px;
    top: 6px;
    right: 6px;
    opacity: 0.8;
}

.ltc-logo-alan .ltc-sembol {
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.ltc-detaylar {
    flex: 1;
}

.ltc-detaylar h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.ltc-detaylar p {
    color: rgba(148, 163, 184, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.ltc-durum-rozet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.aktif-isik {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    animation: ltcPulse 1.8s infinite;
}

@keyframes ltcPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 640px) {
    .ltc-kart-icerik {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .ltc-durum-rozet {
        margin-top: 4px;
    }
}

/* ==========================================
   💬 HORIZONTAL INFINITE SCROLL MARQUEE
   ========================================== */

.marquee-kapsayici {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-kapsayici::before,
.marquee-kapsayici::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-kapsayici::before {
    left: 0;
    background: linear-gradient(to right, #080d14 0%, transparent 100%);
}

.marquee-kapsayici::after {
    right: 0;
    background: linear-gradient(to left, #080d14 0%, transparent 100%);
}

.marquee-serit {
    display: flex;
    width: max-content;
}

.marquee-grup {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    animation: marquee-kaydir 25s linear infinite;
}

.marquee-serit:hover .marquee-grup {
    animation-play-state: paused;
}

.marquee-grup .yorum-kart {
    width: 320px;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.marquee-grup .yorum-kart:hover {
    border-color: rgba(45, 212, 191, 0.25);
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@keyframes marquee-kaydir {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ==========================================
   📱 MOBİL MENÜ TETİKLEYİCİ VE KAPATMA BUTONLARI (VARSAYILAN GİZLİ)
   ========================================== */
.mobil-menu-tetikleyici {
    display: none !important;
}
.mobil-menu-kapat {
    display: none !important;
}

/* ==========================================
   ⚡ GELİŞMİŞ MOBİL VE TABLET MEDYA SORGULARI (max-width: 991px)
   ========================================== */
@media (max-width: 991px) {
    /* Kaydırma ve Taşma Koruması */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    /* Sol Kenar Menüsü (Sidebar) -> Off-Canvas Drawer */
    .sidebar {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 280px !important;
        height: 100vh !important;
        z-index: 1001 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: none !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
        background-color: #0d1321 !important;
    }

    .sidebar.acik {
        transform: translateX(0) !important;
        box-shadow: 25px 0 50px -12px rgba(0, 0, 0, 0.8) !important;
    }

    .sidebar .logo {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
    }

    .mobil-menu-kapat {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 34px !important;
        height: 34px !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        color: var(--yazi) !important;
        cursor: pointer !important;
        transition: all 0.25s !important;
    }

    .mobil-menu-kapat:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: scale(1.05);
    }

    /* Mobil Overlay / Arka Plan Karartma */
    .mobil-menu-arka-plan {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(5, 9, 18, 0.65) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        z-index: 1000 !important;
        transition: opacity 0.4s ease !important;
    }

    .mobil-menu-arka-plan.acik {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Sağ Taraf İçerik Alanı Sıfırlama */
    .sag-taraf {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Header Mobil Uyum */
    .header {
        padding: 0 20px !important;
        justify-content: space-between !important;
        height: 64px !important;
    }

    .mobil-menu-tetikleyici {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 42px !important;
        height: 42px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        color: var(--yazi) !important;
        font-size: 18px !important;
        cursor: pointer !important;
        transition: all 0.25s !important;
    }

    .mobil-menu-tetikleyici:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        transform: translateY(-1px);
    }

    /* Grid Yapıları */
    .earnlab-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .kart-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* ==========================================
   ⚡ GELİŞMİŞ MOBİL SORGULARI (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    /* Genel Doldurma ve Boşluklar */
    .icerik {
        padding: 20px 16px !important;
    }

    /* Offerwall Kart Ölçeklendirmeleri */
    .earnlab-card {
        border-radius: 12px !important;
    }
    .el-top h3 {
        font-size: 15px !important;
    }
    .el-bottom {
        font-size: 11px !important;
        padding: 8px 6px !important;
    }

    /* Header Sağ Elemanları Küçültme */
    .bakiye {
        padding: 6px 12px 6px 9px !important;
        min-height: 34px !important;
    }
    .bakiye-label {
        font-size: 8px !important;
    }
    #header-puan {
        font-size: 11px !important;
    }
    .header-bakiye-mod {
        font-size: 9px !important;
        height: 14px !important;
        margin-top: 1px !important;
    }

    .profil {
        padding: 4px 8px 4px 4px !important;
    }
    .profil img {
        width: 28px !important;
        height: 28px !important;
    }
    .profil-info {
        display: none !important; /* Mobil ekranda isim ve rolü gizle, sadece avatar kalsın */
    }

    /* Banner Mobil Optimizasyonu */
    .banner {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 28px !important;
        gap: 24px !important;
        margin-bottom: 28px !important;
    }

    .banner-yazi h1 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }

    .banner-yazi p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .banner-istatistik {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .stat-kart {
        width: 100% !important;
        min-width: 0 !important;
        padding: 16px 20px !important;
    }

    /* Landing (Giriş) Sayfası Hero Bölümü */
    .hero-section {
        flex-direction: column !important;
        text-align: center !important;
        padding: 100px 20px 48px !important;
        gap: 40px !important;
    }

    .hero-icerik {
        align-items: center !important;
        text-align: center !important;
    }

    .hero-icerik h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-icerik p {
        font-size: 15px !important;
        max-width: 100% !important;
    }

    .hero-butonlar {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-butonlar .btn-birincil,
    .hero-butonlar .btn-ikincil {
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-istatistikler {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        margin-top: 32px !important;
        width: 100% !important;
    }

    .hero-ayirici {
        display: none !important; /* Dikey çizgileri mobilde gizle */
    }

    /* Adımlar (Nasıl Çalışır) Grid */
    .adimlar-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .adim-ok {
        transform: rotate(90deg) !important; /* Okları dikey yönlendir */
        margin: 8px 0 !important;
    }

    /* Özellikler Grid */
    .ozellik-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ==========================================
   ⚡ EKSTRA UFAK MOBİL SORGULARI (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
    .icerik {
        padding: 16px 12px !important;
    }

    /* Keep grids side-by-side on mobile instead of vertical stacking */
    .earnlab-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .kart-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Landing Navigasyon */
    .landing-nav {
        padding: 12px 16px !important;
    }
    .landing-nav .nav-logo span {
        font-size: 18px !important;
    }
    .landing-nav .nav-logo img {
        width: 24px !important;
    }
    .landing-nav .nav-linkler {
        display: none !important; /* Masaüstü linkleri tamamen gizle */
    }
    .landing-nav .nav-butonlar .btn-ikincil {
        display: none !important;
    }
    .landing-nav .nav-butonlar .btn-birincil {
        padding: 8px 16px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    /* Profil Sayfası Formları */
    .profil-kart-govde {
        padding: 16px !important;
    }

    .form-row {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .form-group {
        width: 100% !important;
    }

    /* Görev Modal */
    .modal-icerik {
        width: 95% !important;
        margin: 10px auto !important;
        max-height: 90vh !important;
    }
    
    .gercek-gorev-karti {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }
    
    .gg-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ==========================================
   🏆 MODERN PREMIUM GEÇİŞ VE HOVER EFEKTLERİ
   ========================================== */
.stat-kart,
.hero-stat-kart,
.adim-kart,
.ozellik-kart,
.yorum-kart,
.auth-kart,
.bakiye-kart,
.cashout-form-kart,
.profil-kart,
.podyum-kart,
.odul-kart,
.hero-kart,
.odeme-kart,
.admin-stat-kart,
.earnlab-card,
.ltc-premium-kart {
    transition: var(--transition-premium) !important;
}

.stat-kart:hover,
.hero-stat-kart:hover,
.adim-kart:hover,
.ozellik-kart:hover,
.yorum-kart:hover,
.auth-kart:hover,
.bakiye-kart:hover,
.cashout-form-kart:hover,
.profil-kart:hover,
.podyum-kart:hover,
.odul-kart:hover,
.hero-kart:hover,
.odeme-kart:hover,
.admin-stat-kart:hover,
.earnlab-card:hover,
.ltc-premium-kart:hover {
    transform: translateY(-5px) scale(1.015) !important;
    box-shadow: 0 15px 35px rgba(59, 91, 219, 0.25), 0 0 20px rgba(112, 150, 255, 0.15) !important;
    border-color: rgba(112, 150, 255, 0.4) !important;
}

@keyframes premiumSlideInUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ani-slide-up-load {
    animation: premiumSlideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ==========================================
   💬 DESTEK CHAT VE GENEL PROFİL MODALİ MOBİL OPTİMİZASYONLARI
   ========================================== */
@media (max-width: 520px) {
    /* Destek Chat Penceresi Mobil Revizesi */
    #ee-ai-widget {
        position: fixed !important;
        right: 12px !important;
        bottom: 85px !important;
        left: 12px !important;
        width: auto !important;
        height: min(580px, calc(100vh - 105px)) !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        z-index: 10002 !important;
        top: auto !important;
    }
    
    #ee-ai-button {
        right: 16px !important;
        bottom: 16px !important;
        z-index: 99999 !important;
    }
    
    .ee-ai-top {
        padding: 14px 16px !important;
    }
    
    .ee-ai-title {
        font-size: 15px !important;
    }
    
    .ee-ai-agent-stack img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .ee-ai-top-copy {
        margin: 10px 0 0 !important;
        font-size: 16px !important;
    }
    
    #ee-ai-welcome-greeting {
        padding: 0 !important;
        font-size: 17px !important;
    }
    
    .ee-ai-context, .ee-ai-thread-meta, .ee-ai-quick-grid {
        grid-template-columns: 1fr !important;
    }
    
    .ee-ai-announcement-bar {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        padding: 8px 12px !important;
    }
    
    #ee-ai-home, #ee-ai-help {
        padding: 14px !important;
        gap: 12px !important;
    }
    
    .ee-ai-home-card {
        padding: 12px !important;
        gap: 10px !important;
    }
    
    .ee-ai-home-head strong {
        font-size: 14.5px !important;
    }
    
    .ee-ai-home-head span {
        font-size: 11.5px !important;
    }
    
    .ee-ai-home-badges {
        gap: 4px !important;
    }
    
    .ee-ai-home-badges span {
        padding: 6px !important;
        font-size: 9.5px !important;
    }
    
    .ee-ai-profile-card {
        gap: 6px !important;
        padding: 10px !important;
    }
    
    .ee-ai-profile-card strong {
        font-size: 12px !important;
        margin-top: 4px !important;
    }

    /* Genel Profil Modali Mobil Revizesi (Tıklanan Kişinin Profili) */
    .em-overlay {
        padding: 12px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .em-content {
        width: 100% !important;
        max-width: 480px !important; /* Masaüstündeki devasa genişleme engellendi */
        max-height: 90vh !important;
        border-radius: 20px !important;
    }
    
    .em-header {
        padding: 16px 20px !important;
    }
    
    .em-header h3 {
        font-size: 16px !important;
    }
    
    .em-body {
        padding: 16px !important;
    }
    
    .em-user-info {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    
    .em-avatar {
        width: 64px !important;
        height: 64px !important;
    }
    
    .em-user-details h4 {
        font-size: 18px !important;
    }
    
    .em-user-details p {
        justify-content: center !important;
    }
    
    .em-country {
        align-self: center !important;
    }
    
    .em-stats-grid {
        grid-template-columns: 1fr !important; /* İstatistikler mobilde alt alta */
        gap: 10px !important;
    }
    
    .em-stat-card {
        padding: 12px !important;
    }
    
    .em-stat-val {
        font-size: 18px !important;
    }
    
    .em-level {
        padding: 12px !important;
        margin-bottom: 20px !important;
    }
    
    .em-level-texts {
        font-size: 12px !important;
    }
    
    /* Mobil Liste Kart Görünümü (Tablo yerine) */
    .em-tasks table {
        display: block !important;
        width: 100% !important;
    }
    
    .em-tasks thead {
        display: none !important;
    }
    
    .em-tasks tbody {
        display: block !important;
        width: 100% !important;
    }
    
    .em-tasks tr.task-row {
        display: flex !important;
        flex-direction: column !important;
        background: rgba(13, 19, 33, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.04) !important;
        border-radius: 14px !important;
        padding: 12px !important;
        margin-bottom: 8px !important;
        gap: 6px !important;
        width: 100% !important;
    }
    
    .em-tasks tr.task-row td {
        display: flex !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        width: 100% !important;
        text-align: left !important;
    }
    
    .em-tasks tr.task-row td:first-child {
        font-size: 13px !important;
        font-weight: 700 !important;
        border-radius: 0 !important;
        border: 0 !important;
    }
    
    .em-tasks tr.task-row td:nth-child(2) {
        font-size: 11px !important;
        color: #64748b !important;
    }
    
    .em-tasks tr.task-row td:last-child {
        justify-content: flex-end !important;
        font-size: 14px !important;
        border-radius: 0 !important;
        border: 0 !important;
    }
}

/* Support Chat Mobile View Fixes */
@media (max-width: 640px) {
    body.ee-chat-open #ee-ai-widget {
        position: fixed !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        top: 0 !important;
        width: 100vw !important;
        height: auto !important;
        max-width: 100vw !important;
        max-height: 100% !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        border: none !important;
        z-index: 999999999 !important; /* extremely high z-index to overlay headers */
        display: flex !important;
    }
    body.ee-chat-open {
        overflow: hidden !important; /* prevent background scrolling on mobile */
    }
    body.ee-chat-open #ee-ai-button {
        display: none !important;
    }
    body.ee-chat-open #ee-ai-widget .ee-ai-footer {
        padding-bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    }
    body.ee-chat-open .header,
    body.ee-chat-open .header-sag,
    body.ee-chat-open .bakiye,
    body.ee-chat-open .bildirim-zil,
    body.ee-chat-open .sidebar,
    body.ee-chat-open .mobil-menu-arka-plan {
        display: none !important;
    }
    body.ee-chat-open #ee-ai-widget .ee-ai-top {
        background: #0d1527 !important; /* solid opaque background to prevent bleed-through */
    }
}

/* Hide chat widget stats card globally */
.ee-ai-profile-card {
    display: none !important;
}

#ee-ai-widget .ee-ai-mobile-hide,
#ee-ai-widget #ee-ai-announcement,
#ee-ai-widget .ee-ai-care-grid,
#ee-ai-widget .ee-ai-quick-grid,
#ee-ai-widget .ee-ai-ticket-list {
    display: none !important;
}

/* Premium styling overrides for support chat elements */
#ee-ai-widget {
    border: 1px solid rgba(0, 242, 254, 0.35) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 242, 254, 0.15) !important;
}

#ee-ai-insight-card {
    border: 1px solid rgba(217, 70, 239, 0.4) !important;
    background: linear-gradient(135deg, rgba(14, 20, 36, 0.88), rgba(21, 30, 54, 0.75)) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 15px rgba(217, 70, 239, 0.15) !important;
    border-radius: 18px !important;
    padding: 16px !important;
}

#ee-ai-insight-card strong {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3) !important;
}

/* Beautiful animation for chat bubbles */
.ee-ai-row {
    animation: bubbleSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes bubbleSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
