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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #1c1c1e;
    --text-primary: #ffffff;
    --text-secondary: #98989d;
    --accent-blue: #ffffff;
    --accent-purple: #e8e8f0;
    --accent-pink: #d0d0d8;
    --glass-bg: rgba(28, 28, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Space Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: nebula 15s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: nebula 12s ease-in-out infinite reverse;
}

@keyframes nebula {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle linear infinite, drift linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(var(--drift-x), var(--drift-y)); }
}

/* Mouse Particle Trail */
.mouse-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--particle-x), var(--particle-y)) scale(0);
    }
}

/* Constellations */
.constellation-line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    animation: constellationPulse 4s ease-in-out infinite;
}

@keyframes constellationPulse {
    0%, 100% { 
        opacity: 0.6;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 24px rgba(200, 200, 200, 0.3));
    }
    50% { 
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 36px rgba(200, 200, 200, 0.4));
    }
}

.profile-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

/* Hero Island */
.hero-island {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 48px;
    padding: 48px;
    margin-bottom: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-island::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.04), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(200, 200, 200, 0.03), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 50%);
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
}

.avatar-container {
    position: relative;
    flex-shrink: 0;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 80px rgba(255, 255, 255, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 6px solid rgba(47, 49, 54, 0.8);
    transition: all 0.3s ease;
}

.status-online {
    background: linear-gradient(135deg, #34c759, #30d158);
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.status-idle {
    background: linear-gradient(135deg, #faa61a, #ff9f0a);
    box-shadow: 0 0 20px rgba(250, 166, 26, 0.6);
}

.status-dnd {
    background: linear-gradient(135deg, #ed4245, #f04747);
    box-shadow: 0 0 20px rgba(237, 66, 69, 0.6);
}

.status-offline {
    background: linear-gradient(135deg, #747f8d, #5c6370);
    box-shadow: 0 0 20px rgba(116, 127, 141, 0.4);
}

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

.hero-info {
    flex: 1;
}

.hero-quote {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 16px;
    max-width: 500px;
    overflow: hidden;
    max-height: 200px;
}

.hero-quote-text {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text-primary);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
    margin: 0;
    text-align: left;
}

.hero-quote-text.no-glow {
    text-shadow: none;
}

.lyrics-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.lyric-line {
    min-height: 40px;
    display: flex;
    align-items: center;
    transition: opacity 0.8s ease-out;
    width: 100%;
    max-width: 500px;
}

.lyric-line p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
    max-width: 100%;
    width: 100%;
    display: block;
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lyric-line.active p {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.lyric-line.past {
    opacity: 0.3;
    animation: fadeOut 0.8s ease-out forwards;
}

.lyric-line.past p {
    color: rgba(255, 255, 255, 0.2);
}

.lyric-line.future p {
    color: rgba(255, 255, 255, 0.25);
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.3;
    }
}

.profile-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(200, 200, 200, 0.1));
    color: white;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.badge-verified {
    background: linear-gradient(135deg, #34c759, #30d158);
    color: white;
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.4);
}

.profile-name {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 40px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(200, 200, 200, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

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

.social-btn.github {
    color: #ffffff;
}

.social-btn.twitter {
    color: #1da1f2;
}

.social-btn.youtube {
    color: #ff0000;
}

.social-btn.instagram {
    color: #e4405f;
}

.social-btn.tiktok {
    color: #ffffff;
}

.profile-username {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.profile-bio {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 600px;
}

.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

/* Control Center Grid - iOS Style */
.control-center {
    display: grid;
    column-gap: 8px;
    row-gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
}

.island-communities {
    grid-column: span 3;
}

.island-music {
    grid-column: span 1;
    align-self: start;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.island-clock {
    grid-column: 4;
    grid-row: 2;
    padding: 29px 16px !important;
    position: relative;
    top: -102px;
    margin-bottom: -102px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    height: fit-content;
    transition: top 0.3s ease, margin-bottom 0.3s ease;
}

/* Adjust clock position when music player is shorter (no progress bar) */
.island-clock.no-music {
    top: -140px;
    margin-bottom: -140px;
}

/* Clock Widget */
.clock-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    padding: 0;
    line-height: 1;
    text-align: center;
    width: 100%;
}

.clock-time {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1;
}

.clock-timezone {
    font-size: 10px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1;
}

.island-large {
    grid-column: span 2;
    grid-row: span 2;
}

.island-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.island-wide {
    grid-column: span 4;
    grid-row: span 1;
}

.island-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Island Cards */
.island {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 32px;
    padding: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--shadow-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.island::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.03), transparent 35%),
        radial-gradient(circle at 60% 70%, rgba(200, 200, 200, 0.02), transparent 35%);
    filter: blur(50px);
    opacity: 0.5;
    z-index: 0;
}

.island:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.island:hover::before {
    opacity: 0.7;
}

.island-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.island-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Roles */
.roles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.role {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    border: 1px solid;
}

.role:hover {
    transform: translateY(-2px) scale(1.05);
}

.role-founder {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.role-community {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.role-developer {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.role-strategist {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.hero-island::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.04), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(200, 200, 200, 0.03), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 50%);
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

@keyframes liquidMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10%, 10%) rotate(120deg); }
    66% { transform: translate(-10%, 5%) rotate(240deg); }
}

/* Skills */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Servers */
.servers-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.server-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(200, 200, 200, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-card:hover::before {
    opacity: 1;
}

.server-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.server-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.server-card-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

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

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

.server-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.server-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.server-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.server-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.server-role-badges {
    display: flex;
    gap: 4px;
    align-items: center;
}

.server-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.server-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.server-badge.owner-2rich {
    color: #aa3b3b;
}

.server-badge.owner-2rich::before {
    background: #aa3b3b;
}

.server-badge.founder {
    color: #ff9f0a;
}

.server-badge.founder::before {
    background: #ff9f0a;
}

.server-badge.developer {
    color: #34c759;
}

.server-badge.developer::before {
    background: #34c759;
}

.server-badge.owner-novacaine {
    color: #9b59b6;
}

.server-badge.owner-novacaine::before {
    background: #9b59b6;
}

.server-badge.developer-novacaine {
    color: #bf5af2;
}

.server-badge.developer-novacaine::before {
    background: #bf5af2;
}

.server-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.server-members {
    font-size: 12px;
    font-weight: 600;
}

.server-members .online {
    color: #34c759;
}

.server-members .total {
    color: #72767d;
}

/* Activity */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.activity-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Animations */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    80% {
        transform: translateY(2px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger animations */
.island:nth-child(1) { animation-delay: 0.1s; }
.island:nth-child(2) { animation-delay: 0.2s; }
.island:nth-child(3) { animation-delay: 0.3s; }
.island:nth-child(4) { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .control-center {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .island-communities {
        grid-column: span 2;
    }
    
    .island-music {
        grid-column: span 2;
    }
    
    .island-large {
        grid-column: span 2;
    }
    
    .island-medium {
        grid-column: span 1;
    }
    
    .island-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .profile-container {
        padding: 24px 16px;
    }
    
    .hero-island {
        padding: 32px 24px;
        border-radius: 32px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 36px;
    }
    
    .control-center {
        grid-template-columns: 1fr;
    }
    
    .island-communities,
    .island-music,
    .island-large,
    .island-medium,
    .island-wide {
        grid-column: span 1;
    }
    
    .island {
        padding: 24px;
        border-radius: 24px;
    }
    
    .server-card {
        flex-direction: column;
        text-align: center;
    }
    
    .server-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-island {
        padding: 24px 20px;
        border-radius: 28px;
    }
    
    .profile-name {
        font-size: 32px;
    }
    
    .island {
        padding: 20px;
    }
}

/* Music Player */
.music-player {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.album-art {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(200, 200, 200, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-art-placeholder {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.track-info {
    text-align: center;
    min-height: 44px;
}

.track-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-artist {
    font-size: 11px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.spotify-status {
    font-size: 10px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 4px;
    opacity: 0.7;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn-play {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn-play:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 4px;
}

.volume-control svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

.volume-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: white;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: white;
}
