:root {
    --primary-color: #ff3b3b;
    --secondary-color: #ff6b6b;
    --accent-color: #4a4a4a;
    --background-color: #0f172a;
    --text-color: #f8fafc;
    --card-bg: rgba(30, 41, 59, 0.7);
    --glow-color: rgba(255, 59, 59, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.8);
}

.logo img {
    width: 48px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover i {
    transform: scale(1.05);
    color: var(--secondary-color);
}

.discord-button img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

.discord-button:hover img {
    transform: scale(1.1);
}

.discord-button i {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.discord-button:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    width: 100%;
    max-width: 800px;
}

.profile-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%
    );
    opacity: 0.5;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.profile-header h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        #ff3b3b 0%,
        #ff6b6b 30%,
        #ffa500 60%,
        #ffd700 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px var(--glow-color);
    position: relative;
}

.profile-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%
    );
    opacity: 0.5;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.profile-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bio {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.email {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid rgba(255, 59, 59, 0.2);
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.1);
}

.email:hover {
    color: var(--secondary-color);
    background: rgba(255, 59, 59, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.2);
    border-color: rgba(255, 59, 59, 0.3);
}

.email i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

.social-link:hover i {
    transform: scale(1.1);
}

.music-player {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.player-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.controls {
    display: flex;
    gap: 0.75rem;
}

.controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls button i {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.controls button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.controls button:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-control i {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

#volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.enter-text {
    text-align: center;
}

.enter-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enter-text p {
    font-size: 1.2rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.enter-text p:hover {
    opacity: 1;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(2px);
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

@media (max-width: 768px) {
    .profile-card {
        padding: 2rem;
        margin: 1rem;
    }

    .profile-header h1 {
        font-size: 3.5rem;
    }

    .bio {
        font-size: 1.1rem;
    }

    .email {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    .social-link i {
        font-size: 1.3rem;
    }

    .music-player {
        width: auto;
        padding: 0.75rem 1rem;
    }

    .player-content {
        gap: 1rem;
    }

    .volume-control {
        padding-left: 0.5rem;
    }

    #volume-slider {
        width: 60px;
    }
}
