/* WEB PANEL PROXY public CSS */
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(-45deg, #18052b, #311042, #0d021a, #49103c);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            color: #ffffff;
            position: relative;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* --- Падающая сакура --- */
        .sakura-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .petal {
            position: absolute;
            background: #ffb7c5;
            border-radius: 150% 0 150% 150%;
            opacity: 0.7;
            animation: fall linear infinite, sway ease-in-out infinite;
            box-shadow: 0 0 8px rgba(255, 183, 197, 0.4);
        }

        @keyframes fall {
            0% { top: -10%; transform: translateX(0) rotate(0deg); }
            100% { top: 110%; transform: translateX(100px) rotate(360deg); }
        }

        @keyframes sway {
            0%, 100% { margin-left: 0px; }
            50% { margin-left: 40px; }
        }

        .petal:nth-child(1) { width: 12px; height: 8px; left: 10%; animation-duration: 7s, 3s; animation-delay: 0s; }
        .petal:nth-child(2) { width: 15px; height: 10px; left: 25%; animation-duration: 9s, 4s; animation-delay: 1s; opacity: 0.5; }
        .petal:nth-child(3) { width: 10px; height: 7px; left: 40%; animation-duration: 6s, 2.5s; animation-delay: 2s; }
        .petal:nth-child(4) { width: 14px; height: 10px; left: 55%; animation-duration: 11s, 5s; animation-delay: 0.5s; opacity: 0.4; }
        .petal:nth-child(5) { width: 12px; height: 8px; left: 70%; animation-duration: 8s, 3.5s; animation-delay: 3s; }
        .petal:nth-child(6) { width: 16px; height: 11px; left: 85%; animation-duration: 10s, 4.5s; animation-delay: 1.5s; }
        .petal:nth-child(7) { width: 11px; height: 8px; left: 93%; animation-duration: 7s, 3s; animation-delay: 2.5s; }

        /* --- Карточка --- */
        .placeholder-container {
            position: relative;
            z-index: 2;
            text-align: center;
            background: rgba(18, 7, 31, 0.78);
            padding: 35px 30px;
            border-radius: 20px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(154, 46, 255, 0.25);
            box-shadow: 0 0 35px rgba(154, 46, 255, 0.2);
            max-width: 430px;
            width: 90%;
            animation: fadeIn 1.2s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Аватар (GIF) */
        .anime-character {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 50%;
            border: 3px solid #9a2eff;
            box-shadow: 0 0 20px rgba(154, 46, 255, 0.5);
            overflow: hidden;
            background: #0d021a;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        /* Класс пульсации при активной музыке */
        .anime-character.playing {
            animation: pulse border 1.4s infinite alternate;
            border-color: #ff4da6;
            box-shadow: 0 0 25px rgba(255, 77, 166, 0.7);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.04); }
        }

        .anime-character img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        h1 {
            font-size: 1.7rem;
            margin-bottom: 10px;
            color: #fff;
            text-shadow: 0 0 15px rgba(154, 46, 255, 0.5);
        }

        p {
            font-size: 0.95rem;
            color: #d1c7dc;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        /* --- Музыкальный плеер --- */
        .audio-player {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .track-info {
            text-align: left;
            flex-grow: 1;
            margin-right: 15px;
        }

        .track-title {
            font-size: 0.85rem;
            font-weight: bold;
            color: #ff4da6;
        }

        .track-author {
            font-size: 0.75rem;
            color: #aaa;
        }

        .play-btn {
            background: #9a2eff;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: background 0.2s, transform 0.1s;
            box-shadow: 0 0 10px rgba(154, 46, 255, 0.4);
        }

        .play-btn:hover {
            background: #ff4da6;
            transform: scale(1.05);
        }

        /* Линия загрузки сайта */
        .loader-bar {
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .loader-progress {
            width: 40%;
            height: 100%;
            background: linear-gradient(90deg, #9a2eff, #ff4da6);
            border-radius: 3px;
            position: absolute;
            left: -40%;
            animation: loading 2.2s linear infinite;
            box-shadow: 0 0 10px #9a2eff;
        }

        @keyframes loading {
            0% { left: -40%; }
            100% { left: 100%; }
        }