:root {
            --bg: #15181d;
            --panel: rgba(24, 27, 34, 0.9);
            --text: #f3f3f3;
            --muted: #c1c6cf;
            --accent: #e63946;
            --gold: #d7b75b;
            --border: rgba(255, 255, 255, 0.08);
            --shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
        }

        * { box-sizing: border-box; }

        html, body {
            margin: 0;
            min-height: 100%;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at top, rgba(230, 57, 70, 0.12), transparent 30%),
                linear-gradient(180deg, rgba(13, 15, 20, 0.88), rgba(15, 18, 24, 0.95)),
                url("../../img/ui/basketball-pattern-2.jpg") center top / 360px auto repeat,
                #15181d;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        .page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }

        .hero {
            width: min(100%, 1040px);
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(280px, 380px);
            gap: 1.4rem;
            padding: 1.35rem;
            border: 1px solid var(--border);
            border-radius: 28px;
            background: linear-gradient(145deg, rgba(25, 28, 35, 0.94), rgba(19, 21, 27, 0.96));
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 1.2rem 1.45rem 1.2rem 1.6rem;
        }

        .mark {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            width: fit-content;
            margin-bottom: 1.1rem;
            padding: 0.45rem 0.9rem;
            border: 1px solid rgba(215, 183, 91, 0.24);
            border-radius: 999px;
            background: rgba(215, 183, 91, 0.1);
            color: var(--gold);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .mark img {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }

        .flag {
            font-size: 1rem;
            line-height: 1;
        }

        .banner {
            display: block;
            width: min(100%, 620px);
            height: auto;
            margin: 0 0 1.35rem;
            border-radius: 14px;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
        }

        .lead {
            max-width: 33rem;
            margin: 0;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        .details {
            display: grid;
            gap: 0.7rem;
            margin-top: 1.35rem;
        }

        .detail-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem 0.8rem;
            align-items: center;
            color: #d8dce3;
            font-size: 0.92rem;
        }

        .detail-row strong {
            color: var(--gold);
            font-weight: 700;
            letter-spacing: 0.03em;
        }

        .actions {
            margin-top: 1.6rem;
            display: flex;
            align-items: center;
            gap: 0.85rem;
            flex-wrap: wrap;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 3.15rem;
            padding: 0.9rem 1.45rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #cb303d, #e63946);
            color: #fff;
            font-weight: 700;
            letter-spacing: 0.03em;
            box-shadow: 0 16px 28px rgba(230, 57, 70, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .button:hover,
        .button:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 20px 34px rgba(230, 57, 70, 0.28);
            outline: none;
        }

        .visual {
            position: relative;
            min-height: 520px;
            border-radius: 22px;
            overflow: hidden;
            background:
                radial-gradient(circle at top, rgba(215, 183, 91, 0.16), transparent 48%),
                linear-gradient(180deg, rgba(22, 24, 31, 0.92), rgba(14, 16, 22, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.2rem 1.2rem 5.4rem;
        }

        .visual img.main-figure {
            display: block;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .visual-card {
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: 1rem;
            padding: 0.9rem 1rem;
            border-radius: 14px;
            background: rgba(15, 17, 22, 0.64);
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(6px);
            color: #d4d8df;
            font-size: 0.82rem;
            line-height: 1.55;
        }

        .footer-note {
            margin-top: 1.2rem;
            color: #8f98a4;
            font-size: 0.78rem;
            line-height: 1.55;
        }

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

            .content {
                padding: 1rem;
                text-align: center;
                align-items: center;
            }

            .lead,
            .footer-note {
                max-width: 38rem;
            }

            .detail-row {
                justify-content: center;
            }

            .banner {
                margin-left: auto;
                margin-right: auto;
            }

            .visual {
                min-height: 420px;
            }
        }

        @media (max-width: 560px) {
            .page {
                padding: 1rem 0.75rem;
            }

            .hero {
                padding: 0.9rem;
                border-radius: 22px;
            }

            .content {
                padding: 0.8rem 0.55rem 0.3rem;
            }

            .lead {
                font-size: 0.98rem;
            }

            .visual {
                min-height: 340px;
            }
        }
