/* ==========================================================================
   LOFI DEEP TOZ PEMBE (DUSTY PINK) GLASSMORPHISM - STYLE.CSS
   CBERK_Live Lofi & Cozy (Buzlu Cam) Dikey Link Paylaşım Sistemi
   ========================================================================== */

/* DEĞİŞKENLER VE ARAYÜZ RENK ŞABLONU (TOZ PEMBE VE SICAK GÜL KURUSU UYUMU) */
:root {
    --lofi-pink-bg: rgba(33, 22, 30, 0.65);         /* Derin Plum/Gül Kurusu Cam Rengi */
    --lofi-violet-card: rgba(255, 255, 255, 0.03);   /* Yarı Saydam Cam Buton Arka Planı */
    --lofi-pink-border: rgba(244, 63, 94, 0.45);     /* Canlı Toz Pembe Cam Kenarlığı */
    --lofi-neon-pink: #fb7185;                      /* Lofi Toz Pembe / Gül Kurusu */
    --lofi-neon-peach: #fecdd3;                     /* Lofi Tatlı Şeftali Pembe */
    --lofi-neon-orange: #f97316;                    /* Kor Turuncu */
    --lofi-neon-rose: #ec4899;                      /* Sıcak Neon Pembe */
    --text-main: #ffffff;                            /* Saf Beyaz */
    --text-muted: #fda4af;                           /* Toz Pembe Detay Yazıları */
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* Daha akıcı ve snappy sıvı geçiş */
}

/* GLOBAL SIFIRLAMA VE ARKA PLAN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #0d080f;
    
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 993px) {
    body {
        overflow: hidden;
        height: 100vh;
    }
}

/* ARKA PLAN RESMİ VE BULANIKLAŞTIRMA (HAFİF BUZLU / COZY LOFI EFFECT) */
body::before {
    content: '';
    position: fixed;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: blur(4px); /* Arka planı hafif buzlu, cozy ve bulanık yapar */
    z-index: -2;
    pointer-events: none;
}

/* SİNEMATİK DUSTY PINK / LOFI PEMBE GÖLGELENDİRME KATMANI */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.05) 0%, rgba(13, 8, 15, 0.9) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ANA DİKEY PROFİL KARTI (BİREBİR EKRAN GÖRÜNTÜSÜNDEKİ BUZLU TOZ PEMBE CAM EFEKTİ) */
.profile-card {
    width: 480px;
    flex: 0 0 480px;
    min-width: 480px;
    max-width: 480px;
    background: var(--lofi-pink-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--lofi-pink-border);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.85), 
                inset 0 1px 2px rgba(255, 255, 255, 0.2),
                0 0 50px rgba(244, 63, 94, 0.15);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   1. PROFİL ÜST KISMI (DİKEY YERLEŞİM)
   ========================================================================== */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    width: 100%;
}

/* ATEŞLİ NEON YANAN AVATAR ÇERÇEVESİ (BİREBİR EKRAN GÖRÜNTÜSÜNDEKİ KOR ATEŞ PEMBE ÇERÇEVESİ) */
.avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 0.1rem;
}

.avatar-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a101b;
    padding: 5px;
    border-radius: 12px;
    overflow: hidden;
    /* Gerçek ve parlak kor pembe alev ışıltısı */
    box-shadow: 0 0 20px #fb7185, 
                0 0 40px #ec4899, 
                0 0 60px #f43f5e;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dönen Alev Degrade Çemberi */
.avatar-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        #fb7185 0%,     /* Toz Pembe */
        #ec4899 25%,    /* Sıcak Pembe */
        #f43f5e 50%,    /* Kor Kırmızı */
        #fecdd3 75%,    /* Şeftali Pembe */
        #fb7185 100%
    );
    animation: rotateAlev 6s linear infinite;
    z-index: 1;
}

.avatar-frame::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #1a121c;
    border-radius: 9px;
    z-index: 2;
}

.avatar-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    z-index: 3;
}

@keyframes rotateAlev {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Kullanıcı Adı ve Bio */
.profile-name {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 4px 10px rgba(0, 0, 0, 0.5);
}

.profile-location {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted); /* Elegant rose pink text */
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: -0.4rem;
    margin-bottom: -0.2rem;
    opacity: 0.95;
    text-shadow: 0 0 8px rgba(244, 63, 94, 0.25);
}

.profile-bio {
    font-size: 0.95rem;
    color: #f3f4f6;
    line-height: 1.6;
    max-width: 95%;
    border-top: 1px solid rgba(244, 63, 94, 0.3);
    padding-top: 0.7rem;
}

/* ==========================================================================
   2. SOSYAL MEDYA LİNKLERİ (LÜKS, ULTRA MODERN VE SIVI GEÇİŞLİ DİKEY LİSTE)
   ========================================================================== */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem; /* Kartlar arası ferah ve şık boşluk */
}

.link-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px; /* Ultra sevimli ve modern yuvarlak köşeler */
    padding: 11px 18px;  /* Geniş, premium dokunma alanı */
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Sıvı cam parlaması efekti (Shimmer Reflection) */
.link-card::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 150%; height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        transparent
    );
    transition: 0.7s ease;
    z-index: 1;
}

.link-card:hover::before {
    left: 150%;
}

.link-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px; /* Yumuşak kare ikon çerçevesi */
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 2;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.link-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 2;
}

.link-title {
    font-size: 1.15rem;
    font-weight: 800; /* Daha kalın ve şık font */
    letter-spacing: 0.2px;
}

.link-desc {
    font-size: 0.8rem;
    color: var(--text-muted); /* Toz Pembe */
    font-weight: 500;
}

.link-arrow {
    opacity: 0.35;
    font-size: 0.9rem;
    transition: var(--transition);
    z-index: 2;
    color: var(--lofi-neon-peach);
}

/* GERÇEK PREMİUM SIVI HOVER ANİMASYONLARI (HAREKETLİ LIFT & NEON SHADOWS) */
.link-card:hover {
    transform: translateY(-4px) scale(1.015); /* Snappy yukarı sekme ve çok hafif büyüme */
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(5px);
    color: #ffffff;
}

/* YouTube */
.youtube-theme:hover {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.youtube-theme:hover .link-icon {
    background: #ef4444;
    color: white;
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.5);
    transform: rotate(-5deg); /* Tatlı bir mikro-animasyon */
}
.youtube-theme:hover .link-title {
    color: #fca5a5;
}

/* Instagram */
.instagram-theme:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.instagram-theme:hover .link-icon {
    background: #ec4899;
    color: white;
    box-shadow: 0 0 18px rgba(236, 72, 153, 0.5);
    transform: rotate(-5deg);
}
.instagram-theme:hover .link-title {
    color: #fbcfe8;
}

/* Discord */
.discord-theme:hover {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.discord-theme:hover .link-icon {
    background: #6366f1;
    color: white;
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.5);
    transform: rotate(-5deg);
}
.discord-theme:hover .link-title {
    color: #c7d2fe;
}

/* Steam */
.steam-theme:hover {
    border-color: rgba(244, 63, 94, 0.6);
    box-shadow: 0 12px 30px rgba(244, 63, 94, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.steam-theme:hover .link-icon {
    background: #fb7185;
    color: #1a121c;
    box-shadow: 0 0 18px rgba(244, 63, 94, 0.5);
    transform: rotate(-5deg);
}
.steam-theme:hover .link-title {
    color: #fecdd3;
}

/* ==========================================================================
   3. EN ALT KISIM: VİDEO BÖLÜMÜ
   ========================================================================== */
.video-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(244, 63, 94, 0.3);
    padding-top: 1.1rem;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--lofi-neon-pink);
    margin-bottom: 0.1rem;
    text-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
}

.video-card {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16/9;
    text-decoration: none;
    transition: var(--transition);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover {
    transform: scale(1.02);
    border-color: rgba(244, 63, 94, 0.45);
    box-shadow: 0 12px 30px rgba(244, 63, 94, 0.15);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.04);
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12, 8, 14, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    background: rgba(12, 8, 14, 0.25);
}

.youtube-play-btn {
    width: 68px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: playPulse 2.5s infinite ease-in-out;
    transition: var(--transition);
}

.youtube-play-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.video-card:hover .youtube-play-btn {
    transform: scale(1.12);
}

@keyframes playPulse {
    0% { transform: scale(0.96); filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5)); }
    50% { transform: scale(1.04); filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.85)); }
    100% { transform: scale(0.96); filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5)); }
}


.video-details {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 18px 14px;
    background: linear-gradient(transparent, rgba(12, 8, 14, 0.95));
    color: white;
}

.video-title {
    font-size: 1.05rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* ==========================================================================
   MOBİL EKRA UYUMLULUK AYARLARI (RESPONSIVE)
   ========================================================================== */
@media (max-width: 480px) {
    body {
        padding: 1.5rem 0.5rem;
    }

    .profile-card {
        padding: 2.5rem 1.4rem;
        gap: 1.8rem;
    }

    .profile-name {
        font-size: 1.7rem;
    }

    .avatar-wrapper {
        width: 120px;
        height: 120px;
    }

    .link-card {
        padding: 12px 16px;
    }

    .link-icon {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
        margin-right: 12px;
    }

    .link-title {
        font-size: 1rem;
    }

    .link-desc {
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   4. YENİ BİLGİ VE DETAY PANELİ (DETAILS CARD) STİLLERİ
   ========================================================================== */

/* ÇİFT SÜTUN MASAYÜSTÜ LAYOUT KONTEYNERİ */
.main-container {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    transition: var(--transition);
    position: relative;
}

/* BİLGİ PANELİ AÇMA BUTONU (PROFİL KARTINDA YÜZEN) */
.info-toggle-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.info-toggle-btn:hover {
    background: rgba(244, 63, 94, 0.2);
    border-color: var(--lofi-neon-pink);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
    transform: scale(1.1);
}

/* ANA DETAY KARTI (BUZLU TOZ PEMBE CAM EFEKTİ) */
.details-card {
    width: 410px;
    flex: 0 0 410px;
    min-width: 410px;
    max-width: 410px;
    background: var(--lofi-pink-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--lofi-pink-border);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.85), 
                inset 0 1px 2px rgba(255, 255, 255, 0.2),
                0 0 50px rgba(244, 63, 94, 0.15);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                margin-left 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 1200px;
    overflow: hidden;
}

/* COLLAPSIBLE DRAWER SLIDE-BEHIND STATE (DESKTOP) */
.details-card.collapsed {
    opacity: 0 !important;
    margin-left: -445px !important; /* Details card width (410px) + main-container gap (35px) */
    transform: translateX(-150px) scale(0.95) !important; /* Smoothly slides behind the profile card */
    pointer-events: none !important;
}

/* DETAY KARTI ÜST KISIM */
.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(244, 63, 94, 0.3);
    padding-bottom: 0.6rem;
}

.details-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.info-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-close-btn:hover {
    background: rgba(244, 63, 94, 0.15);
    color: #ffffff;
    transform: rotate(90deg);
}

/* SCROLLABLE DETAY İÇERİK */
.details-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.details-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.details-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--lofi-neon-pink);
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(244, 63, 94, 0.3);
}

/* AÇIKLAMA BÖLÜMÜ KUTUSU */
.desc-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.desc-main-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
}

.desc-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.8rem;
}

.desc-link-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.desc-link-name {
    font-weight: 700;
    color: var(--lofi-neon-peach);
}

.desc-link-url {
    color: #38bdf8;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-all;
}

.desc-link-url:hover {
    text-decoration: underline;
    color: #7dd3fc;
}

/* MİNİ BAĞLANTILAR */
.mini-links-list {
    display: flex;
    flex-direction: column;
}

.mini-link-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.mini-link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.15);
}

.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 12px;
}

.instagram-mini-color {
    color: #ec4899;
}

.mini-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.mini-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* DAHA FAZLA BİLGİ META LİSTESİ */
.meta-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.meta-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--lofi-neon-peach);
    margin-right: 14px;
}

.meta-link {
    color: #e5e7eb;
    text-decoration: none;
    transition: var(--transition);
}

.meta-link:hover {
    color: var(--lofi-neon-pink);
    text-decoration: underline;
}

/* E-POSTA REVEAL BUTONU VE STİLLERİ */
.email-container {
    display: flex;
    align-items: center;
}

.email-reveal-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.email-reveal-btn:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: var(--lofi-neon-pink);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

.email-display {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lofi-neon-peach);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px dashed rgba(244, 63, 94, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    display: none !important;
}

/* ALT AKSİYON BUTONLARI */
.details-actions {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.8rem;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.report-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fda4af;
}

.report-btn:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

/* COZY PREMIUM TOAST BILDIRIMI */
.cozy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(33, 22, 30, 0.95);
    border: 1px solid var(--lofi-pink-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(244, 63, 94, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    pointer-events: none;
}

.cozy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    color: #10b981;
    font-size: 1.1rem;
}

/* MOBİL & TABLET UYUMLULUK EK EKLEMELERİ */
@media (max-width: 992px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .main-container {
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
    }

    .profile-card {
        width: 100% !important;
        max-width: 480px !important;
        flex: 1 1 auto !important;
    }

    .details-card {
        width: 100% !important;
        max-width: 540px !important;
        flex: 1 1 auto !important;
    }

    .details-card.collapsed {
        opacity: 0 !important;
        max-height: 0 !important;
        max-width: 540px !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-left: 0 !important;
        border: none !important;
        transform: translateY(-40px) scale(0.95) !important;
        pointer-events: none !important;
    }
}
