/* =======================================================================================
   TITAN NEONWAVE UI FRAMEWORK v2.0
   GENZO PUBLIC PROFILE UI
   File: gm-profile.css
   Author: Genzo x GPT (clean rebuild)
======================================================================================= */

/* -------------------------------------------------------------
   0. ROOT VARIABLES — NEONWAVE PALETTE + GLOBAL ENGINE
-------------------------------------------------------------- */
:root {
    /* --- Core Colors --- */
    --titan-bg: #0b0c10;
    --titan-bg-soft: #111218;
    --titan-bg-glow: #1a1c24;

    --titan-glass-1: rgba(255,255,255,0.04);
    --titan-glass-2: rgba(255,255,255,0.07);
    --titan-glass-3: rgba(255,255,255,0.12);

    --titan-border-soft: rgba(255,255,255,0.10);
    --titan-border-mid: rgba(255,255,255,0.18);
    --titan-border-strong: rgba(255,255,255,0.26);

    /* --- NeonWave Colors --- */
    --neon-orange: #ff7b00;
    --neon-orange-soft: rgba(255,123,0,0.6);
    --neon-orange-glow: rgba(255,123,0,0.35);

    --neon-cyan: #3dd6ff;
    --neon-cyan-soft: rgba(61,214,255,0.5);
    --neon-cyan-glow: rgba(61,214,255,0.28);

    --neon-purple: #a070ff;
    --neon-purple-soft: rgba(160,112,255,0.55);
    --neon-purple-glow: rgba(160,112,255,0.28);

    /* --- Text Colors --- */
    --text-main: rgba(255,255,255,0.92);
    --text-soft: rgba(255,255,255,0.70);
    --text-dim: rgba(255,255,255,0.50);
    --text-faint: rgba(255,255,255,0.30);
    --text-light: rgba(255,255,255,0.82);

    /* --- Radii --- */
    --radius-small: 10px;
    --radius-medium: 14px;
    --radius-card: 18px;
    --radius-large: 22px;
    --radius-round: 50%;

    /* --- Blur Levels --- */
    --blur-soft: 12px;
    --blur-mid: 18px;
    --blur-strong: 26px;

    /* --- Motion Engine --- */
    --titan-fast: .15s cubic-bezier(.4,0,.2,1);
    --titan-mid: .28s cubic-bezier(.4,0,.2,1);
    --titan-slow: .45s cubic-bezier(.4,0,.2,1);

    /* --- Components --- */
    --titan-tab-active-bg: linear-gradient(
        135deg,
        rgba(255,123,0,0.26),
        rgba(61,214,255,0.22)
    );
}

/* =======================================================================================
   1. GLOBAL RESET + BACKGROUND
======================================================================================= */

.titan-profile-page *,
.titan-profile-page *::before,
.titan-profile-page *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.titan-profile-page img {
    display: block;
    max-width: 100%;
}

.titan-profile-page {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    position: relative;
    background: var(--titan-bg);
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    overflow-x: hidden;
}

/* Lists & links & buttons */
.titan-profile-page ul,
.titan-profile-page li {
    list-style: none;
}

.titan-profile-page button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font: inherit;
}

.titan-profile-page a {
    text-decoration: none;
    color: inherit;
}

/* Background grid + glow */
.titan-profile-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.07;
    animation: titanGridMove 22s linear infinite;
    z-index: -1;
}

.titan-profile-page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 70% 20%,
        rgba(61,214,255,0.12),
        transparent 60%
    );
    z-index: -1;
}

@keyframes titanGridMove {
    from { transform: translate(0,0); }
    to   { transform: translate(120px,80px); }
}

/* Scrollbar */
.titan-profile-page ::-webkit-scrollbar {
    width: 10px;
}
.titan-profile-page ::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-orange-soft), var(--neon-cyan-soft));
    border-radius: 10px;
}
.titan-profile-page ::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

/* Global reveal helper */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .75s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page-level smooth scroll + background */
html {
    background: #000;
    scroll-behavior: smooth;
}

/* =======================================================================================
   2. LAYOUT — LEFT / RIGHT COLUMNS
======================================================================================= */

.genzo-layout {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
}

/* Left panel: fixed width, sticky */
.genzo-left-panel {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    animation: titanFadeUp .6s ease both .12s;
}

@media (min-width: 993px) {
    .genzo-left-panel {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

/* Right panel: main content */
.genzo-right-panel {
    flex: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Responsive layout */
@media(max-width: 992px) {
    .genzo-layout {
        flex-direction: column;
        align-items: center;
    }
    .genzo-left-panel,
    .genzo-right-panel {
        width: 100%;
        max-width: 600px;
    }
}

/* Animations */
@keyframes titanFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =======================================================================================
   3. HERO — COVER, AVATAR, LEVEL, META, ACTIONS
======================================================================================= */

.genzo-hero {
    position: relative;
    width: 100%;
    height: 330px;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    background: var(--titan-bg-soft);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.45),
        inset 0 0 32px rgba(255,255,255,0.05);
    animation: titanFadeUp .6s ease both;
}

/* Hero cover */
.genzo-hero-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(14px) brightness(.65) saturate(1.4);
    transform: scale(1.16);
    transition: var(--titan-slow);
}
.genzo-hero:hover .genzo-hero-cover {
    transform: scale(1.20);
    filter: blur(16px) brightness(.72) saturate(1.6);
}

/* Dark overlay */
.genzo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.9)
    );
    pointer-events: none;
}

/* Hero INNER */
.genzo-hero-inner {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

/* Avatar reactor */
.genzo-avatar-wrapper {
    position: relative;
    width: 158px;
    height: 158px;
    flex-shrink: 0;
    animation: titanFadeUp .6s ease both .1s;
}
.genzo-avatar-ring {
    width: 100%;
    height: 100%;
    padding: 6px;
    border-radius: 50%;
    background: conic-gradient(
        var(--neon-orange),
        var(--neon-cyan),
        var(--neon-purple),
        var(--neon-orange)
    );
    box-shadow:
        0 0 30px var(--neon-orange-soft),
        0 0 45px var(--neon-cyan-soft);
    animation: avatarSpin 12s linear infinite;
}
@keyframes avatarSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.genzo-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}

/* Level badge */
.genzo-level-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--titan-glass-2);
    border: 1px solid var(--titan-border-mid);
    backdrop-filter: blur(14px);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.4),
        inset 0 0 12px rgba(255,255,255,0.05);
    animation: titanFadeUp .6s ease both .25s;
}

/* Username + meta + badges */
.genzo-user-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10px;
    animation: titanFadeUp .6s ease both .15s;
}
.genzo-username {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: .4px;
    text-shadow:
        0 0 14px rgba(255,123,0,0.4),
        0 0 18px rgba(61,214,255,0.25);
}
.genzo-user-badges {
    margin-top: 4px;
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Follow / Following meta */
.genzo-user-meta {
    display: flex;
    gap: 22px;
    margin: 8px 0 10px;
}
.genzo-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--text-soft);
    transition: var(--titan-mid);
}
.genzo-meta-item:hover {
    color: var(--neon-cyan);
    transform: translateY(-2px);
    text-shadow: 0 0 8px var(--neon-cyan-soft);
}

/* Hero right side: actions + gear */
.genzo-hero-right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Profile gear (ayarlar) */
.genzo-profile-gear {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: var(--titan-fast);
}
.genzo-profile-gear:hover {
    transform: translateY(-1px) scale(1.03);
    border-color: var(--neon-orange-soft);
    box-shadow:
        0 0 12px rgba(255,123,0,0.7),
        0 0 16px rgba(61,214,255,0.4);
}

/* Profile actions (Takip / Mesaj / Profili Düzenle vs.) */
.genzo-profile-actions {
    display: flex;
    gap: 10px;
}
.genzo-profile-actions button,
.genzo-profile-actions a {
    padding: 8px 16px;
    border-radius: var(--radius-small);
    background: rgba(0,0,0,0.35);
    color: var(--text-main);
    font-size: 14px;
    border: 1px solid var(--titan-border-soft);
    cursor: pointer;
    transition: var(--titan-mid);
    position: relative;
    overflow: hidden;
}
.genzo-profile-actions button::after,
.genzo-profile-actions a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,123,0,0.4),
        rgba(61,214,255,0.4)
    );
    opacity: 0;
    filter: blur(10px);
    transition: .3s;
}
.genzo-profile-actions button:hover,
.genzo-profile-actions a:hover {
    border-color: var(--neon-orange-soft);
    color: #fff;
    box-shadow:
        0 0 14px rgba(255,123,0,0.5),
        0 0 24px rgba(61,214,255,0.4);
}
.genzo-profile-actions button:hover::after,
.genzo-profile-actions a:hover::after {
    opacity: .6;
}

/* Self actions (Manga yükle / Blog yaz / Fan art) */
.genzo-self-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.genzo-self-btn {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--text-soft);
    cursor: pointer;
    transition: var(--titan-fast);
}
.genzo-self-btn:hover {
    color: #fff;
    border-color: var(--neon-cyan-soft);
    box-shadow:
        0 0 10px rgba(61,214,255,0.5),
        0 0 16px rgba(255,123,0,0.35);
}

/* Hero responsive */
@media (max-width: 768px) {
    .genzo-hero {
        height: 280px;
    }
    .genzo-avatar-wrapper {
        width: 130px;
        height: 130px;
    }
    .genzo-hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .genzo-user-header {
        align-items: center;
    }
    .genzo-hero-right {
        align-items: center;
    }
    .genzo-profile-gear {
        top: 14px;
        right: 16px;
    }
}

/* =======================================================================================
   4. LEFT PANEL — HAKKINDA / SOSYAL MEDYA / STATLAR
======================================================================================= */

.genzo-left-card {
    background: var(--titan-glass-1);
    border-radius: var(--radius-large);
    padding: 22px;
    border: 1px solid var(--titan-border-soft);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.35),
        inset 0 0 32px rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
    transition: var(--titan-mid);
}
.genzo-left-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: radial-gradient(
        circle at bottom right,
        rgba(255,123,0,0.28),
        rgba(61,214,255,0.18),
        transparent 75%
    );
    pointer-events: none;
    opacity: 0.55;
}
.genzo-left-card:hover {
    background: var(--titan-glass-2);
    border-color: var(--neon-orange-soft);
    transform: translateY(-4px);
}

.genzo-left-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-main);
    text-shadow:
        0 0 6px rgba(255,123,0,0.25),
        0 0 10px rgba(61,214,255,0.25);
}

/* Bio */
.genzo-user-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    opacity: .9;
    transition: var(--titan-mid);
}
.genzo-user-bio:hover {
    opacity: 1;
}

/* Social links */
.genzo-social-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.genzo-social-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-medium);
    background: var(--titan-glass-2);
    border: 1px solid var(--titan-border-soft);
    color: var(--text-main);
    font-size: 15px;
    cursor: pointer;
    transition: var(--titan-mid);
}
.genzo-social-link i {
    font-size: 18px;
    color: var(--neon-cyan);
    text-shadow:
        0 0 6px rgba(61,214,255,0.6),
        0 0 12px rgba(61,214,255,0.35);
}
.genzo-social-link::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 8px;
    height: 2px;
    width: 0;
    background: var(--neon-cyan);
    transition: width .25s ease;
}
.genzo-social-link:hover {
    background: var(--titan-glass-3);
    border-color: var(--neon-cyan-soft);
    transform: translateX(4px);
    color: #fff;
}
.genzo-social-link:hover::after {
    width: calc(100% - 28px);
}

/* Stats list */
.genzo-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.genzo-status-list li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.13);
    color: var(--text-dim);
    transition: var(--titan-mid);
}
.genzo-status-list li:last-child {
    border-bottom: none;
}
.genzo-status-list li:hover {
    color: var(--text-main);
    transform: translateX(3px);
}
.genzo-status-label {
    opacity: .75;
}
.genzo-status-data {
    font-weight: 600;
    color: var(--neon-orange);
    text-shadow:
        0 0 6px rgba(255,123,0,0.45),
        0 0 12px rgba(255,123,0,0.25);
}

@media (max-width: 768px) {
    .genzo-left-card {
        padding: 18px;
    }
    .genzo-left-title {
        font-size: 17px;
    }
    .genzo-social-link {
        padding: 10px 12px;
    }
}

/* =======================================================================================
   5. TAB BAR + PANELS
======================================================================================= */

/* Tabs bar */
.genzo-tabs-bar {
    display: flex;
    gap: 12px;
    background: var(--titan-glass-2);
    border: 1px solid var(--titan-border-soft);
    padding: 10px;
    border-radius: var(--radius-medium);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.35),
        inset 0 0 22px rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    animation: tabBarFade .6s ease both;
}

/* Moving baseline */
.genzo-tabs-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -120px;
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: .55;
    animation: titanNeonBar 3.8s linear infinite;
}
@keyframes titanNeonBar {
    from { transform: translateX(0); }
    to   { transform: translateX(350%); }
}

/* Tab buttons */
.genzo-tab-button {
    position: relative;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-dim);
    border-radius: var(--radius-medium);
    cursor: pointer;
    text-shadow: 0 0 4px rgba(255,255,255,0.2);
    transition: var(--titan-mid);
}
.genzo-tab-button:hover {
    background: var(--titan-glass-3);
    border-color: var(--titan-border-soft);
    color: var(--text-main);
    transform: translateY(-2px);
}
.genzo-tab-button.active {
    background: var(--titan-tab-active-bg);
    border-color: var(--neon-orange);
    color: #fff;
    box-shadow:
        0 0 8px rgba(255,123,0,0.6),
        0 0 14px rgba(255,123,0,0.3);
    text-shadow:
        0 0 6px rgba(255,123,0,0.7),
        0 0 12px rgba(255,123,0,0.45);
    transform: translateY(-3px);
    animation: titanTabPulse 2.6s ease-in-out infinite;
}
.genzo-tab-button.active::after {
    content: "";
    position: absolute;
    top: 0;
    right: 6px;
    width: 5px;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--neon-orange), var(--neon-cyan));
    opacity: .75;
    filter: blur(1px);
}

@keyframes tabBarFade {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes titanTabPulse {
    0%, 100% {
        box-shadow:
            0 0 8px rgba(255,123,0,0.55),
            0 0 22px rgba(61,214,255,0.25);
    }
    50% {
        box-shadow:
            0 0 14px rgba(255,123,0,0.85),
            0 0 28px rgba(61,214,255,0.45);
    }
}

/* Panels */
.genzo-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
}
.genzo-tab-panel.active {
    display: block;
    animation: panelReveal .45s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes panelReveal {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(.97);
        filter: blur(8px);
    }
    55% {
        opacity: .85;
        transform: translateY(6px) scale(.99);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Tabs responsive */
@media (max-width: 900px) {
    .genzo-tabs-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 8px;
    }
    .genzo-tab-button {
        padding: 8px 14px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .genzo-tab-button {
        padding: 7px 12px;
        font-size: 13px;
    }
}

/* =======================================================================================
   6. HAKKINDA (ABOUT) — MINI DASHBOARD
======================================================================================= */

/* Ana about grid: Genel Bilgiler + Özet */
.genzo-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 18px;
}
@media (max-width: 900px) {
    .genzo-about-grid {
        grid-template-columns: 1fr;
    }
}

/* Kart base */
.genzo-about-card {
    background: var(--titan-glass-1);
    border-radius: var(--radius-card);
    padding: 18px 20px;
    border: 1px solid var(--titan-border-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 4px 16px rgba(0,0,0,0.4),
        inset 0 0 20px rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}
.genzo-about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(255,123,0,0.20),
        transparent 60%
    );
    opacity: 0.35;
    pointer-events: none;
}

/* Başlık */
.genzo-about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.genzo-about-title {
    font-size: 17px;
    font-weight: 600;
    text-shadow:
        0 0 6px rgba(255,123,0,0.25),
        0 0 10px rgba(61,214,255,0.25);
}
.genzo-about-tagline {
    font-size: 13px;
    color: var(--text-dim);
}

/* Roller (chips) */
.genzo-role-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.genzo-role-chip {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: lowercase;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--text-soft);
}

/* Genel bilgiler metin */
.genzo-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 10px;
}

/* ÖZET İSTATİSTİK GRIDİ */
.genzo-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 6px;
}
@media (max-width: 600px) {
    .genzo-about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.genzo-about-stat {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
}
.genzo-about-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.genzo-about-stat-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--neon-orange);
    text-shadow:
        0 0 8px rgba(255,123,0,0.6),
        0 0 14px rgba(61,214,255,0.4);
}

/* =======================================================================================
   7. MANGA GRID + CARD
======================================================================================= */

.genzo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 22px;
    padding: 6px;
    animation: gridReveal .55s ease forwards;
}
@keyframes gridReveal {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.genzo-manga-card {
    background: var(--titan-glass-2);
    border-radius: var(--radius-large);
    padding: 14px;
    border: 1px solid var(--titan-border-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--titan-mid);
    transform-style: preserve-3d;
    box-shadow:
        0 6px 14px rgba(0,0,0,0.32),
        inset 0 0 22px rgba(255,255,255,0.04);
}
.genzo-manga-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255,123,0,0.35),
        rgba(61,214,255,0.35)
    );
    opacity: 0;
    filter: blur(16px);
    transition: .35s;
}
.genzo-manga-card:hover::before {
    opacity: 0.9;
}
.genzo-manga-card:hover {
    transform:
        perspective(900px)
        translateY(-6px)
        scale(1.04)
        rotateX(4deg);
    box-shadow:
        0 12px 32px rgba(0,0,0,0.45),
        0 0 32px rgba(255,123,0,0.45),
        0 0 45px rgba(61,214,255,0.35);
}

/* Anchor full clickable */
.genzo-manga-card a.genzo-manga-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Thumbnail */
.genzo-manga-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-medium);
    margin-bottom: 12px;
    box-shadow:
        inset 0 0 14px rgba(0,0,0,0.35),
        0 0 12px rgba(0,0,0,0.32);
}
.genzo-manga-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-medium);
    transition: .4s;
}
.genzo-manga-card:hover .genzo-manga-thumb img {
    transform: scale(1.08);
    filter: brightness(1.12) saturate(1.25)
        drop-shadow(0 0 8px rgba(255,123,0,0.5));
}

/* Hologram sweep */
.genzo-manga-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.18) 50%,
        transparent 100%
    );
    opacity: 0;
    transform: translateX(-80%);
    transition: .45s;
}
.genzo-manga-card:hover .genzo-manga-thumb::after {
    opacity: 1;
    transform: translateX(60%);
}

/* Title */
.genzo-manga-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    opacity: .85;
    margin-top: 8px;
    text-shadow: 0 0 6px rgba(255,255,255,0.2);
    transition: .35s;
}
@keyframes titanFlicker {
    0%, 19%, 23%, 56%, 100% { opacity: 1; }
    20%, 22%, 55% { opacity: .45; }
}
.genzo-manga-card:hover .genzo-manga-title {
    opacity: 1;
    text-shadow:
        0 0 8px rgba(255,123,0,0.75),
        0 0 12px rgba(61,214,255,0.55);
    animation: titanFlicker 1.8s infinite;
}

/* Badge */
.genzo-manga-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(
        135deg,
        rgba(255,123,0,0.8),
        rgba(61,214,255,0.8)
    );
    text-shadow:
        0 0 4px rgba(255,255,255,0.6),
        0 0 12px rgba(255,123,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(0,0,0,0.45);
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { opacity: .85; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}

/* Grid responsive */
@media (max-width: 900px) {
    .genzo-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .genzo-grid {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 16px;
    }
}
@media (max-width: 420px) {
    .genzo-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

/* =======================================================================================
   8. FOLLOWERS / FOLLOWING — USER CARDS
======================================================================================= */

.genzo-follow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
    padding: 6px;
    opacity: 0;
    animation: followReveal .55s ease forwards;
}
@keyframes followReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.genzo-follow-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--titan-glass-2);
    border-radius: var(--radius-large);
    padding: 14px 16px;
    border: 1px solid var(--titan-border-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    overflow: hidden;
    transition: var(--titan-mid);
    box-shadow:
        0 4px 14px rgba(0,0,0,0.35),
        inset 0 0 18px rgba(255,255,255,0.05);
}
.genzo-follow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255,123,0,0.28),
        rgba(61,214,255,0.28)
    );
    opacity: 0;
    filter: blur(18px);
    transition: .4s;
}
.genzo-follow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255,255,255,0.15) 50%,
        transparent 100%
    );
    opacity: 0;
    transform: translateX(-60%);
    transition: .45s;
}
.genzo-follow-card:hover::before {
    opacity: 1;
}
.genzo-follow-card:hover::after {
    opacity: 1;
    transform: translateX(50%);
}
.genzo-follow-card:hover {
    transform:
        translateY(-6px)
        scale(1.04)
        perspective(700px)
        rotateX(3deg);
    box-shadow:
        0 10px 26px rgba(0,0,0,0.45),
        0 0 28px rgba(255,123,0,0.45),
        0 0 36px rgba(61,214,255,0.35);
}

/* Avatar */
.genzo-follow-card img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.25);
    box-shadow:
        0 0 12px rgba(255,255,255,0.25),
        0 0 18px rgba(255,123,0,0.35);
    transition: .35s;
}
.genzo-follow-card:hover img {
    transform: scale(1.08);
    box-shadow:
        0 0 14px rgba(255,255,255,0.45),
        0 0 20px rgba(255,123,0,0.55);
}

/* Info */
.genzo-follow-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.genzo-follow-name {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 6px rgba(255,255,255,0.25);
}
.genzo-follow-stats {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

/* Badges (mini) */
.genzo-follow-badges {
    margin-top: 4px;
    display: flex;
    gap: 4px;
}

/* Follow button */
.genzo-follow-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,123,0,0.35);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: var(--titan-mid);
    box-shadow: 0 0 10px rgba(255,123,0,0.45);
}
.genzo-follow-btn:hover {
    background: rgba(255,123,0,0.65);
    box-shadow:
        0 0 12px rgba(255,123,0,0.75),
        0 0 16px rgba(61,214,255,0.45);
}
.genzo-follow-btn.following {
    background: rgba(61,214,255,0.35);
    box-shadow: 0 0 10px rgba(61,214,255,0.45);
}
.genzo-follow-btn.following:hover {
    background: rgba(61,214,255,0.65);
}

/* Responsive */
@media (max-width: 900px) {
    .genzo-follow-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
}
@media (max-width: 600px) {
    .genzo-follow-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    }
}
@media (max-width: 420px) {
    .genzo-follow-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

/* =======================================================================================
   9. COMMENTS + ACTIVITY
======================================================================================= */

.genzo-comment-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 6px;
    opacity: 0;
    animation: commentReveal .55s ease forwards;
}
@keyframes commentReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.genzo-comment-card {
    position: relative;
    background: var(--titan-glass-2);
    border-radius: var(--radius-large);
    padding: 20px 22px;
    border: 1px solid var(--titan-border-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(14px);
    overflow: hidden;
    transition: var(--titan-mid);
}

/* Scroll reveal class (JS) */
.genzo-comment-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hologram grid bg */
.genzo-comment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    animation: holoDrift 14s linear infinite;
    opacity: 0.35;
}
@keyframes holoDrift {
    from { transform: translate(0,0); }
    to   { transform: translate(60px,50px); }
}

/* Meta (title) */
.genzo-comment-meta {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    margin-bottom: 10px;
    text-shadow:
        0 0 6px rgba(255,255,255,0.25),
        0 0 10px rgba(255,123,0,0.35);
}

/* User row */
.genzo-comment-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.genzo-comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.25);
    box-shadow:
        0 0 8px rgba(255,255,255,0.25),
        0 0 12px rgba(255,123,0,0.35);
}
.genzo-comment-username {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 0 6px rgba(255,255,255,0.25);
}

/* Comment text */
.genzo-comment-text {
    font-size: 14px;
    white-space: pre-wrap;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin-bottom: 16px;
    text-shadow: 0 0 6px rgba(255,255,255,0.15);
    transition: .25s;
}
.genzo-comment-card:hover .genzo-comment-text {
    animation: neonGlitch 0.13s steps(2, start) 2;
}
@keyframes neonGlitch {
    0%   { transform: translate(0,0); text-shadow: 0 0 6px rgba(255,255,255,0.3); }
    30%  { transform: translate(1px,-1px); text-shadow: 0 0 12px rgba(61,214,255,0.7); }
    70%  { transform: translate(-1px,1px); text-shadow: 0 0 12px rgba(255,123,0,0.7); }
    100% { transform: translate(0,0); text-shadow: 0 0 6px rgba(255,255,255,0.3); }
}

/* Blockquote */
.genzo-comment-text blockquote {
    padding: 12px 16px;
    margin: 10px 0;
    border-left: 3px solid var(--neon-orange);
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    font-style: italic;
    opacity: .9;
}

/* Inline code */
.genzo-comment-text code {
    font-family: "JetBrains Mono", monospace;
    background: rgba(0,0,0,0.45);
    padding: 3px 6px;
    border-radius: 6px;
    color: var(--neon-cyan);
}

/* Spoiler blocks */
.genzo-comment-text .spoiler,
.genzo-comment-text spoiler,
.genzo-comment-text [spoiler] {
    display: block;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px dashed rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
}
.genzo-comment-text .spoiler::before {
    content: "SPOILER — TIKLA";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    transition: .3s;
}
.genzo-comment-text .spoiler.open::before {
    opacity: 0;
    pointer-events: none;
}
.genzo-comment-text .spoiler:hover {
    transform: scale(1.02);
}

/* Comment footer */
.genzo-comment-date {
    font-size: 12px;
    opacity: .55;
    margin-top: 6px;
}

/* Comment badges row */
.genzo-comment-badges {
    margin-top: 6px;
    display: flex;
    gap: 5px;
}

/* Activity feed */
.genzo-activity-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 6px;
}
.genzo-activity-item {
    position: relative;
    padding-left: 34px;
    opacity: 0;
    transform: translateY(12px);
    transition: .45s;
}
.genzo-activity-item.show {
    opacity: 1;
    transform: translateY(0);
}
.genzo-activity-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255,123,0,1),
        rgba(255,123,0,0.4),
        transparent
    );
    box-shadow:
        0 0 12px rgba(255,123,0,0.85),
        0 0 20px rgba(61,214,255,0.75);
}
.genzo-activity-item::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 20px;
    bottom: -26px;
    width: 2px;
    background: linear-gradient(
        rgba(255,123,0,0.55),
        rgba(61,214,255,0.55)
    );
    border-radius: 2px;
    opacity: .6;
}
.genzo-activity-text {
    font-size: 14px;
    opacity: .85;
    line-height: 1.55;
}

/* =======================================================================================
   10. INTERACTION PACK — CURSOR, SKELETON, PARTICLES, BUTTONS
======================================================================================= */

/* Optional custom cursor core (JS ile kullanılır) */
#titan-cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(255,123,0,1),
        rgba(255,123,0,0.35),
        transparent
    );
    box-shadow:
        0 0 18px rgba(255,123,0,0.9),
        0 0 26px rgba(61,214,255,0.7);
    mix-blend-mode: screen;
    z-index: 999999999;
    transform: translate(-50%, -50%);
}

/* Cursor trail */
.titan-trail {
    position: fixed;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    background: radial-gradient(
        circle,
        rgba(61,214,255,0.35),
        rgba(61,214,255,0.1),
        transparent
    );
    opacity: 0;
    animation: titanTrailFade .7s linear forwards;
}
@keyframes titanTrailFade {
    from { opacity: .85; transform: translate(-50%, -50%) scale(0.55); }
    to   { opacity: 0;   transform: translate(-50%, -50%) scale(1.6); }
}

/* Skeleton loaders */
.skeleton {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
}
.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    animation: skeletonShimmer 1.6s infinite;
}
@keyframes skeletonShimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.skeleton-avatar   { width: 60px; height: 60px; border-radius: 50%; }
.skeleton-line-sm  { height: 10px; margin: 6px 0; }
.skeleton-line-md  { height: 14px; margin: 8px 0; }
.skeleton-line-lg  { height: 18px; margin: 10px 0; }

/* Particle background */
#titan-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle, rgba(255,123,0,0.32) 1px, transparent 1px),
        radial-gradient(circle, rgba(61,214,255,0.32) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px;
    animation: titanParticleFloat 22s ease-in-out infinite;
}
@keyframes titanParticleFloat {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(40px,30px) scale(1.1); }
    100% { transform: translate(0,0) scale(1); }
}

/* Frost pane helper */
.titan-frost-pane {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border-radius: 18px;
    padding: 18px;
}

/* Divider */
.titan-divider {
    width: 100%;
    height: 2px;
    margin: 30px 0;
    opacity: .8;
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-orange),
        var(--neon-cyan),
        transparent
    );
    animation: dividerPulse 3s infinite linear;
}
@keyframes dividerPulse {
    0%   { filter: blur(2px) brightness(.8); }
    50%  { filter: blur(5px) brightness(1.2); }
    100% { filter: blur(2px) brightness(.8); }
}

/* Generic neon button */
.titan-btn {
    padding: 10px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    color: rgba(255,255,255,0.92);
    transition: .35s;
    position: relative;
    overflow: hidden;
}
.titan-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,123,0,0.45),
        rgba(61,214,255,0.45)
    );
    opacity: 0;
    filter: blur(12px);
    transition: .3s;
}
.titan-btn:hover {
    color: #fff;
    border-color: var(--neon-orange-soft);
    box-shadow:
        0 0 14px rgba(255,123,0,0.55),
        0 0 34px rgba(61,214,255,0.55);
}
.titan-btn:hover::after {
    opacity: .6;
}

/* =======================================================================================
   11. BADGES (LEVEL / ÖDÜL)
======================================================================================= */

.gm-badge {
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #f1c40f;
    transition: transform .2s ease, color .2s ease;
}
.gm-badge svg {
    width: 100%;
    height: 100%;
}
.gm-badge:hover {
    transform: scale(1.15);
    color: #ffe58a;
}
.gm-badge.mini {
    width: 16px;
    height: 16px;
}

/* =======================================================================================
   12. CURSOR / POINTER FIXES
======================================================================================= */

/* Tıklanabilir şeyler */
.genzo-manga-card,
.genzo-follow-card,
.genzo-social-link,
.genzo-tab-button,
.genzo-follow-btn,
.titan-btn,
.genzo-profile-gear,
.genzo-self-btn {
    cursor: pointer;
}

/* Metin alanları */
.genzo-comment-text,
.genzo-user-bio,
.genzo-about-text {
    cursor: text;
}

/* ================================
   FAN ART THUMBNAIL FIX
   Manga kapak ayarları fan art'a uygulanmasın
==================================*/

/* Fan art kartları: genişlik + oran + zoom kapalı */
.genzo-fanart-card .genzo-fanart-thumb {
  /* Manga thumb'dan gelen her şeyi ezmek için !important */
  background-size: contain !important;   /* resmi bütünüyle göster */
  background-position: center center !important;
  background-repeat: no-repeat !important;

  width: 100%;
  aspect-ratio: 3 / 4;                   /* dikey kart oranı */
  padding: 0 !important;                 /* varsa padding-top hack'ini kapat */
  border-radius: 18px;
  overflow: hidden;
}

/* Fan art'ta manga için yazılan karartma / blur efektlerini iptal et */
.genzo-fanart-card .genzo-manga-thumb::before,
.genzo-fanart-card .genzo-manga-thumb::after {
  display: none !important;
  content: none !important;
}
/* =========================================================
   PUBLIC PROFILE — FULL BACKGROUND + AVATAR FIX
   ========================================================= */

/* 1) Profil sayfasına tam sayfa arka plan + footer boşluğu */
body .titan-profile-page {
  position: relative;
  z-index: 0;
  padding-top: 40px;
  padding-bottom: 80px; /* footer’dan ayrılma */
  min-height: calc(100vh - 140px); /* header + footer payı */
}

body .titan-profile-page::before {
  content: "";
  position: fixed;     /* tüm viewport’u kaplasın */
  inset: 0;
  z-index: -1;
  pointer-events: none;

  /* Login sayfasına benzer turuncu + gece mavisi karışım */
  background:
    radial-gradient(circle at top center, rgba(255, 155, 55, 0.22), transparent 60%),
    radial-gradient(circle at bottom right, rgba(0, 80, 180, 0.30), transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 90, 20, 0.18), transparent 55%),
    #050509;
}

/* İç layout’u ortalı ve biraz nefes alır hale getir */
body .titan-profile-page .genzo-layout {
  margin-top: 24px;
}

body .titan-profile-page .genzo-hero {
  border-radius: 24px;
  background: radial-gradient(circle at top center, rgba(0,0,0,0.95), rgba(3,5,12,0.98));
}

/* 2) Sadece çember dönsün, avatar sabit kalsın (görsel olarak)  */
/* Çemberi döndür, avatarı ters yönde döndürerek sabit tut */

.titan-profile-page .genzo-avatar-ring {
  position: relative;
  animation: genzo-ring-spin 18s linear infinite !important;
}

.titan-profile-page .genzo-avatar-ring .genzo-avatar {
  position: relative;
  z-index: 1;
  animation: genzo-ring-spin-reverse 18s linear infinite !important;
}

/* Eğer eski CSS’te direkt img’ye animasyon verilmişse tamamen kapatmak istersen:
.titan-profile-page .genzo-avatar {
  animation: none !important;
}
*/

/* Ring ve avatar için yeni keyframe’ler */
@keyframes genzo-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes genzo-ring-spin-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}



/* =========================================================
   PUBLIC PROFILE — HERO COVER BLUR TUNING (ADD TO BOTTOM)
   Amaç: Cover çok bulanıksa azalt + hover’da abartmasın
   ========================================================= */

.titan-profile-page .genzo-hero .genzo-hero-cover{
  /* Eski: blur(14px) ... scale(1.16) */
  filter: blur(8px) brightness(.70) saturate(1.25) !important;
  transform: scale(1.06) !important;
}

.titan-profile-page .genzo-hero:hover .genzo-hero-cover{
  /* Eski hover: blur(16px) ... scale(1.20) */
  filter: blur(10px) brightness(.78) saturate(1.35) !important;
  transform: scale(1.08) !important;
}

/* İsteğe bağlı: overlay biraz daha “temiz” dursun */
.titan-profile-page .genzo-hero .genzo-hero-overlay{
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12),
    rgba(0,0,0,0.82)
  ) !important;
}
