 @import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;500;600;700&display=swap');
        
        /* Audio file variables */
        :root {
            --audio-track1: url('/audio/epic-gaming-mix.mp3');
            --audio-track2: url('/audio/cyber-beats.mp3');
            --audio-track3: url('/audio/neon-nights.mp3');
            --album-art1: url('/images/album-art1.jpg');
            --album-art2: url('/images/album-art2.jpg');
            --album-art3: url('/images/album-art3.jpg');
        }
        
        :root {
            --bg-gradient-onyx: linear-gradient(to bottom right, hsl(240, 1%, 25%) 3%, hsl(0, 0%, 19%) 97%);
            --bg-gradient-jet: linear-gradient(to bottom right, hsla(240, 1%, 18%, 0.251) 0%, hsla(240, 2%, 11%, 0) 100%), hsl(240, 2%, 13%);
            --bg-gradient-yellow-1: linear-gradient(to bottom right, hsl(45, 100%, 71%) 0%, hsla(36, 100%, 69%, 0) 50%);
            --bg-gradient-yellow-2: linear-gradient(135deg, hsla(45, 100%, 71%, 0.251) 0%, hsla(35, 100%, 68%, 0) 59.86%), hsl(240, 2%, 13%);
            --border-gradient-onyx: linear-gradient(to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 50%);
            --text-gradient-yellow: linear-gradient(to right, hsl(45, 100%, 72%), hsl(35, 100%, 68%));
            --jet: hsl(0, 0%, 22%);
            --onyx: hsl(240, 1%, 17%);
            --eerie-black-1: hsl(240, 2%, 13%);
            --eerie-black-2: hsl(240, 2%, 12%);
            --smoky-black: hsl(0, 0%, 7%);
            --white-1: hsl(0, 0%, 100%);
            --white-2: hsl(0, 0%, 98%);
            --orange-yellow-crayola: hsl(45, 100%, 72%);
            --vegas-gold: hsl(45, 54%, 58%);
            --light-gray: hsl(0, 0%, 84%);
            --light-gray-70: hsla(0, 0%, 84%, 0.7);
            --bittersweet-shimmer: hsl(0, 43%, 51%);
            --ff-oxanium: 'Oxanium', sans-serif;
            --fs-1: clamp(18px, 5vw, 22px);
            --fs-2: clamp(16px, 4vw, 18px);
            --fs-3: clamp(14px, 3.5vw, 16px);
            --fs-4: clamp(13px, 3.5vw, 15px);
            --fs-5: clamp(12px, 3vw, 14px);
            --fs-6: clamp(11px, 3vw, 13px);
            --fs-7: clamp(10px, 2.5vw, 12px);
            --fs-8: clamp(9px, 2vw, 11px);
            --fw-300: 300;
            --fw-400: 400;
            --fw-500: 500;
            --fw-600: 600;
            --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
            --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
            --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
            --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
            --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);
            --transition-1: 0.25s ease;
            --transition-2: 0.5s ease-in-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--ff-oxanium);
        }

        body {
            background: radial-gradient(circle at top left, #0a0a0a, #000);
            background-attachment: fixed;
            background-size: cover;
            color: var(--white-2);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding:2px;
            margin: 0;
        }

        .profile-card {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: clamp(15px, 3vw, 25px);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }


        /* Enhanced Responsive Breakpoints */
        @media (max-width: 1200px) {
            .profile-card {
                grid-template-columns: 1fr;
                max-width: 800px;
            }
            
            .sidebar, .content {
                width: 100%;
            }
        }
        
        @media (max-width: 992px) {
            .server-info {
                grid-template-columns: 1fr;
            }
            
            .badges-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            body {
                align-items: center;
            }
            .profile-card {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 10px;
                width: 95%;
            }

            .content {
                padding: 12px;
                margin: 5px 0;
            }

            .content-header {
                margin-bottom: 20px;
                padding-bottom: 10px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .content-title {
                font-size: var(--fs-2);
                padding-bottom: 5px;
            }

            .content-title::after {
                width: 30px;
                height: 2px;
            }

            .server-banner {
                height: 80px;
                margin-bottom: 15px;
            }

            .server-banner h2 {
                font-size: clamp(1.2rem, 5vw, 1.5rem);
            }

            .server-stats {
                gap: 10px;
                margin-bottom: 15px;
            }

            .server-stat {
                padding: 8px;
            }

            .server-stat-value {
                font-size: 1.2rem;
                margin-bottom: 3px;
            }

            .server-stat-label {
                font-size: 0.75rem;
            }

            .mb-6 {
                margin-bottom: 1rem !important;
            }

            .text-lg {
                font-size: var(--fs-3) !important;
            }

            .mb-4 {
                margin-bottom: 0.75rem !important;
            }

            .games-grid {
                gap: 12px;
                margin-bottom: 20px;
            }

            .game-card {
                width: 120px;
            }

            .game-icon {
                height: 80px;
                font-size: 32px;
            }

            .game-name {
                padding: 10px 8px;
                font-size: var(--fs-6);
            }

            .badges-container {
                margin-bottom: 20px;
            }

            .badge {
                min-height: 120px;
                padding: 15px;
                width: 100px;
            }

            .badge-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 10px;
            }

            .badge-image {
                width: 40px;
                height: 40px;
            }

            .badge-name {
                font-size: var(--fs-7);
            }

            .action-buttons {
                gap: 10px;
                margin-top: 20px;
            }

            .btn {
                padding: 10px 6px;
                font-size: var(--fs-6);
                min-width: 100px;
            }

            .btn ion-icon {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 480px) {
            .profile-card {
                gap: 10px;
                padding: 5px;
            }

            .content {
                padding: 10px;
                margin: 3px 0;
            }

            .content-header {
                margin-bottom: 15px;
                gap: 8px;
            }

            .content-title {
                font-size: var(--fs-3);
            }

            .server-banner {
                height: 70px;
                margin-bottom: 12px;
            }

            .server-banner h2 {
                font-size: clamp(1rem, 4vw, 1.2rem);
            }

            .server-stats {
                gap: 4px;
                margin-bottom: 12px;
            }

            .server-stat {
                padding: 8px;
            }

            .server-stat-value {
                font-size: 1rem;
            }

            .server-stat-label {
                font-size: 0.7rem;
            }

            .mb-6 {
                margin-bottom: 0.75rem !important;
            }

            .text-lg {
                font-size: var(--fs-4) !important;
            }

            .mb-4 {
                margin-bottom: 0.5rem !important;
            }

            .games-grid {
                gap: 10px;
                margin-bottom: 15px;
            }

            .game-card {
                width: 100px;
            }

            .game-icon {
                height: 70px;
                font-size: 28px;
            }

            .game-name {
                padding: 8px 6px;
                font-size: var(--fs-7);
            }

            .badges-container {
                margin-bottom: 15px;
            }

            .badge {
                min-height: 100px;
                padding: 12px;
                width: 85px;
            }

            .badge-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 8px;
            }

            .badge-image {
                width: 32px;
                height: 32px;
            }

            .badge-name {
                font-size: var(--fs-8);
            }

            .action-buttons {
                flex-direction: column;
                gap: 8px;
                margin-top: 15px;
            }

            .btn {
                padding: 8px 4px;
                font-size: var(--fs-7);
                min-width: 80px;
            }

            .btn ion-icon {
                width: 14px;
                height: 14px;
            }
        }

        .sidebar, .content {
            background: var(--eerie-black-2);
            border: 1px solid var(--jet);
            border-radius: 12px;
            padding: 0;
            margin: 0;
            box-shadow: var(--shadow-1);
            z-index: 1;
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .sidebar::before, .content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--text-gradient-yellow);
            z-index: 2;
        }

        .profile-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .avatar-container {
            width: clamp(100px, 30vw, 150px);
            height: clamp(100px, 30vw, 150px);
            margin: 0 auto 20px;
            position: relative;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid transparent;
            background: var(--border-gradient-onyx);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            transition: transform 0.3s ease;
            margin-top: 20px;
        }

        .avatar-container:hover {
            transform: scale(1.05);
        }

        .avatar-container::before {
            content: '';
            position: absolute;
            inset: 2px;
            background: var(--bg-gradient-jet);
            border-radius: 50%;
            z-index: -1;
        }

        .avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .username {
            display: inline-block;
            font-size: var(--fs-1);
            font-weight: var(--fw-600);
            margin-bottom: 15px;
            background: var(--text-gradient-yellow);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }

        .server-name {
            color: var(--light-gray);
            font-size: var(--fs-4);
            margin-bottom: 1px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
            border-radius: 12px;
            background: var(--bg-gradient-jet);
            transition: var(--transition-1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-3);
        }

        .stat-value {
            font-size: var(--fs-2);
            font-weight: var(--fw-600);
            margin-bottom: 5px;
            color: var(--orange-yellow-crayola);
        }

        .stat-label {
            font-size: var(--fs-6);
            color: var(--light-gray-70);
        }

        .social-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--border-gradient-onyx);
            color: var(--orange-yellow-crayola);
            transition: var(--transition-1);
            position: relative;
            text-decoration: none;
            padding: 0;
        }

        .social-link ion-icon {
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .social-link::before {
            content: '';
            position: absolute;
            inset: 1px;
            background: var(--bg-gradient-jet);
            border-radius: 9px;
            z-index: -1;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-3);
            color: var(--white-1);
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: var(--transition-1);
            background: var(--bg-gradient-jet);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }

        .hidden-mobile-nav {
            display: block;
        }

        @media (max-width: 768px) {
            .hidden-mobile-nav {
                display: none;
                opacity: 0;
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s ease;
            }

            .hidden-mobile-nav.expanded {
                display: block;
                opacity: 1;
                max-height: 500px;
            }
            
            .show-more-btn {
                display: flex;
            }
        }

        @media (min-width: 769px) {
            .show-more-btn {
                display: none;
            }
        }

        .show-more-btn .nav-icon ion-icon {
            transition: transform 0.3s ease;
        }

        .show-more-btn.active .nav-icon ion-icon {
            transform: rotate(180deg);
        }

        .nav-item:hover, .nav-item.active {
            background: var(--bg-gradient-yellow-2);
        }

        .nav-item.active::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: var(--text-gradient-yellow);
        }

        .nav-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--border-gradient-onyx);
            color: var(--orange-yellow-crayola);
            position: relative;
        }

        .nav-icon::before {
            content: '';
            position: absolute;
            inset: 1px;
            background: var(--eerie-black-1);
            border-radius: 7px;
            z-index: -1;
        }

        .nav-icon ion-icon {
            width: 20px;
            height: 20px;
        }

        .nav-text {
            font-size: var(--fs-4);
            font-weight: var(--fw-500);
        }

        .content {
            display: flex;
            flex-direction: column;
        }

        .content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--jet);
        }

        .content-title {
            font-size: var(--fs-1);
            font-weight: var(--fw-600);
            position: relative;
            padding-bottom: 10px;
        }

        .content-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--text-gradient-yellow);
            border-radius: 3px;
        }

        .server-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (max-width: 480px) {
            .server-info {
                grid-template-columns: 1fr;
            }
        }

        .info-card {
            padding: 20px;
            border-radius: 15px;
            background: var(--bg-gradient-jet);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-3);
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--text-gradient-yellow);
        }

        .info-title {
            font-size: var(--fs-5);
            color: var(--light-gray-70);
            margin-bottom: 10px;
        }

        .info-value {
            font-size: var(--fs-3);
            font-weight: var(--fw-500);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 30px;
            justify-items: center;
        }

        .game-card {
            width: 140px;
            background: var(--bg-gradient-jet);
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            transition: var(--transition-1);
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-3);
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--text-gradient-yellow);
        }

        .game-icon {
            width: 100%;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--orange-yellow-crayola);
            background: var(--bg-gradient-yellow-2);
        }

        .game-name {
            padding: 15px 10px;
            font-size: var(--fs-5);
            font-weight: var(--fw-500);
        }

        .games-grid.auto-scroll {
            display: flex;
            gap: 15px;
            animation: scrollLeft 20s linear infinite;
            width: max-content;
        }

        .badges-container {
            margin-bottom: 30px;
        }

        .badges-scroll-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .badges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 15px;
            width: max-content;
            padding-bottom: 15px;
        }

        .badges-grid.auto-scroll {
            display: flex;
            gap: 15px;
            animation: scrollRight 20s linear infinite;
            width: max-content;
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .games-grid:hover.auto-scroll,
        .badges-scroll-container:hover .badges-grid.auto-scroll {
            animation-play-state: paused;
        }

        .badge {
            background: var(--bg-gradient-jet);
            border-radius: 10px;
            padding: 20px;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            width: 120px;
        }

        .badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-3);
        }

        .badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--text-gradient-yellow);
        }

        .badge-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
            margin: 0 auto 15px;
        }

        .badge-image {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 50%;
            filter: brightness(1.2) contrast(1.1) saturate(1.2);
            transition: all 0.3s ease;
        }

        .badge:hover .badge-icon {
            background: rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.4);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            animation: badgePulse 0.6s ease;
        }

        .badge:hover .badge-image {
            filter: brightness(1.4) contrast(1.2) saturate(1.4);
            transform: scale(1.05);
        }

        @keyframes badgePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.15); }
            100% { transform: scale(1.1); }
        }

        .badge-name {
            font-size: var(--fs-6);
            font-weight: var(--fw-500);
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
            width: 100%;
            flex-wrap: wrap;
        }

        .btn {
            flex: 1;
            min-width: 120px;
            padding: 12px 8px;
            border-radius: 10px;
            font-weight: var(--fw-600);
            font-size: var(--fs-5);
            text-align: center;
            cursor: pointer;
            transition: var(--transition-1);
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            gap: 8px;
            border: none;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--text-gradient-yellow);
            color: var(--smoky-black);
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .btn-secondary {
            background: var(--bg-gradient-jet);
            color: var(--orange-yellow-crayola);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary:hover {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .btn ion-icon {
            width: 18px;
            height: 18px;
        }

        .mobile-header {
            display: none;
            padding: 20px;
            text-align: center;
            margin-bottom: 0;
            width: 100%;
        }

        @media (max-width: 768px) {
            .mobile-header {
                display: block;
            }
            .sidebar .profile-header {
                display: none;
            }
        }

        .level-indicator {
            position: relative;
            width: 100%;
            height: 8px;
            background: var(--jet);
            border-radius: 4px;
            margin-top: 5px;
            overflow: hidden;
        }

        .level-progress {
            position: absolute;
            height: 100%;
            background: var(--text-gradient-yellow);
            border-radius: 4px;
            width: 75%;
            transition: width 1.5s ease-out;
        }

        @keyframes progress-grow {
            from { width: 0%; }
            to { width: 75%; }
        }

        .server-status {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4CAF50;
            box-shadow: 0 0 8px #4CAF50;
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .server-banner {
            width: 100%;
            height: 100px;
            margin: 10px 0;
            background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
            border-radius: clamp(10px, 2vw, 12px);
            margin-bottom: clamp(15px, 3vw, 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .server-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
            opacity: 0.2;
        }

        .server-banner h2 {
            display: inline-block;
            font-size: clamp(1.5rem, 6vw, 2rem);
            font-weight: 700;
            background: var(--text-gradient-yellow);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            z-index: 1;
            transition: transform 0.3s ease;
            padding: 0 10px;
            text-align: center;
        }

        .server-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .server-stat {
            background: var(--bg-gradient-jet);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .server-stat:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-3);
        }

        .server-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--orange-yellow-crayola);
            margin-bottom: 5px;
        }

        .server-stat-label {
            font-size: 0.85rem;
            color: var(--light-gray-70);
        }

        .tooltip {
            position: relative;
            display: inline-block;
        }

        /* Enhanced Tooltip Styles */
        .tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        
        .tooltip .tooltiptext {
            visibility: hidden;
            width: max-content;
            max-width: 200px;
            background-color: var(--jet);
            color: var(--white-1);
            text-align: center;
            border-radius: 8px;
            padding: 8px 12px;
            position: absolute;
            z-index: 100;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            font-size: var(--fs-7);
            box-shadow: var(--shadow-3);
            border: 1px solid var(--orange-yellow-crayola);
            pointer-events: none;
        }
        
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
            transform: translateX(-50%) translateY(-5px);
        }
        
        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 6px;
            border-style: solid;
            border-color: var(--orange-yellow-crayola) transparent transparent transparent;
        }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--jet) transparent transparent transparent;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

        .server-banner:hover h2 {
            transform: scale(1.05);
        }

        .server-banner:hover {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .game-card:hover .game-icon {
            animation: pulse-icon 0.5s ease;
        }

        @keyframes pulse-icon {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--bittersweet-shimmer);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            box-shadow: 0 0 5px rgba(0,0,0,0.5);
        }

        .server-owner-tag {
            display: inline-block;
            background: var(--text-gradient-yellow);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid rgba(255,215,0,0.3);
        }

        /* Enhanced Music Player Styles */
        .music-visualizer {
            display: flex;
            align-items: center;
            gap: 2px;
            height: 20px;
        }

        .music-visualizer .bar {
            width: 3px;
            background: var(--text-gradient-yellow);
            border-radius: 2px;
            animation: musicBars 1.5s infinite ease-in-out;
        }

        .music-visualizer .bar:nth-child(1) { animation-delay: 0s; height: 8px; }
        .music-visualizer .bar:nth-child(2) { animation-delay: 0.1s; height: 15px; }
        .music-visualizer .bar:nth-child(3) { animation-delay: 0.2s; height: 12px; }
        .music-visualizer .bar:nth-child(4) { animation-delay: 0.3s; height: 18px; }

        @keyframes musicBars {
            0%, 40%, 100% { transform: scaleY(0.3); opacity: 0.5; }
            20% { transform: scaleY(1); opacity: 1; }
        }

        .music-player-card {
            background: linear-gradient(135deg, var(--eerie-black-2) 0%, var(--jet) 100%);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.4),
                inset 0 1px 0 rgba(255,255,255,0.1);
            border: 1px solid rgba(255,215,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .music-player-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--text-gradient-yellow);
        }

        .music-player-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, 
                rgba(255,215,0,0.05) 0%, 
                transparent 50%);
            pointer-events: none;
        }

        .music-header {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 20px;
            align-items: center;
            margin-bottom: 25px;
        }

        .album-art-container {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .album-art {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .album-art-container:hover .album-art {
            transform: scale(1.05);
        }

        .album-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .album-art-container:hover .album-overlay {
            opacity: 1;
        }

        .album-icon {
            color: var(--orange-yellow-crayola);
            font-size: 24px;
        }

        .vinyl-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--eerie-black-1);
            border: 2px solid var(--orange-yellow-crayola);
        }

        .track-info {
            min-width: 0;
        }

        .track-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white-1);
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .track-artist {
            font-size: 0.9rem;
            color: var(--orange-yellow-crayola);
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .track-meta {
            display: flex;
            gap: 15px;
            font-size: 0.75rem;
            color: var(--light-gray-70);
        }

        .player-actions {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            width: 35px;
            height: 35px;
            border-radius: 8px;
            background: rgba(255,215,0,0.1);
            border: 1px solid rgba(255,215,0,0.2);
            color: var(--orange-yellow-crayola);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: rgba(255,215,0,0.2);
            border-color: rgba(255,215,0,0.4);
            transform: translateY(-2px);
        }

        .action-btn.active {
            background: var(--orange-yellow-crayola);
            color: var(--eerie-black-1);
            border-color: var(--orange-yellow-crayola);
        }

        .progress-section {
            margin-bottom: 25px;
        }

        .time-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.8rem;
        }

        .time-current {
            color: var(--orange-yellow-crayola);
            font-weight: 500;
        }

        .time-total {
            color: var(--light-gray-70);
        }

        .progress-container {
            position: relative;
            height: 6px;
            cursor: pointer;
        }

        .progress-track {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--jet);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--text-gradient-yellow);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s ease;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 20px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-20px); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(20px); opacity: 0; }
        }

        .progress-thumb {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 14px;
            height: 14px;
            background: var(--orange-yellow-crayola);
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(255,215,0,0.4);
            opacity: 0;
            transition: opacity 0.3s ease;
            left: 0%;
        }

        .progress-container:hover .progress-thumb {
            opacity: 1;
        }

        .progress-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            margin: 0;
        }

        .controls-section {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: center;
            margin-bottom: 20px;
        }

        .volume-section {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-self: start;
        }

        .volume-icon {
            color: var(--orange-yellow-crayola);
            font-size: 16px;
        }

        .volume-container {
            position: relative;
            width: 80px;
            height: 4px;
        }

        .volume-track {
            width: 100%;
            height: 4px;
            background: var(--jet);
            border-radius: 2px;
            overflow: hidden;
        }

        .volume-fill {
            height: 100%;
            background: var(--text-gradient-yellow);
            border-radius: 2px;
            width: 70%;
            transition: width 0.1s ease;
        }

        .volume-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            margin: 0;
        }

        .main-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-self: center;
        }

        .control-btn {
            border: none;
            background: none;
            color: var(--orange-yellow-crayola);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .prev-btn, .next-btn {
            width: 45px;
            height: 45px;
            background: rgba(255,215,0,0.1);
            border: 1px solid rgba(255,215,0,0.2);
        }

        .prev-btn:hover, .next-btn:hover {
            background: rgba(255,215,0,0.2);
            border-color: rgba(255,215,0,0.4);
            transform: scale(1.05);
        }

        .play-btn {
            width: 60px;
            height: 60px;
            background: var(--text-gradient-yellow);
            color: var(--eerie-black-1);
            font-size: 24px;
            box-shadow: 0 8px 25px rgba(255,215,0,0.3);
        }

        .play-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(255,215,0,0.4);
        }

        .playlist-section {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-self: end;
        }

        .playlist-icon {
            color: var(--orange-yellow-crayola);
            font-size: 16px;
        }

        .track-selector {
            background: rgba(255,215,0,0.1);
            border: 1px solid rgba(255,215,0,0.2);
            color: var(--orange-yellow-crayola);
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .track-selector:hover {
            background: rgba(255,215,0,0.2);
            border-color: rgba(255,215,0,0.4);
        }

        .track-selector:focus {
            outline: none;
            border-color: var(--orange-yellow-crayola);
            box-shadow: 0 0 0 2px rgba(255,215,0,0.2);
        }

        .spectrum-analyzer {
            display: flex;
            justify-content: center;
            align-items: end;
            gap: 3px;
            height: 40px;
            margin-top: 15px;
            padding: 10px;
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
        }

        .spectrum-bar {
            width: 4px;
            background: var(--text-gradient-yellow);
            border-radius: 2px;
            animation: spectrum 1.5s infinite ease-in-out;
            animation-delay: var(--delay);
            min-height: 4px;
        }

        @keyframes spectrum {
            0%, 100% { height: 4px; opacity: 0.3; }
            50% { height: 30px; opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .music-header {
                grid-template-columns: auto 1fr;
                gap: 12px;
            }

            .player-actions {
                grid-column: 1 / -1;
                justify-content: center;
                margin-top: 12px;
                gap: 8px;
            }

            .controls-section {
                grid-template-columns: 1fr;
                gap: 12px;
                text-align: center;
            }

            .volume-section {
                justify-self: center;
                order: 3;
            }

            .main-controls {
                order: 1;
                gap: 10px;
            }

            .playlist-section {
                justify-self: center;
                order: 2;
            }

            .volume-container {
                width: 80px;
            }

            .music-player-card {
                padding: 15px;
                margin-bottom: 20px;
            }

            .progress-section {
                margin-bottom: 15px;
            }

            .spectrum-analyzer {
                height: 30px;
                margin-top: 10px;
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            .album-art-container {
                width: 50px;
                height: 50px;
            }

            .music-player-card {
                padding: 12px;
            }

            .track-title {
                font-size: 0.9rem;
            }

            .track-artist {
                font-size: 0.75rem;
            }

            .music-header {
                gap: 10px;
            }

            .player-actions {
                gap: 6px;
            }

            .action-btn {
                width: 30px;
                height: 30px;
            }

            .controls-section {
                gap: 10px;
            }

            .main-controls {
                gap: 8px;
            }

            .prev-btn, .next-btn {
                width: 35px;
                height: 35px;
            }

            .play-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .track-selector {
                font-size: 0.75rem;
                padding: 6px 8px;
                min-width: 100px;
            }

            .spectrum-analyzer {
                height: 25px;
                gap: 2px;
            }

            .spectrum-bar {
                width: 3px;
            }
        }

        /* Pulse animation for music icon */

        /* About section mobile optimization */
        .about-section {
            font-size: var(--fs-5);
        }

        .about-features {
            margin-top: 15px;
        }

        .about-features .flex {
            align-items: flex-start;
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 15px;
                font-size: var(--fs-6);
            }

            .about-section p {
                margin-bottom: 12px;
                line-height: 1.5;
            }

            .about-features {
                margin-top: 12px;
            }

            .about-features .flex {
                margin-bottom: 8px;
                font-size: var(--fs-7);
            }

            .about-features ion-icon {
                margin-right: 8px;
                font-size: 14px;
                margin-top: 2px;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 12px;
                font-size: 0.8rem;
            }

            .about-section p {
                margin-bottom: 10px;
                line-height: 1.4;
            }

            .about-features .flex {
                font-size: 0.75rem;
                margin-bottom: 6px;
            }

            .about-features ion-icon {
                font-size: 12px;
                margin-right: 6px;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Focus styles for better accessibility */
        .btn:focus,
        .control-btn:focus,
        .action-btn:focus,
        .social-link:focus,
        .nav-item:focus {
            outline: 2px solid var(--orange-yellow-crayola);
            outline-offset: 2px;
        }

        /* Reduced motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }