* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

:root {
    --primary-red: #FF0000;
    --dark-red: #8B0000;
    --accent-red: #FF3333;
    --neon-red: #FF0040;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --glass-bg: rgba(255, 0, 0, 0.1);
    --glass-border: rgba(255, 0, 0, 0.3);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-darker);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Ultra Fast Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-red) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.05s ease-out;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.1s ease-out;
    opacity: 0.7;
}

/* Background Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.8) 0%, 
        rgba(139, 0, 0, 0.3) 50%, 
        rgba(10, 10, 10, 0.9) 100%);
    z-index: -1;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-red);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.profile-avatar {
    position: relative;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-red);
    box-shadow: 0 0 30px var(--neon-red);
    transition: all 0.3s ease;
}

.profile-avatar img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--neon-red);
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 15px currentColor;
}

.username {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-red), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--neon-red);
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.social-link.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.social-link.roblox:hover {
    border-color: #00A2FF;
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.5);
}

.social-link.spotify:hover {
    border-color: #1DB954;
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.5);
}

.social-link i {
    font-size: 1.5rem;
}

/* Status Card */
.status-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--primary-red);
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.online {
    background: rgba(0, 255, 0, 0.2);
    color: #00FF00;
    border: 1px solid #00FF00;
}

.status-badge.idle {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    border: 1px solid #FFA500;
}

.status-badge.dnd {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    border: 1px solid #FF0000;
}

.status-badge.offline {
    background: rgba(128, 128, 128, 0.2);
    color: #808080;
    border: 1px solid #808080;
}

/* Activities Section */
.activities-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.activities-section h2 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.activity-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-red);
}

/* Spotify Section */
.spotify-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spotify-header i {
    color: #1DB954;
    font-size: 2rem;
}

.spotify-header h2 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-red);
}

.spotify-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.spotify-track img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.track-info h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.track-info p {
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

/* Music Controls */
.music-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
    z-index: 1000;
}

.music-btn {
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-control input {
    width: 80px;
    height: 5px;
    background: var(--dark-red);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.volume-control input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.volume-control i {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .username {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .music-controls {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .container {
        padding: 1rem;
    }
}

/* Glitch Effects */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.username:hover {
    animation: glitch 0.3s ease-in-out;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s infinite;
}
