@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    position: relative;
}

*, *::before, *::after,
html, body,
a, a:hover, a:active, a:visited,
button, button:hover, button:active, button:focus,
input, input:hover, input:focus,
textarea, textarea:hover, textarea:focus,
select, select:hover, select:focus,
.nav-link, .nav-link:hover, .nav-link:active, .nav-link:focus,
.contact-item, .contact-item:hover, .contact-item:active,
.avatar, .avatar:hover, .avatar:active,
.info-item, .info-item:hover, .info-item:active,
.activity-card, .activity-card:hover, .activity-card:active,
.avatar-item, .avatar-item:hover, .avatar-item:active,
.close-btn, .close-btn:hover, .close-btn:active,
.download-btn, .download-btn:hover, .download-btn:active,
.preview-close, .preview-close:hover, .preview-close:active,
.discord-card, .discord-card:hover,
.spotify-album-art, .spotify-album-art:hover,
.modal-content, .modal-content:hover,
.visitor-counter, .visitor-counter:hover,
[onclick], [onclick]:hover, [onclick]:active,
[role="button"], [role="button"]:hover, [role="button"]:active {
    cursor: none !important;
}

*:hover, *:focus, *:active, *:visited {
    cursor: none !important;
}

*::-webkit-any-link {
    cursor: none !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    cursor: none !important;
}

@media (max-width: 768px) {
    *, *::before, *::after,
    html, body,
    a, a:hover, a:active, a:visited,
    button, button:hover, button:active, button:focus,
    input, input:hover, input:focus,
    textarea, textarea:hover, textarea:focus,
    select, select:hover, select:focus,
    .nav-link, .nav-link:hover, .nav-link:active, .nav-link:focus,
    .contact-item, .contact-item:hover, .contact-item:active,
    .avatar, .avatar:hover, .avatar:active,
    .info-item, .info-item:hover, .info-item:active,
    .activity-card, .activity-card:hover, .activity-card:active,
    .avatar-item, .avatar-item:hover, .avatar-item:active,
    .close-btn, .close-btn:hover, .close-btn:active,
    .download-btn, .download-btn:hover, .download-btn:active,
    .preview-close, .preview-close:hover, .preview-close:active,
    .discord-card, .discord-card:hover,
    .spotify-album-art, .spotify-album-art:hover,
    .modal-content, .modal-content:hover,
    .visitor-counter, .visitor-counter:hover,
    [onclick], [onclick]:hover, [onclick]:active,
    [role="button"], [role="button"]:hover, [role="button"]:active {
        cursor: default !important;
    }
}
#customCursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    pointer-events: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 16px rgba(255, 255, 255, 0.4), 0 0 24px rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.15s ease, height 0.15s ease, opacity 0.2s ease;
    z-index: 10000;
    opacity: 0.9;
}

#customCursor.hover {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(255, 255, 255, 0.6), 0 0 36px rgba(255, 255, 255, 0.4);
    opacity: 1;
}

#customCursor.click {
    width: 15px;
    height: 15px;
    background: #43b581;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.8), 0 0 20px rgba(67, 181, 129, 0.6), 0 0 30px rgba(67, 181, 129, 0.4);
}

#customCursor.text {
    width: 2px;
    height: 16px;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

#customCursor.hidden {
    opacity: 0;
}

@media (max-width: 768px) {
    body {
        cursor: default;
    }
    
    #customCursor {
        display: none;
    }
}

.music-player-card {
    margin-bottom: 16px;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.music-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.music-player-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.music-player {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.music-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.music-icon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #5865f2;
    animation: music-pulse 2s ease-in-out infinite;
}

@keyframes music-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.music-type {
    font-size: 10px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.music-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.music-album-container {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.music-album-art {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(88, 101, 242, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.music-album-art:hover {
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 5px 16px rgba(88, 101, 242, 0.25);
}

.music-track-info {
    flex: 1;
    min-width: 0;
}

.music-title {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 2px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.music-artist {
    font-size: 12px;
    color: #cccccc;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.music-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.music-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-control:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.2);
}

.music-control:hover::before {
    opacity: 1;
    transform: scale(1);
}

.music-control:active {
    transform: translateY(0) scale(0.98);
}

.music-control.play-pause {
    width: 40px;
    height: 40px;
    font-size: 15px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.08));
    border-color: rgba(88, 101, 242, 0.3);
}

.music-control.play-pause:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(88, 101, 242, 0.15));
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.music-progress-container {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2.5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-progress-container:hover {
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
}

.music-progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 2.5px;
    overflow: hidden;
}

.music-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5865f2, #7289da);
    border-radius: 2.5px;
    position: relative;
    transition: width 0.1s linear;
    width: 0%;
}

.music-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: music-shimmer 2s ease-in-out infinite;
}

@keyframes music-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.music-time {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 9px;
    color: #666666;
    font-family: 'Inter', monospace;
    font-weight: 500;
}

/* Lock screen styles */
.lockscreen {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.lock-content {
    text-align: center;
    color: #cfcfcf;
    font-family: 'Inter', sans-serif;
}
.click-text {
    font-size: 13px;
    letter-spacing: 1px;
    color: #e6e6e6;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
    cursor: pointer;
    user-select: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    animation: pulse 1.6s infinite ease-in-out;
}

/* Site lockscreen (English, blurred background) */
.site-lockscreen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    background: rgba(6,6,6,0.6);
    backdrop-filter: blur(6px) saturate(1.05);
    -webkit-backdrop-filter: blur(6px) saturate(1.05);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.site-lockscreen-inner {
    text-align: center;
    color: #fff;
    padding: 24px 28px;
    border-radius: 12px;
    max-width: 90%;
    pointer-events: auto;
}
.lock-title {
    font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
    font-size: 34px;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    color: #fff;
}
.lock-hint {
    appearance: none;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #ddd;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
}
.lock-hint:focus { outline: 2px solid rgba(88,101,242,0.4); }



@media (max-width: 768px) {
    .music-player-card {
        margin-bottom: 16px;
        padding: 16px;
    }
    
    .music-content {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .music-album-art {
        width: 45px;
        height: 45px;
    }
    
    .music-title {
        font-size: 15px;
    }
    
    .music-artist {
        font-size: 12px;
    }
    
    .music-controls {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .music-control {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .music-control.play-pause {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    
    .music-progress-container {
        height: 4px;
    }
    
    .music-progress-container:hover {
        height: 4px;
    }
}

@media (max-width: 480px) {
    .music-player-card {
        padding: 14px;
        margin-bottom: 12px;
    }
    
    .music-content {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .music-album-art {
        width: 40px;
        height: 40px;
    }
    
    .music-title {
        font-size: 14px;
    }
    
    .music-artist {
        font-size: 11px;
    }
    
    .music-controls {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .music-control {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .music-control.play-pause {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.contact-item.donate-item {
    border-color: rgba(88, 101, 242, 0.3);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(15, 15, 15, 0.8) 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item.donate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.2), transparent);
}

.contact-item.donate-item:hover {
    transform: translateY(-6px);
    border-color: rgba(88, 101, 242, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.donate-icon {
    color: #5865f2;
}
/* trb sa schimb cv  */
@media (max-width: 768px) {
    .contact-item.donate-item {
        padding: 20px;
        margin-bottom: 8px;
        transform: none !important;
    }
    
    .contact-item.donate-item:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .contact-item.donate-item {
        padding: 18px;
        margin-bottom: 6px;
    }
}

.invite-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.invite-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.invite-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.invite-card.server-invite {
    border-color: rgba(88, 101, 242, 0.3);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.invite-card.bot-invite {
    border-color: rgba(67, 181, 129, 0.3);
    background: linear-gradient(135deg, rgba(67, 181, 129, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.invite-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.invite-icon {
    flex-shrink: 0;
}

.invite-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: all 0.3s ease;
}

.invite-card:hover .invite-avatar {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.invite-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.invite-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.invite-description {
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.2;
}

.invite-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    margin-top: 2px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaaaaa;
    font-weight: 500;
}

.stat .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat .status-dot.online {
    background: #43b581;
}

.stat .status-dot.offline {
    background: #747f8d;
}

.invite-action {
    flex-shrink: 0;
    margin-left: 12px;
}

.join-btn {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #5865f2;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-tap-highlight-color: transparent;
}

.join-btn.bot-btn {
    background: rgba(67, 181, 129, 0.15);
    border-color: rgba(67, 181, 129, 0.3);
    color: #43b581;
}

.join-btn:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-1px);
}

.join-btn.bot-btn:hover {
    background: rgba(67, 181, 129, 0.25);
    border-color: rgba(67, 181, 129, 0.5);
}

.invite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 768px) {
    .invite-cards-container {
        gap: 12px;
        margin-top: 12px;
    }
    
    .invite-card {
        padding: 16px;
        transform: none !important;
    }
    
    .invite-card:hover {
        transform: none !important;
    }
    
    .invite-header {
        gap: 12px;
    }
    
    .invite-avatar {
        width: 40px;
        height: 40px;
    }
    
    .invite-name {
        font-size: 16px;
    }
    
    .invite-stats {
        gap: 12px;
        font-size: 12px;
    }
    
    .invite-action {
        margin-left: 8px;
    }
    
    .join-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .invite-cards-container {
        gap: 10px;
        margin-top: 10px;
    }
    
    .invite-card {
        padding: 14px;
    }
    
    .invite-header {
        gap: 10px;
    }
    
    .invite-avatar {
        width: 35px;
        height: 35px;
    }
    
    .invite-name {
        font-size: 15px;
    }
    
    .invite-description {
        font-size: 13px;
    }
    
    .invite-stats {
        gap: 10px;
        font-size: 11px;
    }
    
    .invite-action {
        margin-left: 6px;
    }
    
    .join-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}

.visitor-counter {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #888888;
    font-weight: 400;
}

.visitor-icon {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
    animation: eye-blink 4s ease-in-out infinite;
}

.visitor-text {
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}

.visitor-text #visitor-count {
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', monospace;
    transition: all 0.3s ease;
}

.visitor-counter:hover .visitor-icon {
    color: #43b581;
    transform: scale(1.1);
}

.visitor-counter:hover .visitor-text #visitor-count {
    color: #43b581;
}

@keyframes eye-blink {
    0%, 90%, 100% { opacity: 0.8; }
    95% { opacity: 0.3; }
}

@media (max-width: 768px) {
    .visitor-counter {
        margin-top: 16px;
        padding-top: 16px;
        font-size: 13px;
    }
    
    .visitor-icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .visitor-counter {
        margin-top: 14px;
        padding-top: 14px;
        font-size: 12px;
    }
    
    .visitor-icon {
        font-size: 13px;
    }
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
}

.wakeup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.wakeup-overlay.fade-out {
    opacity: 0;
}

.wakeup-overlay.hidden {
    display: none;
}

.wakeup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    animation: wakeup-pulse 2s ease-in-out infinite;
}

.wake-text {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
    opacity: 0;
    animation: wake-text-fade 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes wakeup-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

@keyframes wake-text-fade {
    0%, 100% { 
        opacity: 0;
        transform: translateY(5px);
    }
    50% { 
        opacity: 0.7;
        transform: translateY(0);
    }
}

.pulse-dot.subtle {
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}
.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
}

.star.small {
    width: 1px;
    height: 1px;
    opacity: 0.4;
}

.star.medium {
    width: 2px;
    height: 2px;
    opacity: 0.7;
    animation: twinkle 3s ease-in-out infinite, float 8s ease-in-out infinite;
}

.star.large {
    width: 3px;
    height: 3px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
    animation: twinkle 2s ease-in-out infinite, float 12s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    75% { transform: translateY(5px) translateX(-3px); }
}

.fixed-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-nav:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: translateX(-50%) translateY(-2px);
}

.nav-container {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: lowercase;
    background: transparent;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    letter-spacing: 0.3px;
    border-radius: 50px;
    white-space: nowrap;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-link.active::before {
    opacity: 0;
}

.nav-link:focus {
    outline: none;
    box-shadow: none;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 10;
}

.content {
    width: 100%;
    max-width: 520px;
    text-align: center;
    animation: fadein 1s ease-out;
}

@keyframes fadein {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.header {
    margin-bottom: 50px;
    animation: slideup 0.8s ease-out 0.3s both;
}

@keyframes slideup {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.name {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); }
}

.tagline {
    font-size: 18px;
    color: #777777;
    font-weight: 300;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeinup 0.8s ease-out 0.6s both;
}

@keyframes fadeinup {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.discord-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.discord-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.avatar-container {
    position: relative;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.avatar:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #000;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-indicator.online { background: #43b581; box-shadow: 0 0 10px rgba(67, 181, 129, 0.5); }
.status-indicator.idle { background: #faa61a; box-shadow: 0 0 10px rgba(250, 166, 26, 0.5); }
.status-indicator.dnd { background: #f04747; box-shadow: 0 0 10px rgba(240, 71, 71, 0.5); }
.status-indicator.offline { background: #747f8d; }

.user-details {
    flex: 1;
    text-align: left;
}

.username {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.status-text {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 400;
}

.activities-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.activity-card.spotify {
    border-color: rgba(30, 215, 96, 0.3);
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.activity-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #1ed760;
}

.activity-type {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.activity-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.3;
}

.activity-artist {
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
    margin-bottom: 12px;
}

.progress-container {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1ed760, #1db954);
    border-radius: 2px;
    position: relative;
    transition: width 0.1s linear;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


.spotify-content {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
}

.spotify-album-container {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.spotify-album-art {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(30, 215, 96, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(30, 215, 96, 0.15);
    cursor: pointer;
}

.spotify-album-art:hover {
    transform: scale(1.03);
    border-color: rgba(30, 215, 96, 0.5);
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.25);
}

.spotify-track-info {
    flex: 1;
    min-width: 0;
}

.spotify-track-info .activity-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.spotify-track-info .activity-artist {
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .spotify-content {
        gap: 12px;
    }
    
    .spotify-album-art {
        width: 40px;
        height: 40px;
    }
    
    .spotify-track-info .activity-title {
        font-size: 15px;
    }
    
    .spotify-track-info .activity-artist {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .spotify-content {
        gap: 10px;
    }
    
    .spotify-album-art {
        width: 35px;
        height: 35px;
    }
    
    .spotify-track-info .activity-title {
        font-size: 14px;
    }
    
    .spotify-track-info .activity-artist {
        font-size: 12px;
    }
}

.progress-time {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: #666666;
    font-family: 'Inter', monospace;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
    animation: gridfade 0.8s ease-out 0.4s both;
}

@keyframes gridfade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-item {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.5s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.info-item:hover::before {
    left: 100%;
}

.info-label {
    font-size: 12px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    gap: 16px;
    animation: contactfade 0.8s ease-out 0.2s both;
}

@keyframes contactfade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-item {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.contact-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 24px;
    color: #ffffff;
    width: 40px;
    text-align: center;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    color: #888888;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-value {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.avatar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    backdrop-filter: blur(20px);
}

.avatar-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalfade 0.4s ease-out;
}

@keyframes modalfade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalslide 0.4s ease-out;
}

@keyframes modalslide {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.close-btn {
    background: none;
    border: none;
    color: #888888;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.avatars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 16px;
    max-width: 600px;
}

.avatar-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.avatar-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.avatar-preview-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: previewFade 0.3s ease-out;
}

@keyframes previewFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.preview-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    max-width: 90vw;
    max-height: 80vh;
    text-align: center;
    position: relative;
    animation: previewSlide 0.3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes previewSlide {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.preview-image {
    max-width: 300px;
    max-height: 300px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.preview-date {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.download-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.preview-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #888888;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.avatars-container-wrapper {
    padding: 16px 24px 24px;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .fixed-nav {
        top: 20px;
        left: 15px;
        right: 15px;
        transform: none;
        width: calc(100% - 30px);
        gap: 2px;
        padding: 4px;
        transition: none !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .fixed-nav:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
        transform: none !important;
    }

    .nav-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 2px;
    }

    .nav-link {
        flex: 1;
        padding: 10px 8px;
        font-size: 13px;
        min-height: 38px;
        min-width: 60px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none !important;
        transition: background-color 0.2s ease, color 0.2s ease !important;
    }

    .nav-link:hover {
        transform: none !important;
    }

    .nav-link:active {
        transform: none !important;
    }

    .nav-link:focus {
        transform: none !important;
    }

    .nav-link::before {
        transform: none !important;
        transition: opacity 0.2s ease !important;
    }

    .name {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 16px;
    }

    .content {
        max-width: 400px;
    }

    .container {
        padding: 100px 15px 60px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px; 
        margin-bottom: 24px; 
    }

    .info-item {
        padding: 16px; 
        margin-bottom: 8px; 
    }

    .discord-card {
        margin-bottom: 20px;
        padding: 20px; 
    }

    .profile-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;  
    }

    .user-details {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px; 
        margin-bottom: 8px;
    }

    .contact-grid {
        gap: 12px;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 90vh;
    }

    .modal-header {
        padding: 24px 24px 12px;
    }

    .avatars-container-wrapper {
        padding: 16px 24px 24px;
    }

    .avatars-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .fixed-nav {
        top: 15px;
        left: 10px;
        right: 10px;
        transform: none !important;
        width: calc(100% - 20px);
        position: fixed;
        transition: none !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
        gap: 1px;
        padding: 3px;
    }

    .fixed-nav:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
        transform: none !important;
    }

    .nav-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 1px;
    }

    .nav-link {
        flex: 1;
        padding: 8px 6px;
        font-size: 12px;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none !important;
        transition: background-color 0.2s ease, color 0.2s ease !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }

    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus,
    .nav-link:visited {
        transform: none !important;
    }

    .nav-link::before {
        transform: none !important;
        transition: opacity 0.2s ease !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .name {
        font-size: 2.2rem;
    }

    .container {
        padding: 80px 10px 80px;
        min-height: calc(100vh - 40px);
    }

    .content {
        max-width: calc(100vw - 20px);
        padding: 0 5px;
    }

    .discord-card, .contact-item, .info-item {
        margin: 0 5px 12px 5px; 
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .info-item {
        padding: 14px;
        margin-bottom: 6px;
    }

    .discord-card {
        padding: 18px;
        margin-bottom: 16px;
    }

    .contact-item {
        padding: 18px;
        margin-bottom: 6px;
    }

    .contact-grid {
        gap: 10px;
        margin-bottom: 20px; 
    }

    .modal-content {
        max-width: 98vw;
        max-height: 95vh;
        margin: 10px;
    }

    .avatars-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 8px;
    }

    .preview-image {
        max-width: 250px;
        max-height: 250px;
    }

    .preview-content {
        padding: 20px;
        max-width: 95vw;
    }

    .container > .content > *:last-child {
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .content {
        max-width: 600px;
    }

    .avatars-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}
