* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.custom-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s ease-out, background 0.1s ease;
    mix-blend-mode: difference;
    will-change: transform;
}

.custom-cursor.hover {
    transform: scale(1.8);
    background: rgba(255, 255, 255, 0.7);
}

.custom-cursor.click {
    transform: scale(0.6);
    background: rgba(255, 255, 255, 1);
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    transition: all 0.3s ease;
}



.avatar:hover {
    transform: scale(1.05);
    border-color: #333;
}


.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
    background: #747f8d; 
    transition: all 0.3s ease;
}

.status-indicator.online {
    background: #23a55a; 
    box-shadow: 0 0 10px rgba(35, 165, 90, 0.4);
}

.status-indicator.idle {
    background: #f0b232; 
    box-shadow: 0 0 10px rgba(240, 178, 50, 0.4);
}

.status-indicator.dnd {
    background: #f23f43; 
    box-shadow: 0 0 10px rgba(242, 63, 67, 0.4);
}

.status-text::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #747f8d; 
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.status-text.online::before {
    background: #23a55a; 
    box-shadow: 0 0 8px rgba(35, 165, 90, 0.6);
}

.status-text.idle::before {
    background: #f0b232; 
    box-shadow: 0 0 8px rgba(240, 178, 50, 0.6);
}

.status-text.dnd::before {
    background: #f23f43; 
    box-shadow: 0 0 8px rgba(242, 63, 67, 0.6);
}

.name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
}


.activities-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.discord-status {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.discord-status:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.status-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.discord-logo, .spotify-logo {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #888;
}

.status-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    display: flex;
    align-items: center;
}

.status-text::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #747f8d; 
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.status-text.online::before {
    background: #23a55a; 
    box-shadow: 0 0 8px rgba(35, 165, 90, 0.6);
}

.status-text.idle::before {
    background: #f0b232; 
    box-shadow: 0 0 8px rgba(240, 178, 50, 0.6);
}

.status-text.dnd::before {
    background: #f23f43; 
    box-shadow: 0 0 8px rgba(242, 63, 67, 0.6);
}

.status-text.online::before {
    background: #23a55a; 
    box-shadow: 0 0 8px rgba(35, 165, 90, 0.6);
}

.status-text.idle::before {
    background: #f0b232; 
    box-shadow: 0 0 8px rgba(240, 178, 50, 0.6);
}

.status-text.dnd::before {
    background: #f23f43; 
    box-shadow: 0 0 8px rgba(242, 63, 67, 0.6);
}

.discord-activity {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #666;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-right: 0.75rem;
    background: #36393f;
}

.activity-details {
    flex: 1;
}

.activity-name {
    font-weight: 500;
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.activity-state {
    font-size: 0.8rem;
    color: #b0b0b0;
}

.spotify-section {
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.spotify-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spotify-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #666, #888);
    animation: spotifyPulse 2s ease-in-out infinite;
}

.spotify-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.spotify-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.spotify-status {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.spotify-content {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.album-cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-right: 1rem;
    background: #333;
    object-fit: cover;
}

.spotify-info {
    flex: 1;
}

.spotify-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.spotify-artist {
    font-size: 0.85rem;
    color: #888;
}

.spotify-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #666, #888);
    border-radius: 2px;
    transition: width 1s linear;
    width: 0%;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

.link-icon {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    color: #888;
}

.footer {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite linear;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spotifyPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-10px) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.5rem;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
    }
    
    .name {
        font-size: 1.5rem;
    }
    
    .spotify-card {
        padding: 1rem;
    }
    
    .album-cover {
        width: 40px;
        height: 40px;
    }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.copy-notification.success {
    border-color: rgba(136, 136, 136, 0.5);
    background: rgba(136, 136, 136, 0.1);
}

.copy-notification::before {
    content: '✓';
    margin-right: 8px;
    color: #4ade80;
    font-weight: bold;
}