/* ===== MODERN DESIGN SYSTEM (TIER-1 FINTECH & GAMING REWARDS) ===== */
:root {
    --bg: #07090e; /* Deep solid space navy */
    --sidebar-bg: #0b0e17; /* Solid structured sidebar */
    --kart-bg: #0f1422; /* Premium solid card surface */
    --sinir: rgba(255, 255, 255, 0.08); /* Ultra-crisp 1px border */
    --sinir-hover: rgba(0, 210, 255, 0.4); /* Logo light blue hover border */
    --primary: #00d2ff; /* Logo Electric Light Blue */
    --primary-hover: #38e1ff;
    --primary-glow: rgba(0, 210, 255, 0.2);
    --mavi: #00d2ff;
    --neon-mavi: #00d2ff; /* Logo light blue */
    --neon-mor: #6366f1;
    --mor: #6366f1;
    --yazi: #ffffff;
    --gri-yazi: #94a3b8;
    --altin: #f59e0b;
    --transition-premium: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: none;
    --glow-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* ===== AMBIENT BACKGROUND GLOW ===== */
.mesh-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    background: #07090e;
}

.mesh-glow-item {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
    mix-blend-mode: screen;
}

.mesh-glow-1 {
    background: radial-gradient(circle, #00d2ff 0%, transparent 70%);
    top: -15%;
    right: -10%;
}

.mesh-glow-2 {
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

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

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

/* ===== REFINED TACTILE CARDS ===== */
.teklif-karti, .teklif-karti-yeni, .earnlab-card, .adim-kart, .ozellik-kart, .adtowall-task-card {
    position: relative;
    overflow: hidden;
    background: var(--kart-bg) !important;
    border: var(--glass-border) !important;
    border-radius: 14px !important;
    transition: var(--transition-premium);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.teklif-karti:hover, .teklif-karti-yeni:hover, .earnlab-card:hover, .adim-kart:hover, .ozellik-kart:hover, .adtowall-task-card:hover {
    transform: translateY(-3px) !important;
    border-color: var(--sinir-hover) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 210, 255, 0.25) !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: 220px;
    background-color: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    padding: 24px 16px;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
}

.logo span {
    color: #ffffff;
}

.logo strong {
    color: #00f2fe;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

/* Menü Linkleri */
.menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.menu li a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #475569;
    transition: color 0.2s ease;
}

.menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
}

.menu li a:hover i {
    color: #94a3b8;
}

/* Aktif (seçili) menü öğesi */
.menu li.aktif a {
    background: rgba(0, 242, 254, 0.08) !important;
    border-left: 3px solid #00f2fe;
    color: #ffffff !important;
    font-weight: 600;
}

.menu li.aktif a i {
    color: #00f2fe !important;
}

/* Divider & Log Out */
.menu li:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 12px;
    padding-top: 12px;
}

.menu li:last-child a:hover {
    background-color: rgba(239, 68, 68, 0.08);
    color: #ef4444 !important;
}

.menu li:last-child a:hover i {
    color: #ef4444 !important;
}

/* ===== SAĞ TARAF ===== */
.sag-taraf {
    flex: 1;
    margin-left: 220px;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.02);
    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: 56px;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
}

.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;
}

/* ===== ULTRA LUXURY FINTECH & GAMING BALANCE BADGE ===== */
.bakiye {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(6, 12, 24, 0.95) 0%, rgba(12, 20, 40, 0.9) 50%, rgba(16, 28, 56, 0.95) 100%);
    border: 1px solid rgba(0, 210, 255, 0.38);
    padding: 5px 14px 5px 6px;
    border-radius: 999px;
    font-weight: 800;
    color: #ffffff;
    min-height: 40px;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.bakiye::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 210, 255, 0.3) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(0, 210, 255, 0.3) 55%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.bakiye:hover::before {
    transform: translateX(120%);
}

.bakiye:hover {
    background: linear-gradient(135deg, rgba(8, 16, 32, 0.98) 0%, rgba(16, 28, 56, 1) 100%);
    border-color: #00d2ff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 28px rgba(0, 210, 255, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.bakiye:active {
    transform: translateY(0) scale(0.97);
}

.bakiye i.bakiye-ikon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d2ff 0%, #0284c7 100%);
    font-size: 13px;
    color: #07090e;
    box-shadow: 0 0 14px rgba(0, 210, 255, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    filter: none;
    animation: coinSpinPulse 4s infinite ease-in-out;
    flex-shrink: 0;
}

@keyframes coinSpinPulse {
    0%, 100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 14px rgba(0, 210, 255, 0.6); }
    50% { transform: scale(1.08) rotate(6deg); box-shadow: 0 0 22px rgba(0, 210, 255, 0.95); }
}

.bakiye-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
    min-width: 0;
}

.bakiye-label {
    font-size: 8.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #38bdf8;
    line-height: 1;
    opacity: 0.85;
}

#header-puan {
    font-size: 13.5px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    min-width: 0;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(0, 210, 255, 0.4);
}

.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='%2300d2ff' 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: #00d2ff;
    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: #38e1ff; }

.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 12px 5px 5px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(12, 18, 34, 0.85) 0%, rgba(6, 10, 20, 0.95) 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 0;
    max-width: 210px;
    user-select: none;
}

.profil:hover {
    background: linear-gradient(135deg, rgba(16, 26, 48, 0.95) 0%, rgba(10, 16, 30, 1) 100%);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(0, 210, 255, 0.15);
    transform: translateY(-2px);
}

.profil:active {
    transform: translateY(0) scale(0.98);
}

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

.profil img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(0, 210, 255, 0.35);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    object-fit: cover;
}

.profil:hover img {
    border-color: #00d2ff;
    transform: scale(1.08);
    box-shadow: 0 0 14px rgba(0, 210, 255, 0.45);
}

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

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

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

.profil-role {
    font-size: 9.5px;
    font-weight: 800;
    color: #00d2ff;
    background: rgba(0, 210, 255, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid rgba(0, 210, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    display: inline-block;
    align-self: flex-start;
}

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

/* 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;
}

.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: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.bildirim-zil:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.06) 0%, rgba(217, 70, 239, 0.03) 100%);
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bildirim-zil i {
    font-size: 16px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.bildirim-zil:hover i {
    color: #00f2fe;
    filter: drop-shadow(0 0 4px rgba(0, 242, 254, 0.5));
}

.bildirim-nokta {
    position: absolute !important;
    top: 6px !important;
    right: 6px !important;
    width: 8px !important;
    height: 8px !important;
    background: linear-gradient(135deg, #ef4444, #f43f5e) !important;
    border: 2px solid #030712 !important;
    border-radius: 50% !important;
    display: block !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.9) !important;
    animation: notifPulse 1.8s infinite ease-in-out !important;
}

@keyframes notifPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.2); filter: brightness(1.2); box-shadow: 0 0 15px rgba(239, 68, 68, 1); }
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #0f1524 0%, #090d16 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    gap: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-yazi h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: #ffffff;
}

.mavi {
    color: var(--primary);
}

.banner-yazi p {
    color: var(--gri-yazi);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 480px;
    line-height: 1.5;
}

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

.stat-kart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 170px;
}

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

.stat-kart h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

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

/* Butonlar */
.btn-birincil {
    background: var(--primary);
    color: #07090e;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 0 4px 16px rgba(0, 210, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-birincil:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.42);
    color: #07090e;
}

.btn-ikincil {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ikincil:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* 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(0, 210, 255, 0.12);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 6px;
}

/* 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: #030712;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(0, 242, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(217, 70, 239, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    font-family: 'Inter', sans-serif;
}

/* Animated Floating Orbs */
.auth-orb-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.auth-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.06;
    will-change: transform;
}

.auth-orb-1 {
    width: 300px;
    height: 300px;
    background: #00f2fe;
    top: 20%;
    left: 10%;
    animation: orbFloat1 25s infinite ease-in-out alternate;
}

.auth-orb-2 {
    width: 250px;
    height: 250px;
    background: #d946ef;
    bottom: 20%;
    right: 15%;
    animation: orbFloat2 30s infinite ease-in-out alternate;
}

.auth-orb-3 {
    width: 200px;
    height: 200px;
    background: #3B5BDB;
    top: 60%;
    left: 50%;
    animation: orbFloat3 22s infinite ease-in-out alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 60px) scale(1.15); }
    100% { transform: translate(40px, -30px) scale(0.85); }
}

@keyframes orbFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 40px) scale(0.9); }
    100% { transform: translate(-40px, -40px) scale(1.1); }
}

/* Ana kapsayıcı */
.auth-kapsayici {
    width: 100%;
    max-width: 480px;
    padding: 24px;
    position: relative;
    z-index: 1;
}

/* Form kartı */
.auth-kart {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 242, 254, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: authCardEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes authCardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.auth-logo img {
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
    transition: transform 0.5s ease;
}

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

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

.auth-logo strong {
    color: #00f2fe;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

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

.auth-baslik h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.auth-baslik p {
    color: #94a3b8;
    font-size: 14px;
    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: 13px;
    font-weight: 500;
    color: #cbd5e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.3px;
}

/* Input kutusu */
.input-kutu {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 18px;
    gap: 14px;
    transition: all 0.2s ease;
}

.input-kutu:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.input-kutu:focus-within {
    border-color: #00f2fe;
    box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.input-kutu i {
    color: #64748b;
    font-size: 15px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.input-kutu:focus-within i {
    color: #00f2fe;
}

.input-kutu input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 15px 0;
    transition: all 0.2s ease;
}

.input-kutu input::placeholder {
    color: #64748b;
}

.goz-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    font-size: 15px;
    transition: color 0.2s ease;
}

.goz-btn:hover {
    color: #00f2fe;
}

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

.checkbox-etiket {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500 !important;
    user-select: none;
    transition: color 0.2s ease;
}

.checkbox-etiket input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-ozel {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-etiket:hover .checkbox-ozel {
    border-color: rgba(0, 242, 254, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.checkbox-etiket input:checked+.checkbox-ozel {
    background: #00f2fe;
    border-color: #00f2fe;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

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

.link-mavi {
    color: #00f2fe;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link-mavi:hover {
    color: #00f2fe;
    text-shadow: none;
    text-decoration: underline;
}

/* Auth Butonu */
.auth-btn {
    width: 100%;
    height: 52px;
    justify-content: center;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #00f2fe 0%, #0066ff 50%, #d946ef 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0 28px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15.5px !important;
    letter-spacing: 0.5px;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.auth-btn:hover {
    filter: brightness(1.1) !important;
    transform: scale(1.01) !important;
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.3) !important;
}

.auth-btn:active {
    transform: scale(0.99) !important;
}

/* Ayırıcı */
.ayirici {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}

.ayirici::before,
.ayirici::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

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

.sosyal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.sosyal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.sosyal-btn:active {
    transform: scale(0.98);
}

/* Alt link */
.auth-alt-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #64748b;
}

.auth-alt-link a {
    color: #00f2fe;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-alt-link a:hover {
    color: #00f2fe;
    text-shadow: none;
    text-decoration: underline;
}

.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: linear-gradient(135deg, rgba(13, 21, 37, 0.4) 0%, rgba(3, 7, 18, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.ozellik-kart::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: transparent;
    transition: background 0.3s;
}

.ozellik-kart:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(13, 21, 37, 0.65) 0%, rgba(3, 7, 18, 0.8) 100%);
}

.ozellik-kart:hover.has-mavi::before { background: linear-gradient(90deg, #00f2fe, #4facfe); }
.ozellik-kart:hover.has-yesil::before { background: linear-gradient(90deg, #10b981, #059669); }
.ozellik-kart:hover.has-mor::before { background: linear-gradient(90deg, #a855f7, #6366f1); }
.ozellik-kart:hover.has-turuncu::before { background: linear-gradient(90deg, #f97316, #d97706); }
.ozellik-kart:hover.has-sari::before { background: linear-gradient(90deg, #eab308, #ca8a04); }
.ozellik-kart:hover.has-pembe::before { background: linear-gradient(90deg, #ec4899, #db2777); }

.ozellik-kart:hover.has-mavi { box-shadow: 0 15px 35px rgba(0, 242, 254, 0.08); }
.ozellik-kart:hover.has-yesil { box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08); }
.ozellik-kart:hover.has-mor { box-shadow: 0 15px 35px rgba(168, 85, 247, 0.08); }
.ozellik-kart:hover.has-turuncu { box-shadow: 0 15px 35px rgba(249, 115, 22, 0.08); }
.ozellik-kart:hover.has-sari { box-shadow: 0 15px 35px rgba(234, 179, 8, 0.08); }
.ozellik-kart:hover.has-pembe { box-shadow: 0 15px 35px rgba(236, 72, 153, 0.08); }

.ozellik-ikon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.ozellik-kart:hover .ozellik-ikon {
    transform: scale(1.1) rotate(5deg);
}

.oz-mavi {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}
.oz-yesil {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}
.oz-mor {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}
.oz-turuncu {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}
.oz-sari {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(202, 138, 4, 0.15) 100%);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.25);
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.1);
}
.oz-pembe {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.15) 100%);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.25);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.1);
}

.ozellik-kart h3 {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.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, #0b0f19, #070b14);
    border-bottom: 1px solid rgba(59, 91, 219, 0.15);
    overflow: hidden;
    position: relative;
    height: 70px;
    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.02);
}

.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 35s linear infinite;
    gap: 12px;
}

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

.akis-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 240px;
    height: 52px;
    box-sizing: border-box;
}

.akis-item:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.akis-avatar {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.akis-detay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    flex-grow: 1;
    overflow: hidden;
}

.akis-kullanici {
    color: #f8fafc;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.akis-gorev {
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

.akis-tutar {
    color: #38bdf8;
    font-weight: 800;
    font-size: 13px;
    margin-left: auto;
    flex-shrink: 0;
}

@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: 10px 12px !important; /* Shorter padding on mobile */
    }
    .landing-nav .nav-logo span {
        font-size: 16px !important; /* Smaller logo font on mobile */
    }
    .landing-nav .nav-logo img {
        width: 22px !important; /* Smaller logo icon on mobile */
    }
    .landing-nav .nav-linkler {
        display: none !important;
    }
    .landing-nav .nav-butonlar {
        gap: 6px !important;
        display: flex !important;
        align-items: center !important;
    }
    .landing-nav .nav-butonlar .btn-ikincil {
        display: inline-flex !important;
        padding: 8px 12px !important; /* Premium readable padding */
        font-size: 13px !important; /* Larger readable size */
        border: none !important; /* Borderless Sign In on mobile */
        background: transparent !important;
        color: #cbd5e1 !important;
        font-weight: 700 !important;
    }
    .landing-nav .nav-butonlar .btn-birincil {
        display: inline-flex !important;
        padding: 8px 16px !important; /* Premium readable padding */
        font-size: 13px !important; /* Larger readable size */
        border-radius: 10px !important;
        background: linear-gradient(135deg, var(--neon-mavi), var(--mor)) !important;
        color: #030712 !important;
        font-weight: 800 !important;
    }
    .hide-mobile {
        display: none !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;
    }
}

/* 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);
    }
}

/* Hide support chat widget when offerwall modal is open */
body.offerwall-open [data-chat-widget],
body.offerwall-open [id^="chat-widget-"],
body:has(#gemiwall-modal-overlay:not([style*="display: none"])) [data-chat-widget],
body:has(#gemiwall-modal-overlay:not([style*="display: none"])) [id^="chat-widget-"],
body:has(#adtowall-modal:not([style*="display: none"])) [data-chat-widget],
body:has(#adtowall-modal:not([style*="display: none"])) [id^="chat-widget-"] {
    display: none !important;
}

/* Fix logo alignments globally to be perfectly centered vertically */
.nav-logo, .footer-logo, .logo, .yukle-logo, .landing-logo {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
}

/* Auth logo needs to span full width to center above login card */
.auth-logo {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
}

.nav-logo img, .auth-logo img, .footer-logo img, .logo img, .yukle-logo img, .landing-logo img {
    display: block !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

.nav-logo span, .auth-logo span, .footer-logo span, .logo span, .yukle-logo span, .landing-logo span {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
}

/* Perfect alignment and centering for FontAwesome icons in feature cards */
.ozellik-ikon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.ozellik-ikon i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* ===== PREMIUM SCROLLBAR STYLES ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(3, 7, 18, 0.95);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-mavi), var(--neon-mor));
    border-radius: 4px;
    border: 2px solid rgba(3, 7, 18, 0.95);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-mor), var(--neon-mavi));
}

/* ===== SKELETON LOADING ANIMATION ===== */
.ebs-skeleton-pulse {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.08) 37%,
        rgba(255, 255, 255, 0.03) 63%
    );
    background-size: 400% 100%;
    animation: ebs-skeleton-shimmer 1.4s ease infinite;
}

@keyframes ebs-skeleton-shimmer {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ebs-skeleton-card {
    min-height: 80px;
    border-radius: 12px;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ebs-skeleton-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ebs-skeleton-text-group {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ebs-skeleton-title {
    width: 60%;
    height: 16px;
    border-radius: 4px;
}

.ebs-skeleton-subtitle {
    width: 40%;
    height: 12px;
    border-radius: 4px;
}

.ebs-skeleton-badge {
    width: 70px;
    height: 20px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* ===== MICRO SHIFT TOAST ACCENTS ===== */
.ebs-toast {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow-shadow) !important;
    border: var(--glass-border) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

document.addEventListener('DOMContentLoaded', () => {}); // placeholder
.ebs-toast.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ===== PROMO CAROUSEL STYLES ===== */
.promo-carousel-wrapper {
    position: relative;
    width: 100%;
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(0, 242, 254, 0.05);
}
.promo-carousel {
    position: relative;
    width: 100%;
    height: 220px;
}
.promo-slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.promo-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}
.promo-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.promo-content {
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.promo-tag {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.promo-tag.green { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.promo-tag.purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.3); }
.promo-tag.cyan { background: rgba(0, 242, 254, 0.15); color: var(--neon-mavi); border: 1px solid rgba(0, 242, 254, 0.3); }
.promo-content h2 {
    font-size: 24px;
    font-weight: 850;
    color: white;
    line-height: 1.2;
}
.promo-content p {
    font-size: 13.5px;
    color: var(--gri-yazi);
    line-height: 1.5;
}
.promo-btn {
    align-self: flex-start;
    padding: 8px 20px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
}
.promo-btn.btn-green { background: linear-gradient(135deg, #10b981, #059669); color: white; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
.promo-btn.btn-green:hover { box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5); transform: translateY(-2px); }
.promo-btn.btn-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); color: white; box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3); }
.promo-btn.btn-purple:hover { box-shadow: 0 6px 16px rgba(168, 85, 247, 0.5); transform: translateY(-2px); }
.promo-btn.btn-cyan { background: linear-gradient(135deg, #00f2fe, #4facfe); color: #070b14; box-shadow: 0 4px 12px rgba(0, 242, 254, 0.3); font-weight: 800; }
.promo-btn.btn-cyan:hover { box-shadow: 0 6px 16px rgba(0, 242, 254, 0.5); transform: translateY(-2px); }

.promo-img {
    max-height: 180px;
    max-width: 35%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
.promo-dots {
    position: absolute;
    bottom: 15px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.promo-dot.active {
    background: var(--neon-mavi);
    width: 20px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .promo-carousel { height: 320px; }
    .promo-slide { flex-direction: column-reverse; justify-content: center; padding: 20px; gap: 15px; }
    .promo-content { max-width: 100%; text-align: center; align-items: center; }
    .promo-tag, .promo-btn { align-self: center; }
    .promo-img { max-height: 110px; max-width: 60%; }
    .promo-dots { right: 50%; transform: translateX(50%); bottom: 10px; }
}

/* ===== ANIMATED GRADIENT BORDERS ===== */
.animated-border-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none !important;
    background: #0d1321 !important;
}
.animated-border-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--neon-mavi),
        transparent,
        #a855f7,
        transparent
    );
    animation: rotateGradient 4s linear infinite;
    z-index: -2;
}
.animated-border-btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: #0d1321;
    border-radius: inherit;
    z-index: -1;
    transition: background 0.3s;
}
.animated-border-btn:hover::before {
    background: rgba(13, 19, 33, 0.8);
}
@keyframes rotateGradient {
    100% {
        transform: rotate(360deg);
    }
}

/* ===== PREMIUM SIDEBAR INTERACTIONS ===== */
.sidebar {
    background-color: rgba(7, 11, 20, 0.55) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.menu li.aktif a {
    background: linear-gradient(90deg, rgba(0, 242, 254, 0.08) 0%, rgba(0, 242, 254, 0.02) 100%) !important;
    border-left: 3px solid #00f2fe;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: inset 2px 0 8px rgba(0, 242, 254, 0.05);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}
.menu li a i {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease !important;
}
.menu li a:hover i {
    transform: scale(1.15) translateX(3px);
    color: #00f2fe !important;
}

/* ===== ABSOLUTE FINAL DESKTOP GUARANTEE — override everything ===== */
/* These rules must stay at the very end of this file to have highest specificity */
@media (min-width: 992px) {
    .header,
    body.ee-chat-open .header,
    body .header {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
    .header-sag,
    body.ee-chat-open .header-sag,
    body .header-sag {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        min-width: 0 !important;
    }
    .bakiye,
    body.ee-chat-open .bakiye,
    body .bakiye {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: hidden !important;
    }
    .bildirim-zil,
    body .bildirim-zil {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ===== GENİŞ EKRAN (1400px+) DÜZELTMELER ===== */
/* Balance, bildirim ve live tracker büyük ekranlarda doğru konumlanır */
@media (min-width: 1400px) {
    /* Header: sticky konumu güçlendirildi, sağdaki elemanlar sabit kalır */
    .header,
    body .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 200 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    /* Header sağ: balance + bildirim zili görünür ve taşmıyor */
    .header-sag,
    body .header-sag {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        flex-shrink: 0 !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Balance kutusu büyük ekranda tam görünür */
    .bakiye,
    body .bakiye {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
        overflow: hidden !important;
        max-width: 220px !important;
    }

    /* Bildirim zili büyük ekranda görünür */
    .bildirim-zil,
    body .bildirim-zil {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
    }

    /* Bildirim dropdown büyük ekranda sağa hizalı ve taşmıyor */
    #bildirim-kutusu {
        right: 0 !important;
        left: auto !important;
    }

    /* Live tracker: header'ın hemen altında, tam genişlikte */
    .canli-akis-container {
        position: sticky !important;
        top: 56px !important; /* header yüksekliği kadar aşağı */
        z-index: 190 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        overflow: hidden !important;
    }

    /* Sag taraf içerik alanı büyük ekranda tam genişlik */
    .sag-taraf {
        margin-left: 220px !important;
        width: calc(100% - 220px) !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-x: hidden !important;
    }
}

/* ===== ULTRA GENİŞ EKRAN (1920px+) DÜZELTMELER ===== */
@media (min-width: 1920px) {
    /* Header: ultra geniş ekranda taşmayı önle */
    .header,
    body .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 200 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        padding-right: 40px !important;
    }

    /* Header sağ elemanlar: ultra geniş ekranda görünür */
    .header-sag,
    body .header-sag {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        flex-shrink: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
    }

    /* Balance: ultra geniş */
    .bakiye,
    body .bakiye {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
    }

    /* Bildirim zili: ultra geniş */
    .bildirim-zil,
    body .bildirim-zil {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
    }

    /* Live tracker: header altında sticky, tam genişlik */
    .canli-akis-container {
        position: sticky !important;
        top: 56px !important;
        z-index: 190 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Sag taraf: sidebar genişliğini hesaba katarak tam genişlik */
    .sag-taraf {
        margin-left: 220px !important;
        width: calc(100% - 220px) !important;
        max-width: calc(100% - 220px) !important;
        overflow-x: hidden !important;
    }
}

/* ======================================================
   EARNBE v2 ULTRA MODERN DESIGN SYSTEM & GLOWUP STYLES
   ====================================================== */

/* 1. Neon Gradient Text Utility */
.gradient-text-v2 {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #00f2fe 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

/* 2. Glassmorphic v2 Card Container */
.v2-glass-card {
    background: rgba(13, 19, 34, 0.75) !important;
    border: 1px solid rgba(0, 242, 254, 0.25) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.v2-glass-card:hover {
    transform: translateY(-5px) scale(1.015) !important;
    border-color: rgba(0, 242, 254, 0.6) !important;
    box-shadow: 0 20px 45px rgba(0, 242, 254, 0.25), 0 0 20px rgba(147, 51, 234, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* 3. Offerwall Badge Pills (+20% BONUS, HOT, INSTANT) */
.badge-v2-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    animation: pillPulse 2s infinite ease-in-out;
}

.badge-v2-bonus {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-v2-hot {
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-v2-instant {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

@keyframes pillPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); filter: brightness(1.2); }
}

/* 4. Landing Page Hero V2 Styles */
.hero-v2-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.25) 0%, rgba(147, 51, 234, 0.15) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-v2-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.hero-stat-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.hero-stat-box:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 242, 254, 0.4);
}

.hero-stat-val {
    font-size: 24px;
    font-weight: 900;
    color: #00f2fe;
    margin-bottom: 4px;
}

.hero-stat-lbl {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

/* ======================================================
   INTERCOM STYLE FAQ & SUPPORT BOT STYLES
   ====================================================== */
.intercom-faq-chip {
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.intercom-faq-chip:hover {
    background: rgba(0, 242, 254, 0.18);
    border-color: #00f2fe;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 242, 254, 0.25);
}

.intercom-faq-chip i {
    color: #00f2fe;
    font-size: 12px;
}

.intercom-bot-msg {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px 14px 14px 2px;
    padding: 12px 16px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: botMsgFadeIn 0.3s ease forwards;
}

.intercom-user-msg {
    background: linear-gradient(135deg, #00f2fe 0%, #3b82f6 100%);
    color: #030712;
    font-weight: 700;
    border-radius: 14px 14px 2px 14px;
    padding: 10px 14px;
    font-size: 13px;
    margin-left: auto;
    margin-bottom: 12px;
    max-width: 80%;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    animation: botMsgFadeIn 0.3s ease forwards;
}

@keyframes botMsgFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.intercom-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 12px;
    margin-bottom: 10px;
}

.intercom-typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00f2fe;
    animation: typingBlink 1.4s infinite ease-in-out both;
}

.intercom-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.intercom-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBlink {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ======================================================
   PROFIL SAYFASI VISUAL GLOWUP (ULTRA PREMIUM GLASSMORPHISM)
   ====================================================== */
.profil-hero {
    background: linear-gradient(135deg, rgba(13, 20, 38, 0.85) 0%, rgba(6, 10, 23, 0.95) 100%) !important;
    border: 1px solid rgba(0, 242, 254, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.08) !important;
}

.profil-hero:hover {
    border-color: rgba(0, 242, 254, 0.5) !important;
    box-shadow: 0 25px 60px rgba(0, 242, 254, 0.15), 0 20px 50px rgba(0, 0, 0, 0.8) !important;
}

.profil-stat-kart {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.7) 0%, rgba(3, 7, 18, 0.85) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px) !important;
}

.profil-stat-kart:hover {
    border-color: rgba(0, 242, 254, 0.4) !important;
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.15) !important;
}

.profil-section-kart {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.65) 0%, rgba(3, 7, 18, 0.85) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(25px) !important;
}

.profil-section-kart:hover {
    border-color: rgba(0, 242, 254, 0.3) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 242, 254, 0.08) !important;
}

/* Modern Inputlar */
.profil-form-input, .ayarlar-input {
    background: rgba(3, 7, 18, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

.profil-form-input:focus, .ayarlar-input:focus {
    border-color: #00f2fe !important;
    box-shadow: 0 0 18px rgba(0, 242, 254, 0.25) !important;
    background: rgba(3, 7, 18, 0.95) !important;
}

/* Modern Butonlar */
.profil-kaydet-btn, .btn-kaydet-v2 {
    background: linear-gradient(135deg, #00f2fe 0%, #3b82f6 100%) !important;
    border: none !important;
    color: #030712 !important;
    font-weight: 800 !important;
    padding: 14px 28px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3) !important;
    transition: all 0.25s ease !important;
}

.profil-kaydet-btn:hover, .btn-kaydet-v2:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.45) !important;
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%) !important;
}

/* Tablo Görselliği */
.profil-log-tablo {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.profil-log-tablo th {
    background: rgba(15, 23, 42, 0.8);
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profil-log-tablo td {
    background: rgba(3, 7, 18, 0.5);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profil-log-tablo tr td:first-child { border-radius: 12px 0 0 12px; border-left: 1px solid rgba(255, 255, 255, 0.05); }
.profil-log-tablo tr td:last-child { border-radius: 0 12px 12px 0; border-right: 1px solid rgba(255, 255, 255, 0.05); }

.profil-log-tablo tr:hover td {
    background: rgba(0, 242, 254, 0.06);
    border-color: rgba(0, 242, 254, 0.2);
}

/* ==========================================================================
   ULTRA-PREMIUM HEADER WALLET & PAYOUT MODAL (.cuzdan-dropdown)
   ========================================================================== */
.bakiye-wrapper {
    position: relative;
    display: inline-block;
}

.cuzdan-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 370px;
    background: linear-gradient(160deg, rgba(10, 16, 32, 0.96) 0%, rgba(6, 10, 20, 0.98) 100%) !important;
    border: 1px solid rgba(0, 210, 255, 0.35) !important;
    border-radius: 22px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 35px rgba(0, 210, 255, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
    z-index: 99999;
    padding: 24px 22px !important;
    cursor: default;
    font-family: 'Inter', sans-serif;
    text-align: left;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    animation: cuzdanModalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cuzdanModalPop {
    from { opacity: 0; transform: translateY(-10px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.cuzdan-dropdown-title {
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.cuzdan-dropdown-title i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.35);
    display: grid;
    place-items: center;
    font-size: 13px;
    color: #00d2ff !important;
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.25);
}

.cuzdan-dropdown-desc {
    font-size: 12px !important;
    color: #94a3b8 !important;
    margin-bottom: 16px;
    line-height: 1.45;
}

.cuzdan-dropdown-balance {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(59, 130, 246, 0.06) 100%) !important;
    border: 1px solid rgba(0, 210, 255, 0.3) !important;
    border-radius: 14px !important;
    padding: 13px 16px !important;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

.cuzdan-dropdown-balance-label {
    font-size: 11px !important;
    color: #94a3b8 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cuzdan-dropdown-balance-val {
    font-size: 15px !important;
    font-weight: 900 !important;
    color: #00d2ff !important;
    text-shadow: 0 0 14px rgba(0, 210, 255, 0.6);
    font-variant-numeric: tabular-nums;
}

.cuzdan-dropdown-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.cuzdan-dropdown-method-chip {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.12) 0%, rgba(13, 22, 44, 0.8) 100%) !important;
    border: 1px solid rgba(0, 210, 255, 0.45) !important;
    border-radius: 12px !important;
    padding: 9px 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 12px rgba(0, 210, 255, 0.15) !important;
}

.cuzdan-dropdown-method-chip span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00d2ff;
    color: #050811;
    font-weight: 900;
    font-size: 12px;
}

.cuzdan-dropdown-field {
    margin-bottom: 14px;
}

.cuzdan-dropdown-label {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    color: #cbd5e1 !important;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.cuzdan-dropdown-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cuzdan-dropdown-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b !important;
    font-size: 13px !important;
    pointer-events: none;
    transition: color 0.2s ease;
}

.cuzdan-dropdown-input {
    width: 100%;
    height: 42px;
    background: rgba(13, 20, 38, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 0 14px 0 38px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cuzdan-dropdown-input::placeholder {
    color: #475569 !important;
    font-weight: 500;
}

.cuzdan-dropdown-input:focus {
    border-color: #00d2ff !important;
    box-shadow: 0 0 16px rgba(0, 210, 255, 0.35), inset 0 0 8px rgba(0, 210, 255, 0.08) !important;
    background: rgba(16, 26, 50, 0.95) !important;
}

.cuzdan-dropdown-input-wrap:focus-within .cuzdan-dropdown-icon {
    color: #00d2ff !important;
}

.cuzdan-dropdown-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-top: 8px;
}

.cuzdan-dropdown-quick-btn {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #cbd5e1 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 8px 0 !important;
    border-radius: 9px !important;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cuzdan-dropdown-quick-btn:hover {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.25) 0%, rgba(59, 130, 246, 0.2) 100%) !important;
    border-color: #00d2ff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 210, 255, 0.25);
}

.cuzdan-dropdown-quick-btn:active {
    transform: translateY(0) scale(0.96);
}

.cuzdan-dropdown-receive {
    font-size: 12px !important;
    color: #94a3b8 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 16px !important;
    font-weight: 700 !important;
    padding: 11px 14px !important;
    background: rgba(0, 255, 135, 0.05) !important;
    border-radius: 12px !important;
    border: 1px dashed rgba(0, 255, 135, 0.3) !important;
}

.cuzdan-dropdown-receive-val {
    color: #00ff87 !important;
    font-weight: 900 !important;
    font-size: 13.5px !important;
    text-shadow: 0 0 12px rgba(0, 255, 135, 0.5);
    font-variant-numeric: tabular-nums;
}

.cuzdan-dropdown-btn {
    width: 100%;
    height: 46px;
    background: linear-gradient(135deg, #00d2ff 0%, #00f2fe 50%, #3b82f6 100%) !important;
    border: none !important;
    color: #030712 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 6px 22px rgba(0, 210, 255, 0.4) !important;
    letter-spacing: 0.01em;
}

.cuzdan-dropdown-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.6) !important;
    filter: brightness(1.08);
}

.cuzdan-dropdown-btn:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 480px) {
    .cuzdan-dropdown {
        position: fixed !important;
        top: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 30px) !important;
        max-width: 360px !important;
        max-height: calc(100vh - 40px) !important;
        overflow-y: auto !important;
        right: auto !important;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 0 9999px rgba(3, 7, 18, 0.75) !important;
    }
}



/* ==========================================================================
   ULTRA-PREMIUM EARN PAGE / OFFERWALLS & PROMO SYSTEM
   ========================================================================== */
.canli-akis-container {
    background: linear-gradient(90deg, rgba(8, 14, 28, 0.95) 0%, rgba(13, 22, 44, 0.85) 50%, rgba(8, 14, 28, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(0, 210, 255, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.akis-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    padding: 6px 14px !important;
    transition: all 0.2s ease !important;
}

.akis-item:hover {
    border-color: rgba(0, 210, 255, 0.4) !important;
    background: rgba(0, 210, 255, 0.06) !important;
}

.akis-tutar {
    color: #00ff87 !important;
    font-weight: 900 !important;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.5) !important;
}

.promo-carousel-wrapper {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.1) !important;
    border: 1px solid rgba(0, 210, 255, 0.25) !important;
}

.promo-slide {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.promo-tag.cyan {
    background: rgba(0, 210, 255, 0.15) !important;
    color: #00d2ff !important;
    border: 1px solid rgba(0, 210, 255, 0.35) !important;
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.3) !important;
}

.promo-btn.btn-cyan {
    background: linear-gradient(135deg, #00d2ff 0%, #0284c7 100%) !important;
    color: #050811 !important;
    font-weight: 900 !important;
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4) !important;
    border-radius: 12px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.promo-btn.btn-cyan:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.6) !important;
    filter: brightness(1.08) !important;
}

.dash-tab-btn {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dash-tab-btn:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(0, 210, 255, 0.4) !important;
    color: #ffffff !important;
    background: rgba(0, 210, 255, 0.08) !important;
}

.dash-tab-btn.active {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%) !important;
    color: #ffffff !important;
    border-color: rgba(0, 210, 255, 0.5) !important;
    box-shadow: 0 4px 16px rgba(0, 210, 255, 0.25) !important;
}

.teklif-karti-yeni {
    background: linear-gradient(160deg, rgba(10, 16, 32, 0.9) 0%, rgba(6, 10, 22, 0.96) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.teklif-karti-yeni::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d2ff, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.teklif-karti-yeni:hover {
    transform: translateY(-6px) scale(1.02) !important;
    border-color: rgba(0, 210, 255, 0.45) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 210, 255, 0.2) !important;
}

.teklif-karti-yeni:hover::before {
    opacity: 1;
}

.teklif-karti-yeni .badge-v2-pill {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
}

.teklif-karti-yeni .alt-cubuk {
    background: rgba(6, 10, 22, 0.95) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    transition: all 0.25s ease !important;
}

.teklif-karti-yeni:hover .alt-cubuk {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.12) 0%, rgba(6, 10, 22, 0.98) 100%) !important;
    color: #00d2ff !important;
}
