        :root {
            --brand: #3ab6df;
            --brand-dim: rgba(58, 182, 223, 0.1);
            --brand-mid: rgba(58, 182, 223, 0.18);
            --brand-dark: #1e8fb5;
            --cta: #e64c6d;
            --cta-hover: #d03358;
            --cta-dim: rgba(230, 76, 109, 0.1);
            --bg: #f4f5f7;
            --surface: #ffffff;
            --ink: #111010;
            --ink2: #3d3c3c;
            --ink3: #7a7878;
            --border: #e2e4e8;
            --border-light: #eceef1;
            --teal: var(--brand);
            --teal-dim: var(--brand-dim);
            --sky: var(--brand);
            --sky-dim: var(--brand-dim);
            --r-md: 1.5rem;
            --r-lg: 1.75rem;
            --r-xl: 2.25rem;
            --sh-sm: 0 2px 12px rgba(17, 16, 16, 0.06);
            --sh-md: 0 8px 40px rgba(17, 16, 16, 0.08);
            --sh-lg: 0 24px 80px rgba(17, 16, 16, 0.1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        .wrap {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (min-width: 640px) {
            .wrap {
                padding: 0 2.5rem;
            }
        }

        .section {
            padding: 7rem 0;
        }

        .sec-sm {
            padding: 4rem 0;
        }

        .fd {
            font-family: 'Playfair Display', serif;
        }

        .label {
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--brand);
        }

        .rule {
            width: 48px;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }

        .h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.875rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .bdg {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.35rem 0.875rem;
            border-radius: 9999px;
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .bdg-teal {
            background: var(--brand-dim);
            color: var(--brand-dark);
            border: 1px solid rgba(58, 182, 223, 0.25);
        }

        .bdg-sky {
            background: var(--brand-dim);
            color: var(--brand-dark);
            border: 1px solid rgba(58, 182, 223, 0.25);
        }

        .bdg-n {
            background: rgba(17, 16, 16, 0.05);
            color: var(--ink2);
            border: 1px solid var(--border);
        }

        .bdg-gold {
            background: rgba(234, 179, 8, 0.1);
            color: #92660a;
            border: 1px solid rgba(234, 179, 8, 0.22);
        }

        .bdg-cta {
            background: var(--cta-dim);
            color: var(--cta);
            border: 1px solid rgba(230, 76, 109, 0.22);
        }

        .bdg-dot::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            display: inline-block;
            animation: pdot 2s ease-in-out infinite;
        }

        @keyframes pdot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: all 0.22s cubic-bezier(0.34, 1.2, 0.64, 1);
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn-ink {
            background: var(--cta);
            color: #fff;
            box-shadow: 0 4px 20px rgba(230, 76, 109, 0.3);
        }

        .btn-ink:hover {
            background: var(--cta-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(230, 76, 109, 0.38);
        }

        .btn-out {
            background: transparent;
            color: var(--ink);
            border: 1.5px solid var(--border);
        }

        .btn-out:hover {
            border-color: var(--ink);
            background: rgba(17, 16, 16, 0.03);
        }

        .btn-teal {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 4px 24px rgba(58, 182, 223, 0.32);
        }

        .btn-teal:hover {
            background: var(--brand-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 36px rgba(58, 182, 223, 0.42);
        }

        .drama-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.7rem 1.1rem;
            margin-top: 1.5rem;

            border-radius: 0.85rem;

            background: linear-gradient(135deg,
                    rgba(58, 182, 223, 0.12),
                    rgba(58, 182, 223, 0.05));

            border: 1.5px solid rgba(58, 182, 223, 0.35);
            box-shadow: 0 4px 16px rgba(58, 182, 223, 0.15);
        }

        .drama-icon {
            font-size: 1rem;
        }

        .drama-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .drama-label {
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brand-dark);
        }

        .drama-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--brand);
        }

        .drama-sub {
            font-size: 0.7rem;
            color: var(--ink3);
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            box-shadow: var(--sh-sm);
            transition:
                transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1),
                box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: var(--sh-md);
        }

        .card-f {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
        }

        .img-ph {
            background: linear-gradient(135deg, #e4eaee, #cdd5db);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.75rem;
            border-radius: inherit;
        }

        .img-ph .ico {
            font-size: 2.25rem;
            opacity: 0.4;
        }

        .img-ph .lbl {
            font-size: 0.75rem;
            color: var(--ink3);
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .img-ph .hint {
            font-size: 0.7rem;
            color: var(--ink3);
            max-width: 220px;
            line-height: 1.5;
        }

        #nav {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            transition:
                background 0.3s,
                box-shadow 0.3s;
        }

        #nav.sc {
            background: rgba(244, 245, 247, 0.94);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 var(--border);
        }

        .nav-in {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            gap: 2rem;
        }

        .nl {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--ink2);
            transition: color 0.15s;
        }

        .nl:hover {
            color: var(--ink);
        }

        #mob {
            display: none;
            flex-direction: column;
            gap: 0;
            padding: 0 1.5rem 1.25rem;
            background: rgba(244, 245, 247, 0.97);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border);
        }

        #mob.open {
            display: flex;
        }

        .ml {
            display: block;
            padding: 0.875rem 0;
            border-bottom: 1px solid var(--border);
            font-weight: 500;
            color: var(--ink2);
        }

        .hero {
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 90px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image:
                linear-gradient(rgba(58, 182, 223, 0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(58, 182, 223, 0.07) 1px, transparent 1px),
                linear-gradient(rgba(58, 182, 223, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(58, 182, 223, 0.035) 1px, transparent 1px);
            background-size:
                48px 48px,
                48px 48px,
                240px 240px,
                240px 240px;
            -webkit-mask-image: radial-gradient(ellipse 75% 80% at 55% 45%,
                    black 20%,
                    transparent 80%);
            mask-image: radial-gradient(ellipse 75% 80% at 55% 45%,
                    black 20%,
                    transparent 80%);
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle 420px at 72% 18%,
                    rgba(58, 182, 223, 0.3) 0%,
                    transparent 70%),
                radial-gradient(circle 320px at 8% 88%,
                    rgba(230, 76, 109, 0.15) 0%,
                    transparent 65%),
                radial-gradient(circle 600px at 50% 50%,
                    rgba(58, 182, 223, 0.1) 0%,
                    transparent 70%);
        }

        @media (max-width: 992px) {
            .hero::after {
                background:
                    radial-gradient(circle 420px at 72% 18%,
                        rgba(58, 182, 223, 0.15) 0%,
                        transparent 70%),
                    radial-gradient(circle 320px at 8% 88%,
                        rgba(230, 76, 109, 0.2) 0%,
                        transparent 65%),
                    radial-gradient(circle 600px at 50% 50%,
                        rgba(58, 182, 223, 0.1) 0%,
                        transparent 70%);
            }
        }

        @media (max-width: 420px) {
            .stats{
                justify-content: center;
                gap: 1.6rem;
            }
        }
        .hero>* {
            position: relative;
            z-index: 1;
        }

        /* ── AGT BADGE ── */
        .agt-badge {
            position: absolute;
            bottom: 1.25rem;
            left: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.625rem;
            padding: 0.625rem 1rem 0.625rem 0.75rem;
            background: rgba(17, 16, 16, 0.82);
            backdrop-filter: blur(14px);
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 4;
        }

        .agt-star {
            font-size: 1.1rem;
            line-height: 1;
        }

        .agt-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .agt-title {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1;
        }

        .agt-name {
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            white-space: nowrap;
        }

        .cd-box {
            border: 1px solid var(--border);
            border-radius: var(--r-xl);
            background: var(--surface);
            box-shadow: var(--sh-sm);
        }

        .cd-d {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--ink);
            line-height: 1;
        }

        .cd-sep {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--border);
            padding-bottom: 1rem;
        }

        .rv {
            opacity: 0;
            transform: translateY(22px);
            transition:
                opacity 0.6s ease,
                transform 0.6s cubic-bezier(0.34, 1.1, 0.64, 1);
        }

        .rv.in {
            opacity: 1;
            transform: none;
        }

        .d1 {
            transition-delay: 0.08s;
        }

        .d2 {
            transition-delay: 0.16s;
        }

        .d3 {
            transition-delay: 0.24s;
        }

        .d4 {
            transition-delay: 0.32s;
        }

        .d5 {
            transition-delay: 0.4s;
        }

        .tl {
            position: relative;
            padding-left: 3.5rem;
        }

        .tl::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 0;
            bottom: 0;
            width: 1.5px;
            background: linear-gradient(180deg,
                    var(--brand),
                    rgba(58, 182, 223, 0.1));
        }

        .tl-dot {
            position: absolute;
            left: 0;
            top: 0.2rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--surface);
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 700;
            color: var(--brand);
            box-shadow: var(--sh-sm);
        }

        .gold-c {
            background: var(--ink);
            border-radius: var(--r-lg);
            color: #fff;
            box-shadow: var(--sh-lg);
            position: relative;
        }

        .qm {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            line-height: 0.55;
            color: var(--brand);
            opacity: 0.25;
        }

        .vid-ph {
            border-radius: var(--r-xl);
            overflow: hidden;
            background: linear-gradient(135deg, #daeef6, #c8e3ee);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            position: relative;
        }

        .play {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            border: 1.5px solid rgba(17, 16, 16, 0.15);
            background: var(--surface);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--sh-md);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

        .play:hover {
            transform: scale(1.1);
        }

        footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.5);
        }

        footer a {
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.15s;
        }

        footer a:hover {
            color: #fff;
        }

        .g2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .g3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .g4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.25rem;
        }

        .g-price {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            align-items: start;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (max-width: 900px) {

            .hero-grid,
            .g2 {
                grid-template-columns: 1fr;
            }

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

           
        }

        @media (max-width: 640px) {
            .g3 {
                grid-template-columns: 1fr;
            }
        }

        ::-webkit-scrollbar {
            width: 5px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--brand);
            border-radius: 3px;
        }

        /* ── PROGRAM SECTION ── */
        .program-section {
            padding: 7rem 0 3rem;
            background: var(--surface);
        }

        #cennik{
            padding: 5rem 0 7rem;
        }
        .program-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 4.5rem;
        }

        .program-kicker {
            margin-bottom: 1rem;
        }

        .program-title {
            margin-top: 0.5rem;
        }

        .program-timeline {
            position: relative;
            max-width: 820px;
            margin: 0 auto;
        }

        .program-timeline::before {
            content: '';
            position: absolute;
            left: 92px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg,
                    var(--brand),
                    rgba(58, 182, 223, 0.12));
        }

        .program-item {
            display: grid;
            grid-template-columns: 72px 40px 1fr;
            gap: 1.25rem;
            padding-bottom: 2.75rem;
            align-items: start;
        }

        .program-time {
            display: flex;
            justify-content: center;
        }

        .program-time-box {
            width: 48px;
            height: 48px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            box-shadow: var(--sh-sm);
            position: relative;
            z-index: 2;
        }

        .time-teal {
            background: var(--brand-dim);
            color: var(--brand-dark);
        }

        .time-sky {
            background: var(--brand-dim);
            color: var(--brand-dark);
        }

        .time-gray {
            background: rgba(17, 16, 16, 0.06);
            color: var(--ink3);
        }

        .time-gradient {
            background: linear-gradient(135deg, var(--brand-dim), var(--cta-dim));
            color: var(--brand-dark);
        }

        .program-marker {
            position: relative;
            width: 1px;
        }

        .program-marker::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 18px;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--surface);
            border: 2px solid var(--brand);
            box-shadow: 0 0 0 4px var(--bg);
            z-index: 3;
        }

        .program-content {
            padding-top: 2px;
        }

        .program-badge {
            margin-bottom: 0.6rem;
        }

        .program-content h3 {
            margin: 0;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .program-content p {
            margin-top: 0.5rem;
            line-height: 1.75;
            color: var(--ink2);
        }

        .program-note {
            margin-top: 1.25rem;
            padding: 1.375rem;
            border: 1px solid rgba(230, 76, 109, 0.2);
            border-radius: 1rem;
            background: rgba(230, 76, 109, 0.04);
        }

        .program-note-title {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--cta);
            margin-bottom: 0.875rem;
        }

        .program-note ul {
            display: grid;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--ink2);
            list-style: none;
        }

        /* Lunch note box */
        .lunch-note {
            margin-top: 1rem;
            padding: 1rem 1.25rem;
            border: 1px solid var(--border);
            border-radius: 1rem;
            background: rgba(17, 16, 16, 0.025);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .lunch-note-icon {
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 8px;
        }

        .lunch-note-text {
            font-size: 0.8rem;
            color: var(--ink3);
            line-height: 1.65;
        }

        .quote-accent {
            border-left: 2.5px solid var(--brand);
            background: var(--brand-dim);
            border-radius: 0 1rem 1rem 0;
        }

        .check-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: var(--brand-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--brand-dark);
            font-weight: 700;
            font-size: 0.8rem;
        }

        /* ── 2x Favorite Trainer highlight ── */
        .fav-trainer-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1.1rem;
            /* background: linear-gradient(
					135deg,
					rgba(234, 179, 8, 0.12),
					rgba(234, 179, 8, 0.06)
				); */
            /* border: 1.5px solid rgba(234, 179, 8, 0.4); */
            border-radius: 0.75rem;
            /* box-shadow: 0 2px 12px rgba(234, 179, 8, 0.15); */
            margin-top: 1rem;
        }

        .fav-trainer-badge .ft-icon {
            font-size: 1.05rem;
        }

        .fav-trainer-badge .ft-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .fav-trainer-badge .ft-label {
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            /* color: #92660a; */
            opacity: 0.75;
        }

        .fav-trainer-badge .ft-value {
            font-size: 0.875rem;
            font-weight: 700;
            /* color: #78520a; */
        }

        .fav-trainer-badge {
            background: linear-gradient(135deg,
                    var(--brand-dim),
                    rgba(58, 182, 223, 0.05));
            border: 1.5px solid rgba(58, 182, 223, 0.35);
            box-shadow: 0 2px 12px rgba(58, 182, 223, 0.15);
        }

        .fav-trainer-badge .ft-label {
            color: var(--brand-dark);
        }

        .fav-trainer-badge .ft-value {
            color: var(--brand);
        }

        /* ── Social proof strip below pricing ── */
        .social-strip {
            margin-top: 3.5rem;
            padding-top: 3.5rem;
            /* border-top: 1px solid var(--border); */
        }

        .social-strip-head {
            margin-bottom: 1.75rem;
        }

        @media (max-width: 640px) {
            .program-timeline::before {
                left: 58px;
            }

            .program-item {
                grid-template-columns: 48px 28px 1fr;
                gap: 0.75rem;
            }

            .program-time-box {
                width: 40px;
                height: 40px;
                font-size: 0.7rem;
            }

            .program-marker::before {
                top: 15px;
            }
        }

        .nav-hb {
            display: none;
        }

        @media (max-width: 992px) {
            .nav-d {
                display: none !important;
            }

            .nav-hb {
                display: flex !important;
            }
        }
        @media (max-width: 640px) {
  .media-row-grid {
    grid-template-columns: 1fr !important;
  }
        }


  /* WIDEO NA PEŁNĄ SZEROKOŚĆ */
.video-full {
    margin-top: 3rem;
}

.video-full .vid-ph {
    width: 100%;
    min-height: 360px;
}

/* ORGANIZATORZY */
.organizers-section {
    padding: 7rem 0;
    background: var(--surface);
}

.organizers-head {
    max-width: 620px;
    margin-bottom: 3rem;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.organizer-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    background: #ddd;
}

.organizer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    background: rgba(17, 16, 16, 0.78);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .organizers-grid {
        grid-template-columns: 1fr;
    }
}



/* ── Wideo opinii — pionowa rolka 9:16 (mniejszy radius, większe na telefonach) ── */
.opinie-video-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
    background: #000;
}
@media (max-width: 900px) {
    .opinie-video-frame {
        max-width: 460px;
    }
}

/* Nakładka „play" na wideo opinii — styl jak facade w sekcji „Co się dzieje" (widoczna do 1. odtworzenia) */
.opinie-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}
.opinie-play:hover {
    background: rgba(0, 0, 0, 0.45);
}
.opinie-play-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}
.opinie-play:hover .opinie-play-circle {
    transform: scale(1.08);
}