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

        :root {
            --text-color: #e0e0e0;
            --bg-color: #121212;
            --card-bg: #1e1e1e;
            --shadow-color: rgba(0, 0, 0, 0.3);
            --transition: all 0.4s ease;
        }

        html {
            overflow: hidden;
            height: 100%;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            background-color: var(--bg-color);
            overflow-y: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
            -webkit-touch-callout: none;
        }

        body::-webkit-scrollbar {
            display: none;
        }

        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.2;
            object-fit: cover;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        .container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            padding: 0;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
            position: relative;
            padding-top: 60px;
            padding-bottom: 80px;
            justify-content: center;
            gap: 20px;
        }

        .controls-container {
            position: fixed;
            top: 20px;
            left: 20px;
            display: flex;
            gap: 15px;
            z-index: 10;
            animation: fadeInButton 0.6s ease-out 0.3s forwards;
            opacity: 0;
        }

        .audio-control {
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 12px;
            padding: 8px;
            padding-left: 15px;
            box-shadow: 0 5px 15px var(--shadow-color);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0;
            transition: var(--transition);
            overflow: hidden;
            width: 30px;
            height: 35px;
            position: relative;
        }

        .audio-control:hover,
        .audio-control.dragging {
            width: 210px;
        }

        .audio-icon {
            font-size: 1rem;
            color: var(--text-color);
            flex-shrink: 0;
            width: 19px;
            height: 19px;
            text-align: center;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 0;
        }

        .audio-control:hover .audio-icon {
            color: white;
        }

        .volume-slider {
            display: flex;
            align-items: center;
            margin-left: 10px;
            opacity: 0;
            width: 0;
            transition: all 0.4s ease;
            position: relative;
            height: 4px;
        }

        .audio-control:hover .volume-slider,
        .audio-control.dragging .volume-slider {
            opacity: 1;
            width: 150px;
        }

        .volume-track {
            position: relative;
            width: 100%;
            height: 4px;
            background: transparent;
            cursor: pointer;
            padding: 14px 0;
            margin: -14px 0;
        }

        .volume-track::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        .volume-fill {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 4px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
            border-radius: 3px;
            width: 50%;
            transition: width 0.1s ease;
            z-index: 1;
        }

        @keyframes fadeInButton {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .profile-card {
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 30px;
            padding-top: 100px;
            padding-bottom: 40px;
            position: relative;
            z-index: 1;
            width: calc(100% - 40px);
            max-width: 600px;
            margin: 0 10px;
            box-sizing: border-box;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeIn 0.6s ease-out;
        }

        .profile-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            position: absolute;
            top: -70px;
            left: 35px;
            margin-bottom: 0;
        }

        .page-views {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            font-size: 0.95rem;
            color: var(--text-color);
            cursor: pointer;
        }

        .page-views i {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
        }

        .page-views span {
            font-weight: 550;
            font-size: 14px;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.6),
                         0 0 15px rgba(255, 255, 255, 0.4);
        }

        .page-views-tooltip {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(20, 20, 20, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            color: white;
            padding: 8px 14px;
            border-radius: 12px;
            font-size: 0.85rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            pointer-events: none;
        }

        .page-views:hover .page-views-tooltip {
            opacity: 1;
            visibility: visible;
        }

        .avatar {
            width: 110px;
            height: 110px;
            border-radius: 14px;
            object-fit: cover;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        .username {
            margin: 0;
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            text-align: left;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
                         0 0 20px rgba(255, 255, 255, 0.4);
            transition: transform 0.3s ease;
            cursor: default;
        }

        .username:hover {
            transform: scale(1.05);
        }

        .realname {
            margin: 0;
            margin-bottom: 10px;
            font-size: 1.2rem;
            font-weight: 400;
            color: #aaa;
            text-align: left;
            transition: transform 0.3s ease;
            cursor: default;
        }

        .realname:hover {
            transform: scale(1.05);
        }

        .social-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 20px;
            width: 100%;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(1);
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
                    drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
        }

        .social-link:active {
            transform: scale(0.95);
        }

        .social-link i {
            font-size: 1.8rem;
            transition: var(--transition);
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        }

        .social-link svg {
            transition: var(--transition);
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        }

        .social-link:hover i {
            transform: scale(1.15);
            color: #ffffff;
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
                    drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
        }

        .social-link:hover svg {
            transform: scale(1.15);
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
                    drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
        }

        .footer {
            width: 100%;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
            padding: 20px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 5;
        }

        .soon {
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 20px 30px;
            position: relative;
            z-index: 1;
            width: calc(100% - 40px);
            max-width: 600px;
            margin: 0 20px;
            box-sizing: border-box;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeIn 0.6s ease-out;
            animation-delay: 0.2s;
            opacity: 0;
            animation-fill-mode: forwards;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .soon-text {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                         0 0 40px rgba(255, 255, 255, 0.4);
            transform: skewY(-3deg);
            margin: 0;
            letter-spacing: 0.05em;
        }

        .dots {
            display: inline-block;
        }

        .dot {
            animation: dotFade 1.5s ease-in-out infinite;
            opacity: 0;
        }

        .dot:nth-child(1) {
            animation-delay: 0s;
        }

        .dot:nth-child(2) {
            animation-delay: 0.3s;
        }

        .dot:nth-child(3) {
            animation-delay: 0.6s;
        }

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

        @media (max-width: 768px) {
            .container {
                padding: 0;
                padding-top: 70px;
                padding-bottom: 70px;
            }

            .controls-container {
                top: 15px;
                left: 15px;
                gap: 8px;
            }

            .audio-control {
                width: 32px;
                height: 32px;
            }

            .audio-control:hover,
            .audio-control.dragging {
                width: 170px;
            }

            .profile-card {
                padding: 25px;
                padding-top: 120px;
                max-width: 100%;
                border-radius: 16px;
                width: calc(100% - 50px);
                margin: 0 25px;
            }

            .profile-header {
                top: -60px;
                left: 50%;
                transform: translateX(-50%);
                align-items: center;
                gap: 12px;
            }

            .page-views {
                top: 12px;
                right: 12px;
                font-size: 0.85rem;
                gap: 6px;
            }

            .page-views-tooltip {
                top: -45px;
                font-size: 0.8rem;
                padding: 6px 10px;
            }

            .avatar {
                width: 120px;
                height: 120px;
                border-radius: 14px;
                left: 0;
                transform: none;
            }

            .username {
                font-size: 1.7rem;
                text-align: center;
            }

            .realname {
                font-size: 1.05rem;
                text-align: center;
                margin-bottom: 15px;
            }

            .social-links {
                gap: 15px;
                margin-top: 25px;
            }

            .social-link {
                width: 44px;
                height: 44px;
            }

            .social-link i {
                font-size: 1.5rem;
            }

            .social-link svg {
                width: 2.1rem !important;
                height: 2.1rem !important;
            }

            .footer {
                font-size: 0.8rem;
                padding: 15px 10px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0;
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .controls-container {
                top: 12px;
                left: 12px;
                gap: 6px;
            }

            .audio-control {
                width: 30px;
                height: 30px;
                padding: 6px;
            }

            .audio-icon {
                font-size: 0.85rem;
                margin-left: 4px;
            }

            .audio-control:hover,
            .audio-control.dragging {
                width: 150px;
            }

            .audio-control:hover .volume-slider,
            .audio-control.dragging .volume-slider {
                width: 110px;
            }

            .profile-card {
                padding: 20px;
                padding-top: 100px;
                border-radius: 14px;
                width: calc(100% - 40px);
                margin: 0 20px;
            }

            .profile-header {
                top: -55px;
                left: 50%;
                transform: translateX(-50%);
                gap: 10px;
            }

            .avatar {
                width: 100px;
                height: 100px;
                border-radius: 12px;
            }

            .username {
                font-size: 1.5rem;
            }

            .realname {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            .page-views {
                font-size: 0.8rem;
                top: 10px;
                right: 10px;
                gap: 6px;
            }

            .page-views i {
                font-size: 1rem;
            }

            .page-views-tooltip {
                top: -42px;
                font-size: 0.75rem;
                padding: 6px 10px;
            }

            .social-links {
                gap: 12px;
                margin-top: 22px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .social-link i {
                font-size: 1.3rem;
            }

            .social-link svg {
                width: 1.8rem !important;
                height: 1.8rem !important;
            }

            .footer {
                font-size: 0.75rem;
                padding: 12px 5px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0;
                padding-top: 50px;
                padding-bottom: 50px;
            }

            .controls-container {
                top: 10px;
                left: 10px;
            }

            .audio-control {
                width: 28px;
                height: 28px;
            }

            .audio-control:hover,
            .audio-control.dragging {
                width: 135px;
            }

            .audio-control:hover .volume-slider,
            .audio-control.dragging .volume-slider {
                width: 95px;
            }

            .profile-card {
                padding: 18px;
                padding-top: 90px;
                border-radius: 12px;
                width: calc(100% - 30px);
                margin: 0 15px;
            }

            .profile-header {
                top: -50px;
                left: 50%;
                transform: translateX(-50%);
                gap: 8px;
            }

            .avatar {
                width: 85px;
                height: 85px;
                border-radius: 10px;
            }

            .username {
                font-size: 1.35rem;
            }

            .realname {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .page-views {
                font-size: 0.75rem;
                gap: 5px;
                top: 8px;
                right: 8px;
            }

            .page-views i {
                font-size: 0.9rem;
            }

            .page-views-tooltip {
                font-size: 0.7rem;
                padding: 5px 8px;
            }

            .social-links {
                gap: 10px;
                margin-top: 18px;
            }

            .social-link {
                width: 38px;
                height: 38px;
            }

            .social-link i {
                font-size: 1.15rem;
            }

            .social-link svg {
                width: 1.6rem !important;
                height: 1.6rem !important;
            }

            .footer {
                font-size: 0.7rem;
                padding: 10px 5px;
            }
        }

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

        .social-link {
            animation: fadeIn 0.6s ease-out;
            animation-fill-mode: both;
        }

        .social-link:nth-child(1) { animation-delay: 0.1s; }
        .social-link:nth-child(2) { animation-delay: 0.2s; }
        .social-link:nth-child(3) { animation-delay: 0.3s; }
        .social-link:nth-child(4) { animation-delay: 0.4s; }
        .social-link:nth-child(5) { animation-delay: 0.5s; }
        .social-link:nth-child(6) { animation-delay: 0.6s; }
        .social-link:nth-child(7) { animation-delay: 0.7s; }

        /* Discord Status */
        .avatar-container {
            position: relative;
            display: inline-block;
        }

        .discord-status {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 3px solid #1e1e1e;
            z-index: 2;
        }

        .discord-status.online {
            background-color: #43b581;
        }

        .discord-status.idle {
            background-color: #faa61a;
        }

        .discord-status.dnd {
            background-color: #f04747;
        }

        .discord-status.offline {
            background-color: #747f8d;
        }

        .discord-activity {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 5px;
            text-align: center;
        }

        /* Spotify Container */
        .spotify-container {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            margin: 20px 0;
            background: rgba(30, 215, 96, 0.1);
            border: 1px solid rgba(30, 215, 96, 0.3);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            animation: fadeIn 0.6s ease-out;
        }

        .spotify-album {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
        }

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

        .spotify-label {
            font-size: 0.75rem;
            color: #1DB954;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .spotify-track {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .spotify-artist {
            font-size: 0.85rem;
            color: #b3b3b3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media (max-width: 768px) {
            .discord-status {
                width: 16px;
                height: 16px;
                border-width: 2px;
                bottom: 3px;
                right: 3px;
            }

            .spotify-container {
                padding: 12px;
                margin: 15px 0;
                gap: 12px;
            }

            .spotify-album {
                width: 50px;
                height: 50px;
            }

            .spotify-track {
                font-size: 0.9rem;
            }

            .spotify-artist {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .discord-status {
                width: 14px;
                height: 14px;
            }

            .spotify-container {
                padding: 10px;
                gap: 10px;
            }

            .spotify-album {
                width: 45px;
                height: 45px;
            }
        }
