:root {
    --bg-color: #0d0d12;
    --glass-bg: rgba(20, 20, 30, 0.15);
    --glass-border: rgba(0, 0, 0, 0.5);
    --inner-glass-bg: rgba(0, 0, 0, 0.4);
    --inner-glass-border: rgba(0, 0, 0, 0.7);
    --text-main: #ffffff;
    --text-muted: #d0d0d0;
    --hover-bg: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    cursor: none !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9000;     display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.intro-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.5px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.main-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 10000;
    transform-origin: top left;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cursor-particle {
    position: fixed;
    width: 14px;
    height: 14px;
    pointer-events: none;
    z-index: 9999;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bio-container {
    width: 100%;
        max-width: 680px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem 2.5rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
        transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.views {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 2.2rem;     font-weight: 700;     margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.name i {
    font-size: 1.3rem;
    position: relative;
    top: 4px;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.description {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.6;     max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin: 1.5rem 0;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.link-btn {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--inner-glass-bg);
    border: 1px solid var(--inner-glass-border);
    border-radius: 8px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
}

.link-btn:hover {
    background: var(--hover-bg);
    border-color: rgba(255,255,255,0.1);
}

.link-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-right: 12px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.link-text {
    flex-grow: 1;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.link-arrow {
    font-size: 0.9rem;
    opacity: 0.8;
}

.discord-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    background: var(--inner-glass-bg);
    border: 1px solid var(--inner-glass-border);
    border-radius: 8px;
    margin-bottom: 12px;
    gap: 1.2rem;
}

.ds-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    object-fit: cover;
}

.ds-info {
    flex-grow: 1;
}

.ds-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.ds-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #23a559;
}

.status-dot.offline {
    background: #e02424;
}

.status-dot.peak {
    background: #f59e0b; }

.join-btn {
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s ease;
}

.join-btn:hover {
    background: rgba(255,255,255,0.15);
}

.music-player {
    padding: 1.2rem;
    background: var(--inner-glass-bg);
    border: 1px solid var(--inner-glass-border);
    border-radius: 8px;
    margin-top: 16px;
}

.player-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.player-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.progress-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    position: relative;
}

/* Расширяем зону клика для удобства */
.progress-bar::after {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
    cursor: pointer;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--text-main);
    border-radius: 2px;
}

.progress-thumb {
    width: 14px;
    height: 14px;
    background: var(--text-main);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
}

.controls-btns {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: 0.5rem;
}

.controls-btns i {
    font-size: 1.1rem;
    color: var(--text-main);
    transition: opacity 0.2s ease;
}

.controls-btns i:hover {
    opacity: 0.6;
}

.play-btn {
    font-size: 1.5rem !important;
}

a, button, input, .controls-btns i {
    cursor: none !important;
}
