:root {
            --main-red: #ed1c24;
            --bg-dark: #121212;
            --body-bg: #192e59;
            --text-gray: #999999;
            --muted: #94a3b8;
            --panel: #0f172a;
            --card: rgba(18, 18, 18, 0.78);
            --border: rgba(255, 255, 255, 0.10);
            --safe-bottom: env(safe-area-inset-bottom);
        }

        html,
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
            position: fixed;
            background: var(--body-bg);
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: #fff;
            display: flex;
            flex-direction: column;
            user-select: none;
            -webkit-user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        * {
            box-sizing: border-box;
        }

        .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;
        }

        .seo-noscript {
            max-width: 760px;
            margin: 16px auto 0;
            color: rgba(255,255,255,0.78);
            font-size: 14px;
            line-height: 1.6;
        }

        .seo-noscript a {
            color: #fff;
            font-weight: 900;
        }

        button,
        input {
            font-family: inherit;
        }

        .site-header {
            background-color: white;
            padding: 10px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            width: 100%;
            position: relative;
            z-index: 50;
            flex-shrink: 0;
        }

        .site-header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-image: url('/player/img/border-gradient.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
        }

        .header-content {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            gap: 25px;
            justify-content: flex-start;
        }

        .header-content a:first-child {
            margin-left: 33.33%;
        }

        .main-logo {
            height: 50px;
            width: auto;
            display: block;
        }

        .promo-img {
            height: 40px;
            width: auto;
            display: block;
        }

        .app-main {
            flex: 1;
            min-height: 0;
            background:
                radial-gradient(circle at center, rgba(237, 28, 36, 0.18) 0%, rgba(25, 46, 89, 0.0) 55%),
                var(--body-bg);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .home-view {
            flex: 1;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 24px 14px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .home-inner {
            width: 100%;
            max-width: 760px;
            margin: 0 auto;
            padding-bottom: 6px;
        }

        .listen-label {
            margin: 0;
            color: #fff;
            font-size: 18px;
            font-weight: 400;
        }

        .radio-title {
            margin: 10px 0 0;
            color: #fff;
            font-size: clamp(38px, 10vw, 54px);
            line-height: 1.05;
            font-weight: 900;
            text-shadow: 0 0 25px var(--main-red);
        }

        .remote-message {
            display: none;
            margin: 26px auto 0;
            width: min(620px, calc(100% - 24px));
            color: #fff;
            text-align: left;
            animation: fadeIn 0.4s ease;
        }

        .remote-message.show {
            display: block;
        }

        .remote-message-inner {
            position: relative;
            display: grid;
            grid-template-columns: 54px 1fr;
            gap: 14px;
            align-items: center;
            padding: 17px 18px;
            overflow: hidden;
            border-radius: 22px;
            background:
                linear-gradient(135deg, rgba(237, 28, 36, 0.22), rgba(255,255,255,0.06)),
                rgba(18, 18, 18, 0.70);
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow:
                0 18px 45px rgba(0, 0, 0, 0.28),
                0 0 34px rgba(237, 28, 36, 0.18);
            backdrop-filter: blur(12px);
        }

        .remote-message-inner::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 5px;
            background: linear-gradient(to bottom, #ff5960, var(--main-red));
            box-shadow: 0 0 18px rgba(237, 28, 36, 0.65);
        }

        .remote-message-inner::after {
            content: "";
            position: absolute;
            top: -70px;
            right: -70px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(237, 28, 36, 0.16);
            filter: blur(4px);
            pointer-events: none;
        }

        .remote-message-icon {
            position: relative;
            z-index: 1;
            width: 54px;
            height: 54px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(237, 28, 36, 0.20);
            border: 1px solid rgba(237, 28, 36, 0.42);
            color: #fff;
            font-size: 23px;
            box-shadow: 0 0 22px rgba(237, 28, 36, 0.18);
        }

        .remote-message-content {
            position: relative;
            z-index: 1;
            min-width: 0;
        }

        .remote-message-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 6px;
            color: #ff9ca0;
            font-size: 11px;
            line-height: 1;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .remote-message-label::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--main-red);
            box-shadow: 0 0 0 6px rgba(237, 28, 36, 0.16);
        }

        .remote-message-text {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.55;
            white-space: pre-line;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
        }

        .remote-message-text strong,
        .remote-message-text a {
            color: #fff;
            font-weight: 900;
        }

        .remote-message-text a {
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 3px;
        }

        .player-shell {
            flex-shrink: 0;
            padding: 0 12px 12px;
            padding-bottom: calc(12px + var(--safe-bottom));
            position: relative;
            z-index: 60;
        }

        .player-card {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px;
            border-radius: 28px;
            background: var(--bg-dark);
            border: 1.2px solid rgba(237, 28, 36, 0.45);
            box-shadow:
                0 10px 24px rgba(0,0,0,0.45),
                0 0 28px rgba(237, 28, 36, 0.10);
        }

        .player-top {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .play-btn {
            width: 64px;
            height: 64px;
            flex: 0 0 64px;
            border: 0;
            border-radius: 999px;
            background: var(--main-red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 29px;
            cursor: pointer;
            box-shadow: 0 0 18px rgba(237, 28, 36, 0.35);
        }

        .play-btn:active {
            transform: scale(0.97);
        }

        .play-btn.loading i {
            display: none;
        }

        .play-loader {
            display: none;
            width: 30px;
            height: 30px;
            border: 3px solid rgba(255,255,255,0.35);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.85s linear infinite;
        }

        .play-btn.loading .play-loader {
            display: block;
        }

        .player-info {
            flex: 1;
            min-width: 0;
            text-align: left;
        }

        .footer-logo {
            height: 22px;
            max-width: 100%;
            display: block;
            object-fit: contain;
            object-position: left center;
        }

        .player-status-row {
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 9px;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.10);
            color: #fff;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.8px;
        }

        .live-tag.active {
            background: rgba(237, 28, 36, 0.18);
            border-color: rgba(237, 28, 36, 0.65);
        }

        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--main-red);
        }

        .equalizer {
            display: none;
            align-items: flex-end;
            width: 13px;
            height: 12px;
            gap: 1px;
        }

        .live-tag.active .live-dot {
            display: none;
        }

        .live-tag.active .equalizer {
            display: flex;
        }

.eq-bar {
    width: 2px;
    height: 12px; /* Zmień stałą wysokość bazową */
    border-radius: 999px;
    background: var(--main-red);
    transform-origin: bottom;
    transform: scaleY(0.16);
    animation: eq 0.55s ease-in-out infinite alternate;
}

        .eq-bar:nth-child(2) {
            animation-delay: 0.15s;
        }

        .eq-bar:nth-child(3) {
            animation-delay: 0.30s;
        }

        .player-subtitle {
            flex: 1;
            min-width: 0;
            color: rgba(255,255,255,0.72);
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .volume-wrap {
            width: 34px;
            height: 86px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 34px;
        }

        #volume-slider {
            width: 86px;
            transform: rotate(-90deg);
            accent-color: var(--main-red);
        }

        .player-nav-box {
            margin-top: 14px;
            padding: 6px;
            border-radius: 18px;
            background: rgba(255,255,255,0.045);
            border: 1px solid rgba(255,255,255,0.07);
            display: flex;
            align-items: stretch;
            gap: 2px;
        }

        .nav-item {
            flex: 1;
            min-width: 0;
            border: 0;
            background: transparent;
            color: var(--text-gray);
            border-radius: 14px;
            padding: 7px 4px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            text-decoration: none;
            font: inherit;
        }

        .nav-item i {
            font-size: 22px;
        }

        .nav-item span {
            max-width: 100%;
            color: inherit;
            font-size: 10px;
            line-height: 1.05;
            font-weight: 800;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .nav-item:active {
            background: rgba(255,255,255,0.06);
        }

        .nav-item.active,
        .nav-item:hover {
            color: #fff;
        }

        .nav-item.active i {
            color: var(--main-red);
        }

        .sheet-backdrop {
            position: fixed;
            inset: 0;
            z-index: 500;
            display: none;
            background: rgba(0,0,0,0.55);
            align-items: flex-end;
        }

        .sheet-backdrop.show {
            display: flex;
        }

        .bottom-sheet {
            width: 100%;
            max-height: 95vh;
            min-height: 45vh;
            background: var(--bg-dark);
            border-radius: 28px 28px 0 0;
            border: 1px solid rgba(255,255,255,0.12);
            border-bottom: 0;
            box-shadow: 0 -12px 32px rgba(0,0,0,0.45);
            overflow: hidden;
            animation: sheetUp 0.22s ease;
            display: flex;
            flex-direction: column;
        }

        .sheet-content {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 12px 16px 24px;
            padding-bottom: calc(24px + var(--safe-bottom));
            scrollbar-width: thin;
            scrollbar-color: rgba(237, 28, 36, 0.82) rgba(255,255,255,0.06);
        }

        .sheet-content::-webkit-scrollbar {
            width: 9px;
        }

        .sheet-content::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.055);
            border-radius: 999px;
            margin: 18px 0 22px;
        }

        .sheet-content::-webkit-scrollbar-thumb {
            border-radius: 999px;
            background: linear-gradient(180deg, #ff5a61, var(--main-red));
            border: 2px solid #121212;
            box-shadow: 0 0 14px rgba(237, 28, 36, 0.35);
        }

        .sheet-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ff7a80, #ed1c24);
        }

        .sheet-handle {
            width: 46px;
            height: 5px;
            border-radius: 999px;
            background: rgba(255,255,255,0.22);
            margin: 0 auto 18px;
        }

        .sheet-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .sheet-icon {
            width: 46px;
            height: 46px;
            border-radius: 16px;
            background: rgba(237, 28, 36, 0.14);
            border: 1px solid rgba(237, 28, 36, 0.32);
            color: var(--main-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .sheet-title {
            flex: 1;
            min-width: 0;
            text-align: left;
        }

        .sheet-title h2 {
            margin: 0;
            color: #fff;
            font-size: 24px;
            font-weight: 900;
            line-height: 1.15;
        }

        .sheet-title p {
            margin: 2px 0 0;
            color: var(--muted);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.35;
        }

        .sheet-close {
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 19px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .status-box {
            margin: 18px 0;
            padding: 18px;
            border-radius: 18px;
            background: rgba(18,18,18,0.72);
            border: 1px solid rgba(255,255,255,0.10);
            color: rgba(255,255,255,0.72);
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.45;
        }

        .loader {
            width: 34px;
            height: 34px;
            border: 3px solid rgba(255,255,255,0.20);
            border-top-color: #fff;
            border-radius: 999px;
            animation: spin 0.85s linear infinite;
            margin: 55px auto;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .news-card,
        .schedule-card {
            overflow: hidden;
            border-radius: 22px;
            background: rgba(18,18,18,0.78);
            border: 1px solid rgba(255,255,255,0.10);
            box-shadow: 0 12px 24px rgba(0,0,0,0.24);
            text-align: left;
        }

        .news-card img {
            display: block;
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: rgba(255,255,255,0.06);
        }

        .news-empty-image {
            height: 180px;
            background: rgba(237, 28, 36, 0.14);
            color: var(--main-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 46px;
        }

        .news-card-body {
            padding: 16px;
        }

        .news-card-title {
            margin: 0;
            color: #fff;
            font-size: 19px;
            line-height: 1.25;
            font-weight: 900;
        }

        .meta-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .meta-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            max-width: 100%;
            padding: 6px 9px;
            border-radius: 999px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.08);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
        }

        .meta-pill i {
            color: var(--main-red);
            font-size: 14px;
        }

        .news-card-text {
            margin-top: 12px;
            color: rgba(255,255,255,0.72);
            font-size: 14px;
            line-height: 1.55;
            font-weight: 500;
        }

        .primary-pill {
            margin-top: 14px;
            border: 0;
            border-radius: 999px;
            background: var(--main-red);
            color: #fff;
            min-height: 40px;
            padding: 10px 15px;
            font: inherit;
            font-size: 13px;
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .news-detail-image {
            width: calc(100% + 32px);
            margin: -12px -16px 18px;
            max-height: 240px;
            object-fit: cover;
            display: block;
        }

        .news-detail-title {
            margin: 0 0 12px;
            color: #fff;
            font-size: 24px;
            line-height: 1.15;
            font-weight: 900;
        }

        .news-detail-content {
            color: rgba(255,255,255,0.82);
            font-size: 15px;
            line-height: 1.65;
            font-weight: 500;
            text-align: left;
        }

        .news-detail-content p {
            margin: 0 0 14px;
        }

        .news-detail-content a {
            color: #fff;
            font-weight: 900;
            text-decoration: underline;
        }

        .news-detail-content audio {
            width: 100%;
            margin: 10px 0 16px;
        }

        .news-detail-content img {
            max-width: 100%;
            height: auto;
            border-radius: 14px;
        }

        .days-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .day-btn {
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 999px;
            background: #1e293b;
            color: #cbd5e1;
            padding: 10px 13px;
            font: inherit;
            font-size: 12px;
            font-weight: 900;
            cursor: pointer;
        }

        .day-btn.active {
            color: #fff;
            background: rgba(237, 28, 36, 0.82);
            border-color: rgba(237, 28, 36, 0.95);
            box-shadow: 0 0 16px rgba(237, 28, 36, 0.22);
        }

        .schedule-top {
            padding: 18px;
            background: rgba(237, 28, 36, 0.15);
            border-bottom: 1px solid rgba(237, 28, 36, 0.35);
        }

        .schedule-top h3 {
            margin: 0;
            color: #fff;
            font-size: 24px;
            font-weight: 900;
        }

        .schedule-top p {
            margin: 6px 0 0;
            color: rgba(255,255,255,0.82);
            font-size: 14px;
            font-weight: 700;
        }

        .schedule-section {
            padding: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .schedule-section:last-child {
            border-bottom: 0;
        }

        .schedule-section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--main-red);
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .schedule-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            padding: 11px 12px;
            border-radius: 14px;
            background: rgba(255,255,255,0.055);
            border: 1px solid rgba(255,255,255,0.075);
        }

        .schedule-time {
            width: 68px;
            flex-shrink: 0;
            color: #fff;
            font-size: 14px;
            font-weight: 900;
        }

        .schedule-name {
            flex: 1;
            color: rgba(255,255,255,0.84);
            font-size: 14px;
            line-height: 1.4;
            font-weight: 600;
        }

        .voice-panel {
            padding: 18px;
            border-radius: 24px;
            background: #0f172a;
            border: 1px solid rgba(255,255,255,0.08);
            text-align: center;
        }

        .record-circle {
            width: 96px;
            height: 96px;
            margin: 0 auto;
            border-radius: 999px;
            background: rgba(255,255,255,0.07);
            border: 2px solid rgba(255,255,255,0.12);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 52px;
            transition: 0.2s ease;
        }

        .record-circle.recording {
            width: 112px;
            height: 112px;
            background: rgba(237, 28, 36, 0.22);
            border-color: rgba(237, 28, 36, 0.95);
            box-shadow: 0 0 30px rgba(237, 28, 36, 0.34);
        }

        .record-state {
            margin: 16px 0 0;
            color: #fff;
            font-size: 19px;
            font-weight: 900;
        }

        .record-time {
            margin-top: 6px;
            color: var(--main-red);
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1.5px;
        }

        .voice-input {
            width: 100%;
            margin-top: 14px;
            min-height: 52px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.10);
            outline: none;
            background: #0f172a;
            color: #fff;
            padding: 0 14px;
            font-size: 15px;
            font-weight: 600;
        }

        .voice-input:focus {
            border-color: rgba(237, 28, 36, 0.85);
        }

        .voice-input.error {
            border-color: rgba(237, 28, 36, 0.95);
            box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.16);
        }

        .voice-actions {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }

        .outline-pill {
            flex: 1;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 999px;
            background: transparent;
            color: #fff;
            min-height: 48px;
            padding: 10px 14px;
            font: inherit;
            font-size: 14px;
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
        }

        .outline-pill.danger {
            color: #fca5a5;
            border-color: rgba(237, 28, 36, 0.35);
        }

        .voice-note {
            margin: 18px 0 0;
            color: rgba(255,255,255,0.52);
            font-size: 12px;
            line-height: 1.45;
            font-weight: 600;
            text-align: center;
        }

        .toast {
            position: fixed;
            left: 16px;
            right: 16px;
            bottom: calc(16px + var(--safe-bottom));
            z-index: 900;
            display: none;
            padding: 14px 16px;
            border-radius: 16px;
            background: var(--main-red);
            color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.35);
            font-size: 14px;
            font-weight: 800;
            text-align: center;
        }

        .toast.show {
            display: block;
            animation: fadeIn 0.25s ease;
        }

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

        @keyframes sheetUp {
            from { transform: translateY(40px); opacity: 0.4; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes eq {
    from { transform: scaleY(0.16); }
    to { transform: scaleY(1); }
}

        @media (min-width: 900px) {
            .home-view {
                padding: 60px;
            }

            .listen-label {
                font-size: 22px;
            }

            .radio-title {
                font-size: 54px;
            }

            .player-shell {
                max-width: 620px;
                width: 100%;
                margin: 0 auto;
            }

            .bottom-sheet {
                width: min(760px, calc(100% - 32px));
                margin: 0 auto;
                border-radius: 28px 28px 0 0;
            }
        }


        @media (max-width: 768px) {
            .promo-img {
                display: none;
            }

            .header-content {
                justify-content: center;
            }

            .header-content a:first-child {
                margin-left: 0;
            }

            .main-logo {
                height: 45px;
            }

            .site-header {
                padding: 10px 0;
            }

            .sheet-content::-webkit-scrollbar {
                width: 6px;
            }
        }

        @media (max-width: 390px) {
            .remote-message {
                width: calc(100% - 18px);
                margin-top: 22px;
                margin-left: auto;
                margin-right: auto;
            }

            .remote-message-inner {
                grid-template-columns: 44px 1fr;
                gap: 11px;
                padding: 14px 14px 14px 16px;
                border-radius: 18px;
            }

            .remote-message-icon {
                width: 44px;
                height: 44px;
                border-radius: 15px;
                font-size: 19px;
            }

            .remote-message-label {
                font-size: 10px;
                letter-spacing: 1.5px;
            }

            .remote-message-text {
                font-size: 14px;
                line-height: 1.5;
            }

            .player-card {
                padding: 12px;
                border-radius: 24px;
            }

            .play-btn {
                width: 58px;
                height: 58px;
                flex-basis: 58px;
            }

            .footer-logo {
                height: 20px;
            }

            .player-subtitle {
                font-size: 11px;
            }

            .nav-item span {
                font-size: 9px;
            }

            .volume-wrap {
                width: 28px;
            }

            #volume-slider {
                width: 76px;
            }
        }
    

        /* Widoczne tylko na urządzeniach z Androidem */
        .android-app-link {
            display: none;
        }

        body.is-android .android-app-link {
            display: none !important;
        }
