* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
    box-sizing: border-box;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-particle,
    #cursor-dot,
    #cursor-trail {
        display: none !important;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #050505 0%, #0f0f0f 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.8s ease;
    cursor: pointer;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.click-text {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 2px;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.click-text:hover {
    transform: scale(1.05);
    color: #8b5cf6;
}

.loading-subtitle {
    font-size: 14px;
    color: #888;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.loading-indicator {
    margin-top: 20px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #555;
    border-radius: 50%;
    animation: loadingDots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
        background: #8b5cf6;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Cursor */
* {
    cursor: none !important;
}

#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
}

.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cursor-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, rgba(124, 58, 237, 0.8) 30%, rgba(109, 40, 217, 0.6) 60%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-fade 2s ease-out forwards;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.9), 0 0 16px rgba(124, 58, 237, 0.4);
    transform: translate(var(--random-x, 0), var(--random-y, 0));
}

@keyframes particle-fade {
    0% {
        opacity: 1;
        transform: scale(0.2) translate(0, 0);
    }
    30% {
        opacity: 0.9;
        transform: scale(0.6) translate(calc(var(--random-x, 0) * 0.3), calc(var(--random-y, 0) * 0.3));
    }
    70% {
        opacity: 0.6;
        transform: scale(1.0) translate(calc(var(--random-x, 0) * 0.7), calc(var(--random-y, 0) * 0.7));
    }
    100% {
        opacity: 0;
        transform: scale(1.5) translate(var(--random-x, 0), var(--random-y, 0));
    }
}

/* Animated Starry Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Profile Section */
.profile-section {
    text-align: center;
    width: 100%;
}

.profile-picture {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #333;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.profile-picture img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.profile-picture img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.profile-picture img:hover::before {
    opacity: 1;
}

/* Discord Badges */
.badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    min-height: 30px; /* Ensure space for badges */
}

.badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    border: none;
    transition: transform 0.2s ease;
}

.badge:hover {
    transform: scale(1.1);
}

.username {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    display: block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.username::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.username:hover {
    transform: translateY(-1px);
}

.username:hover::before {
    width: 50%;
}

/* Status Indicators */
.status-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.purple { background: #9c27b0; }
.status-dot.green { background: #4caf50; }
.status-dot.red { background: #f44336; }
.status-dot.blue { background: #2196f3; }
.status-dot.pink { background: #e91e63; }

.status-icon.monitor {
    width: 16px;
    height: 12px;
    background: #f44336;
    border-radius: 2px;
    position: relative;
}

.status-icon.monitor::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 3px;
    background: #f44336;
    border-radius: 0 0 2px 2px;
}

/* Featured Song Player */
.featured-song {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
}


.song-player {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.song-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.song-cover {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-placeholder {
    font-size: 24px;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.song-cover:hover {
    transform: scale(1.05);
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.song-info {
    flex: 1;
}

.song-label {
    font-size: 10px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.featured-icon {
    font-size: 12px;
    filter: brightness(1.2);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.2);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}

.song-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.song-artist {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 10px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.progress-bar {
    position: relative;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #1db954, #1ed760);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.song-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.control-btn {
    width: 32px;
    height: 32px;
    background: #333;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #555;
    transform: scale(1.05);
}

.control-btn svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 10px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #1db954, #1ed760);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.spotify-link {
    width: 40px;
    height: 40px;
    background: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spotify-link:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.spotify-link svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #2a2a2a;
    border-color: #555;
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn.youtube svg { color: #ff0000; }
.social-btn.tiktok svg { color: #000000; }

/* Discord Servers */
.discord-servers {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.server-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-card:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: #555;
}

.server-card:hover::before {
    opacity: 1;
}

.server-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.server-card:hover .server-icon {
    border-color: #555;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.server-info {
    flex: 1;
}

.server-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.server-card:hover .server-name {
    color: #ffffff;
}

.server-stats {
    display: flex;
    gap: 15px;
    font-size: 14px;
}

.server-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.server-stat.online {
    color: #4caf50;
}

.server-stat.members {
    color: #888;
}

.server-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.server-stat-dot.online {
    background: #4caf50;
}

.server-stat-dot.members {
    background: #666;
}

/* LunaRP Shop */
.shop-section {
    width: 100%;
    margin-top: 20px;
}

.shop-card {
    background: #1a1a1a;
    border: 2px dashed #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shop-card:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    border-color: #555;
}

.shop-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shop-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.shop-info {
    flex: 1;
}

.shop-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.shop-description {
    font-size: 14px;
    color: #888;
}

.shop-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-arrow svg {
    width: 20px;
    height: 20px;
    color: #888;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-arrow svg {
    transform: translateX(4px);
}

/* Remove footer styles - footer removed */

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .username {
        font-size: 28px;
    }
    
    .profile-picture img {
        width: 100px;
        height: 100px;
    }
    
    .cat-ears {
        width: 25px;
        height: 20px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-btn {
        justify-content: center;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
