:root {
    --bg-color: #010101;
    --card-bg: rgba(6, 6, 6, 0.25);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-color: #ffffff;
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --font-main: 'Outfit', sans-serif;
    --font-sub: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Cinematic Scanlines Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.05) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.8;
}

/* V4 Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.overlay-content {
    text-align: center;
}

.enter-btn {
    margin-top: 20px;
    padding: 12px 40px;
    border: 1px solid #fff;
    color: #fff;
    font-family: var(--font-sub);
    letter-spacing: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.enter-btn:hover {
    background: #fff;
    color: #000;
}

/* Copy Notification Toast */
.copy-toast {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -20px);
}

/* Background & Particles */
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    filter: grayscale(1) contrast(1.1) brightness(0.35);
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Cursor Follower */
.cursor-aura {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease-out;
}

/* Volume Control */
.volume-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 101;
    font-size: 1.1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

/* Content Area */
.content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Decorative Orbit Ring (Oval) */
.orbit-ring {
    position: absolute;
    width: 600px;
    height: 300px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate3d(1, 1, 0, 75deg) rotateZ(15deg);
    pointer-events: none;
    z-index: 5;
    animation: orbit-rotate 20s infinite linear;
}

@keyframes orbit-rotate {
    from {
        transform: rotate3d(1, 1, 0, 75deg) rotateZ(15deg);
    }

    to {
        transform: rotate3d(1, 1, 0, 75deg) rotateZ(375deg);
    }
}

.profile-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 60px 40px;
    border-radius: 40px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
    z-index: 10;
}

/* Avatar Interact */
.avatar-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 30px;
    transform: translateZ(30px);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    filter: grayscale(1);
    transition: var(--transition);
}

.avatar:hover {
    filter: grayscale(0);
}

:root {
    --bg-color: #010101;
    --card-bg: rgba(6, 6, 6, 0.08); /* Ekstra şeffaflık */
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-color: #ffffff;
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --font-main: 'Outfit', sans-serif;
    --font-sub: 'Inter', sans-serif;
}

.status-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #43b581;
    border: 4px solid #060606;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.4);
}

/* Name & Tagline */
.name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.username { 
    font-size: 2.5rem; 
    font-weight: 800; 
    letter-spacing: -1.5px; 
    animation: neon-pulse 3s infinite ease-in-out; 
    cursor: pointer; 
    transition: var(--transition); 
}

.name-badge {
    width: 20px; /* Zarif bir boyut */
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.4));
}

@keyframes neon-pulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    }

    50% {
        opacity: 0.85;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 35px;
    cursor: pointer;
    transition: var(--transition);
}

.tagline:hover {
    color: #fff;
    transform: scale(1.05);
}

/* Social Menü (Horizontal) */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-item-wrapper {
    position: relative;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-item {
    font-size: 1.6rem;
    color: var(--text-secondary);
    transition: var(--transition);
    z-index: 2;
}

.social-item:hover {
    color: #fff;
}

.gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(90deg, #fff, transparent, #fff);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.social-item-wrapper:hover .gradient-border {
    opacity: 1;
    animation: rotate-border 2s linear infinite;
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tooltip & Other components */
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.discord-presence {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.spotify-marquee-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 30px;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 10px;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Visualizer & Stats */
.visualizer-container {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
}

.bar {
    width: 4px;
    background: #fff;
    border-radius: 20px;
    animation: bounce 1.2s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        height: 6px;
    }

    50% {
        height: 30px;
    }
}

.stats {
    margin-top: 35px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 480px) {
    .profile-card {
        padding: 45px 25px;
    }

    .username {
        font-size: 2rem;
    }

    .orbit-ring {
        width: 90vw;
        height: 45vw;
    }
}
