/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Mor özel cursor için varsayılan imleci gizliyoruz */
}

body, html {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #070709;
    color: #ffffff;
    overflow: hidden !important;
    position: fixed;
    top: 0;
    left: 0;
    user-select: none;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}



/* Arka Plan Görseli / Videosu ve Noktalı Guns.lol Deseni */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.75) contrast(1.05) blur(0px);
    transition: filter 0.8s ease;
}

.bg-image {
    background: url('arkaplan.png') no-repeat center center/cover, url('bg.jpg') no-repeat center center/cover;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('arkaplan.png'), url('bg.jpg');
}

.bg-overlay {
    display: none;
}

/* Canvas Mor Parçacık Cursor Trail */
#cursorCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* Giriş Ekranı (Click to enter...) - Şeffaf ve Blurlu */
.entry-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 8, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.entry-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.entry-text {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #e0e0e0;
    animation: pulseText 2s infinite ease-in-out;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

@keyframes pulseText {
    0%, 100% { opacity: 0.3; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* Kart Konteyner - Tam Ekran Ortalanmış & Sabit */
.card-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


/* Guns.lol Tarzı Cam Görünümlü Profil Kartı */
.profile-card {
    width: 100%;
    max-width: 420px;
    background: rgba(14, 12, 22, 0.65);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 35px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(147, 51, 234, 0.15),
                inset 0 0 15px rgba(255, 255, 255, 0.03);
    animation: cardAppear 1s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9),
                0 0 40px rgba(168, 85, 247, 0.25);
}

@keyframes cardAppear {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Profil Resmi ve Mor Halka Alev Efekti */
.avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #a855f7, #ec4899, #3b82f6, #a855f7);
    animation: spinGlow 4s linear infinite;
    filter: blur(6px);
    opacity: 0.85;
}

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

.avatar-img {
    position: relative;
    z-index: 2;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(15, 15, 20, 0.9);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

/* Kullanıcı Adı ve Özel Font Stilleri */
.username {
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-prefix, .user-suffix {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #e2e8f0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.user-cloud {
    font-family: 'Cinzel Decorative', 'Chakra Petch', 'Orbitron', cursive, sans-serif;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e879f9 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 22px rgba(192, 132, 252, 0.95)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
    padding: 0 4px;
    font-size: 2.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.bio-status {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Sosyal Medya Butonları */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.social-btn:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.6);
    color: #c084fc;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.social-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.25);
    border-color: rgba(225, 48, 108, 0.6);
    color: #fd1d1d;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

/* Tooltip (Uygulama Adı Gösterimi) */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(14, 10, 24, 0.95);
    color: #e2e8f0;
    border: 1px solid rgba(168, 85, 247, 0.5);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 10px rgba(168, 85, 247, 0.25);
    z-index: 100;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(168, 85, 247, 0.5) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Kart Alt Alanı (Sayaç & Ses Kontrolü) */
.card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.85rem;
}

.view-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.view-counter i {
    color: #c084fc;
}

.audio-control {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.audio-control:hover {
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.4);
    transform: scale(1.1);
}

/* Discord Bildirim Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(20, 15, 30, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(168, 85, 247, 0.4);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 999;
    pointer-events: none;
}

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

/* Responsive Mobil ve Tablet Ekran Uyumları */
@media screen and (max-width: 600px) {
    .profile-card {
        width: 92%;
        max-width: 360px;
        padding: 28px 18px 22px 18px;
        border-radius: 20px;
    }

    .avatar-wrapper {
        width: 95px;
        height: 95px;
        margin-bottom: 14px;
    }

    .avatar-glow {
        width: 104px;
        height: 104px;
    }

    .avatar-img {
        width: 88px;
        height: 88px;
    }

    .user-cloud {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }

    .bio-status {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .toast {
        font-size: 0.8rem;
        padding: 10px 18px;
        width: 88%;
        text-align: center;
    }

    .entry-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 380px) {
    .user-cloud {
        font-size: 1.8rem;
    }
    .profile-card {
        padding: 22px 14px 18px 14px;
    }
}

/* Mobil (iOS & Android) Uyumlu Orantılı Neon İmleç Tasarımı */
#cursorCanvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
}

@media screen and (max-width: 768px) {
    * {
        cursor: none !important;
    }
}


