/* --- Ana Sayfa Kart Stilleri --- */
.glass-card-main {
    background: linear-gradient(145deg, rgba(45, 47, 65, 0.95) 0%, rgba(30, 32, 45, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

@media (hover: hover) {
    .tilt-card:hover {
        transform: scale(1.02);
    }
}

.icon-box-main {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

.soft-edge-mask {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.financial-data { transition: filter 0.3s ease, opacity 0.3s ease; }
.privacy-active { filter: blur(12px); opacity: 0.5; user-select: none; }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 40px;
    margin-bottom: 10px;
    position: relative;
    z-index: 20;
    transform: translateZ(20px);
}
.card-content-3d { transform: translateZ(30px); }

/* --- GİZLİ STORY TASARIMI (Sory.html) STİLLERİ --- */
#story-container {
    width: 1080px;
    height: 1920px;
    background: radial-gradient(circle at 50% 0%, #2e2e4a 0%, #0f0f1a 60%, #050505 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.glass-card-story {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 24px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
}

.icon-box-story {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* SVG FIX */
.icon-box-story svg {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
}

.leaderboard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.leaderboard-row:last-child { border-bottom: none; }

.rank-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 16px;
    font-size: 16px;
}

/* Gizli Wrapper */
#hidden-capture-wrapper {
    position: fixed;
    top: 0;
    left: -9999px;
    z-index: 9999;
}
