﻿:root {
        --mobile-primary: #e67e22;
        --mobile-primary-dark: #b95600;
        --mobile-bg: #080a0d;
        --mobile-surface: rgba(18, 21, 26, 0.92);
        --mobile-surface-2: rgba(10, 12, 15, 0.84);
        --mobile-border: rgba(230, 126, 34, 0.3);
        --mobile-text: #d6dde3;
        --mobile-muted: #adb5bc;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        min-height: 100vh;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background: var(--mobile-bg);
        color: #fff;
    }

    .mobile-facelift {
        position: relative;
        isolation: isolate;
        min-height: 100vh;
        overflow: hidden;
        padding: 28px 16px 42px;
    }

    .mobile-facelift::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.52;
        background-image:
            radial-gradient(2px 2px at 8% 14%, rgba(255, 255, 255, 0.9) 0, transparent 58%),
            radial-gradient(1.6px 1.6px at 18% 44%, rgba(255, 255, 255, 0.76) 0, transparent 62%),
            radial-gradient(1.8px 1.8px at 34% 70%, rgba(255, 255, 255, 0.8) 0, transparent 60%),
            radial-gradient(2px 2px at 47% 24%, rgba(255, 255, 255, 0.84) 0, transparent 58%),
            radial-gradient(1.6px 1.6px at 64% 58%, rgba(255, 255, 255, 0.74) 0, transparent 62%),
            radial-gradient(1.8px 1.8px at 82% 22%, rgba(255, 255, 255, 0.79) 0, transparent 60%),
            radial-gradient(2px 2px at 92% 74%, rgba(255, 255, 255, 0.84) 0, transparent 58%);
    }

    .mobile-facelift > * {
        position: relative;
        z-index: 2;
    }

    .mobile-header {
        max-width: 980px;
        margin: 0 auto 24px;
        text-align: center;
    }

    .mobile-logo {
        width: clamp(170px, 28vw, 250px);
        max-width: 100%;
        height: auto;
        margin-bottom: 14px;
    }

    .mobile-kicker {
        display: inline-block;
        margin-bottom: 10px;
        color: var(--mobile-primary);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .mobile-header h1 {
        margin: 0 0 10px;
        font-size: clamp(30px, 4.5vw, 48px);
        line-height: 1.08;
    }

    .mobile-header p {
        margin: 0;
        color: var(--mobile-text);
        font-size: 16px;
        line-height: 1.6;
    }

    .mobile-shell {
        max-width: 620px;
        margin: 0 auto;
        display: block;
    }

    .mobile-phone {
        position: relative;
        border-radius: 30px;
        border: 1px solid var(--mobile-border);
        background: linear-gradient(160deg, rgba(22, 24, 29, 0.92), rgba(13, 15, 18, 0.9));
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
        padding: 14px;
        max-width: 520px;
        margin: 0 auto;
    }

    .mobile-phone::before {
        content: "";
        display: block;
        width: 120px;
        height: 20px;
        border-radius: 0 0 12px 12px;
        background: rgba(8, 10, 12, 0.96);
        margin: -14px auto 10px;
    }

    .mobile-screen {
        border-radius: 22px;
        /*border: 1px solid rgba(230, 126, 34, 0.24);*/
        background: linear-gradient(160deg, var(--mobile-surface), var(--mobile-surface-2));
        overflow: hidden;
        min-height: 640px;
    }

    .mobile-screen-inner {
        padding: 16px 12px 12px;
    }

    .mobile-player-card {
        border-radius: 16px;
        border: 1px solid rgba(230, 126, 34, 0.32);
        background: linear-gradient(160deg, rgba(19, 22, 27, 0.96), rgba(11, 13, 17, 0.9));
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
        padding: 12px;
    }

    .player-top {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        margin-bottom: 10px;
    }

    .player-cover {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        object-fit: cover;
        border: 1px solid rgba(230, 126, 34, 0.5);
        background: #121418;
    }

    .player-meta {
        min-width: 0;
    }

    .player-live-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 24px;
        padding: 0 10px;
        border-radius: 999px;
        border: 1px solid rgba(230, 126, 34, 0.58);
        background: rgba(230, 126, 34, 0.16);
        color: #fff;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .player-live-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #ff3f2f;
        box-shadow: 0 0 0 0 rgba(255, 63, 47, 0.6);
        animation: playerDotPulse 1.6s ease-in-out infinite;
    }

    @keyframes playerDotPulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 63, 47, 0.65); }
        70% { box-shadow: 0 0 0 8px rgba(255, 63, 47, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 63, 47, 0); }
    }

    .player-meta h2 {
        margin: 0;
        color: #ffffff;
        font-size: 16px;
        line-height: 1.25;
    }

    .player-meta h2 marquee {
        display: block;
        width: 100%;
        color: #ffffff;
    }

    .player-meta p {
        margin: 4px 0 0;
        color: var(--mobile-muted);
        font-size: 13px;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-native-wrap {
        margin-top: 6px;
        border-radius: 12px;
        border: 1px solid rgba(230, 126, 34, 0.2);
        background: rgba(5, 7, 10, 0.55);
        padding: 8px;
    }

    .mobile-player audio {
        width: 100%;
        height: 40px;
        border-radius: 10px;
        filter: hue-rotate(-12deg) saturate(1.15) brightness(1.02);
    }

    .tabContainer {
        margin-top: 14px;
        border-radius: 14px;
        border: 1px solid rgba(230, 126, 34, 0.24);
        background: rgba(9, 11, 14, 0.66);
        overflow: hidden;
    }

    .tabs {
        list-style: none;
        margin: 0;
        padding: 8px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        border-bottom: 1px solid rgba(230, 126, 34, 0.2);
    }

    .tabs li {
        margin: 0;
    }

    .tabs button {
        width: 100%;
        border: 1px solid rgba(230, 126, 34, 0.22);
        border-radius: 10px;
        background: rgba(20, 23, 29, 0.78);
        color: var(--mobile-muted);
        font-size: 13px;
        font-weight: 600;
        padding: 10px 8px;
        line-height: 1.25;
        cursor: pointer;
        transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
    }

    .tabs button.is-active {
        color: #fff;
        border-color: var(--mobile-primary);
        background: linear-gradient(120deg, rgba(230, 126, 34, 0.26), rgba(185, 86, 0, 0.26));
    }

    .tabContent {
        padding: 10px;
    }

    .tabContent > div {
        display: none;
    }

    .tabContent > div.is-active {
        display: block;
    }

    .tabContent iframe {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 372px;
        border: 0;
        border-radius: 10px;
        overflow-x: hidden;
        overflow-y: auto;
        background: #101216;
    }

    .tabContent iframe.mobile-iframe--info {
        height: 304px;
    }

    @media only screen and (max-width: 991px) {
        .mobile-phone {
            max-width: 500px;
        }
    }

    @media only screen and (max-width: 575px) {
        .mobile-facelift {
            padding-left: 12px;
            padding-right: 12px;
        }

        .mobile-screen {
            min-height: auto;
        }

        .tabContent iframe {
            height: 340px;
        }

        .tabContent iframe.mobile-iframe--info {
            height: 280px;
        }

        .tabs {
            grid-template-columns: 1fr;
        }

        .mobile-phone {
            max-width: 100%;
        }

        .player-top {
            grid-template-columns: 56px minmax(0, 1fr);
        }

        .player-cover {
            width: 56px;
            height: 56px;
        }
    }

