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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.4;
            color: #333;
            background: linear-gradient(135deg, #ffdd00 0%, #ffc400 100%);
            min-height: 100vh;
            padding: 10px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            overflow: hidden;
            padding: 15px;
            animation: fadeIn 0.5s ease-out;
        }

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

        /* СУПЕР КОМПАКТНЫЙ HEADER */
        .compact-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            animation: slideDown 0.4s ease-out;
        }

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

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-main {
            width: 40px;
            height: 40px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-main:hover {
            transform: scale(1.05);
        }

        .header-titles {
            display: flex;
            flex-direction: column;
        }

        h1 {
            font-size: 1.2rem;
            color: #0d3959;
            font-weight: 700;
            line-height: 1.2;
        }

        .tagline {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.2;
        }

        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 2px;
        }

        .status-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4CAF50;
            animation: pulse 2s infinite;
        }

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

        .status-text {
            font-size: 0.75rem;
            color: #666;
            white-space: nowrap;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .container {
                padding: 12px;
            }

            body {
                padding: 8px;
            }
        }

        /* ОСНОВНОЙ ПЛЕЕР */
        .player-section {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

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

        .player-container {
            width: 100%;
            background: white;
            border: 2px solid #ffdd00;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .player-container:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .now-playing {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #0d3959;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .track-info {
            margin-bottom: 12px;
            text-align: center;
            padding: 8px;
            background: #f8f9fa;
            border-radius: 5px;
            min-height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .track-info.playing {
#            border-left: 3px solid #ffdd00;
        }

        .artist {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
            color: #333;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .title {
            font-size: 13px;
            color: #666;
            font-style: italic;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
        }

        #playButton {
            background: #0d3959;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        #playButton:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        #playButton:hover:before {
            left: 100%;
        }

        #playButton:hover {
            background: #0a2d48;
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 4px 12px rgba(13, 57, 89, 0.3);
        }

        #playButton:active {
            transform: scale(0.95);
        }

        #playButton svg {
            fill: white;
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        #playButton:hover svg {
            transform: scale(1.1);
        }

        .volume-control {
            flex-grow: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .volume-icon {
            width: 20px;
            height: 20px;
            fill: #666;
            transition: fill 0.3s ease, transform 0.3s ease;
            flex-shrink: 0;
        }

        .volume-icon:hover {
            fill: #0d3959;
            transform: scale(1.1);
        }

        #volumeSlider {
            flex-grow: 1;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(to right, #ddd 0%, #ddd 100%);
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
            position: relative;
            transition: background 0.3s ease;
        }

        #volumeSlider:hover {
            background: linear-gradient(to right, #ccc 0%, #ccc 100%);
        }

        #volumeSlider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #0d3959;
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E");
            background-size: 12px;
            background-position: center;
            background-repeat: no-repeat;
        }

        #volumeSlider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
            background-color: #0a2d48;
        }

        #volumeSlider::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #0d3959;
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E");
            background-size: 12px;
            background-position: center;
            background-repeat: no-repeat;
        }

        #volumeSlider::-moz-range-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
            background-color: #0a2d48;
        }

        /* РЕКЛАМНЫЙ БЛОК - ПРЯМО ПОД ПЛЕЕРОМ */
        .ad-container-top {
            margin: 10px 0 15px 0;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            text-align: center;
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px dashed #ddd;
            animation: fadeIn 0.8s ease-out 0.4s both;
        }

        @media (max-width: 480px) {
            .ad-container-top {
                min-height: 250px;
                padding: 10px;
                margin: 8px 0 12px 0;
            }
        }

        .content-section {
            padding: 12px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

        h2 {
            color: #0d3959;
            margin-bottom: 12px;
            font-size: 1.3rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 8px;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ffdd00;
            border-radius: 2px;
            animation: expandWidth 1s ease-out 0.5s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 50px; }
        }

        h3 {
            color: #0d3959;
            margin-bottom: 10px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .about-text {
            margin-bottom: 15px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .features {
            list-style: none;
            margin-bottom: 15px;
        }

        .features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .features li:before {
            content: "✓";
            color: #ffdd00;
            font-weight: bold;
            margin-right: 8px;
            font-size: 1rem;
            flex-shrink: 0;
            margin-top: 1px;
            transition: transform 0.3s ease;
        }

        .features li:hover {
            padding-left: 5px;
            background: linear-gradient(90deg, rgba(255,221,0,0.1) 0%, transparent 100%);
        }

        .features li:hover:before {
            transform: scale(1.2) rotate(10deg);
        }

        .contact-info {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-info:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-color: #ffdd00;
        }

        .contact-info:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffdd00, #0d3959, #ffdd00);
            background-size: 200% 100%;
            animation: shimmer 2s infinite linear;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .contact-info p {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .email-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #0d3959 0%, #0a2d48 100%);
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 500;
            margin-top: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(13, 57, 89, 0.2);
            position: relative;
            overflow: hidden;
        }

        .email-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .email-button:hover:before {
            left: 100%;
        }

        .email-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(13, 57, 89, 0.3);
            background: linear-gradient(135deg, #0a2d48 0%, #08243e 100%);
        }

        .email-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 5px rgba(13, 57, 89, 0.2);
        }

        .email-icon {
            width: 20px;
            height: 20px;
            fill: white;
            transition: transform 0.3s ease;
        }

        .email-button:hover .email-icon {
            transform: scale(1.1) rotate(5deg);
            animation: bounce 0.5s ease;
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1.1) rotate(5deg); }
            50% { transform: scale(1.2) rotate(10deg); }
        }

        footer {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #eee;
            color: #666;
            font-size: 0.8rem;
            animation: fadeIn 0.6s ease-out 0.6s both;
        }

        .playlist-section {
            margin-top: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .playlist-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }

        .playlist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        @media (max-width: 480px) {
            .playlist-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }

        .playlist-item {
            background: white;
            padding: 12px;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .playlist-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,221,0,0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .playlist-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }

        .playlist-item:hover:before {
            opacity: 1;
        }

        .playlist-item strong {
            font-size: 0.9rem;
            display: block;
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }

        .decade-tag {
            display: inline-block;
            background: #ffdd00;
            color: #333;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .playlist-item:hover .decade-tag {
            background: #0d3959;
            color: white;
            transform: scale(1.05);
        }

        .stats {
            display: flex;
            justify-content: space-around;
            margin: 15px 0;
            padding: 12px;
            background: linear-gradient(135deg, #0d3959 0%, #0a2d48 100%);
            color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            animation: fadeIn 0.6s ease-out 0.5s both;
        }

        @media (max-width: 480px) {
            .stats {
                padding: 10px 6px;
                margin: 12px 0;
            }
        }

        .stat-item {
            text-align: center;
            flex: 1;
            transition: transform 0.3s ease;
            position: relative;
        }

        .stat-item:hover {
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffdd00;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover .stat-number {
            color: white;
            text-shadow: 0 0 10px rgba(255,221,0,0.5);
        }

        @media (max-width: 480px) {
            .stat-number {
                font-size: 1rem;
            }
        }

        .stat-label {
            font-size: 0.75rem;
            opacity: 0.9;
            line-height: 1.2;
            margin-top: 2px;
            transition: opacity 0.3s ease;
        }

        .stat-item:hover .stat-label {
            opacity: 1;
        }

        @media (max-width: 480px) {
            .stat-label {
                font-size: 0.7rem;
            }
        }

        .email-link {
            color: #0d3959;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .email-link:hover {
            color: #ffdd00;
            text-decoration: underline;
        }

        @media (max-width: 480px) {
            .compact-header {
                margin-bottom: 10px;
                padding-bottom: 8px;
            }

            h1 {
                font-size: 1.1rem;
            }

            .tagline {
                font-size: 0.8rem;
            }

            .status-text {
                font-size: 0.7rem;
            }

            h2 {
                font-size: 1.2rem;
            }

            h3 {
                font-size: 1rem;
            }

            .player-container {
                padding: 12px;
            }

            .now-playing {
                font-size: 14px;
            }

            .artist {
                font-size: 13px;
            }

            .title {
                font-size: 12px;
            }

            #playButton {
                width: 40px;
                height: 40px;
            }

            #playButton svg {
                width: 16px;
                height: 16px;
            }

            .email-button {
                padding: 10px 16px;
                font-size: 0.85rem;
            }
        }

