:root {
    --bg-color: #000000;
    --card-bg: rgba(10, 10, 10, 0.75);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #b9bbbe;
    --accent: #5865F2;
    --accent-hover: #4752c4;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 1s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    transition: backdrop-filter 1s ease;
}

#enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.enter-content p {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    position: relative;
    z-index: 10;
    transition: transform 0.1s ease-out;
}

.profile-card {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    transform-style: preserve-3d;
    text-align: center;
}

.banner {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #050505;
    position: relative;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.profile-header {
    padding: 0 25px;
    margin-top: -75px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-container {
    position: relative;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: none;
    background-color: #0a0a0a;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avatar:hover {
    transform: scale(1.1) rotate(360deg);
}

.location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.status-indicator {
    display: block;
    width: 18px;
    height: 18px;
    background-color: #747f8d;
    border: 3px solid #000;
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
    right: 18px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.user-info h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -1px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.user-info .tag {
    display: none;
}

.badges {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 25px;
    justify-content: center;
    padding: 0;
    border: none;
}

.badge {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 1.2rem;
    color: var(--text-secondary);
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    opacity: 0.6;
}

.badge:hover {
    color: #fff;
    transform: translateY(-2px);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.badge i {
    font-size: 1rem;
    color: inherit;
}

.badge span {
    display: none;
}

.bio-section {
    padding: 0 40px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.bio-section h2 {
    display: none;
}

.bio-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #bebebe;
    font-weight: 400;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    background: transparent;
    border: none;
}

.stat-item {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat-item i {
    color: #888;
    font-size: 1.1rem;
    margin-right: 0;
}

.social-links {
    padding: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-btn {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 0;
    border: none;
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.audio-controls {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 20;
}

#toggle-audio {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#toggle-audio:hover {
    background: #fff;
    color: #000;
}