/* Widoki logowania dopasowane do stylu strony glownej PHTV */
.auth-page {
    padding: 46px 0 70px;
}

.auth-page .auth-heading {
    margin-bottom: 24px;
}

.auth-page .auth-heading h1 {
    margin: 0 0 8px;
    color: #232323;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.auth-page .auth-heading p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.auth-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.auth-box {
    position: relative;
    padding: 34px 38px;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    background: rgba(255,255,255,.72);
}

.auth-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(33deg, #710505 0%, #e12025 100%);
}

.auth-box h2 {
    margin: 0 0 9px;
    font-size: 21px;
    line-height: 1.2;
}

.auth-copy {
    max-width: 620px;
    margin: 0 0 26px;
    color: #696969;
    font-size: 14px;
    line-height: 1.55;
}

.auth-step-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #981b24;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.auth-label {
    display: block;
    margin: 0 0 7px;
    color: #232323;
    font-size: 13px;
    font-weight: 700;
}

.auth-input,
.auth-select {
    width: 100%;
    height: 46px;
    padding: 10px 13px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    outline: none;
    background: rgba(255,255,255,.94);
    color: #232323;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 14px;
}

.auth-input:focus,
.auth-select:focus {
    border-color: #981b24;
    box-shadow: 0 0 0 3px rgba(152,27,36,.08);
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.auth-actions .btn {
    min-width: 150px;
    padding: 10px 19px;
}

.auth-note {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
    color: #888;
    font-size: 12px;
    line-height: 1.45;
}

.auth-note a,
.auth-link {
    color: #981b24;
    font-weight: 700;
    text-decoration: none;
}

.auth-note a:hover,
.auth-link:hover {
    text-decoration: underline;
}

.auth-mail {
    font-weight: 700;
    color: #232323;
}

.code-row {
    display: flex;
    gap: 9px;
    max-width: 390px;
    margin-top: 4px;
}

.code-input {
    width: 57px;
    height: 58px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    background: #fff;
    color: #232323;
    text-align: center;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    outline: none;
}

.code-input:focus {
    border-color: #981b24;
    box-shadow: 0 0 0 3px rgba(152,27,36,.08);
}

.auth-info-strip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    padding: 13px 15px;
    border-radius: 8px;
    background: rgba(152,27,36,.055);
    color: #555;
    font-size: 13px;
    line-height: 1.45;
}

.auth-info-strip i {
    margin-top: 1px;
    color: #981b24;
    font-size: 17px;
}

/* Niezamykalna wizualizacja pop-upu profilu */
.profile-preview-page {
    min-height: calc(100vh - 76px);
}

.profile-lock {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(20,20,20,.62);
}

.profile-modal {
    width: min(100%, 630px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(0,0,0,.22);
}

.profile-modal-head {
    padding: 24px 30px 19px;
    border-bottom: 1px solid #e5e5e5;
}

.profile-modal-head .live-tag {
    margin-bottom: 12px;
}

.profile-modal-head h2 {
    margin: 0 0 7px;
    font-size: 22px;
}

.profile-modal-head p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.45;
}

.profile-modal-body {
    padding: 25px 30px 28px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.profile-grid .full {
    grid-column: 1 / -1;
}

.profile-required {
    margin: 18px 0 0;
    color: #888;
    font-size: 11px;
}

.profile-modal .auth-actions {
    justify-content: flex-end;
    padding-top: 3px;
}

.success-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid #d5d5d5;
    border-radius: 50%;
    color: #981b24;
    background: #fff;
    font-size: 22px;
}

@media (max-width: 767px) {
    .auth-page { padding: 30px 0 50px; }
    .auth-box { padding: 27px 23px; }
    .auth-page .auth-heading h1 { font-size: 24px; }
    .code-row { gap: 6px; }
    .code-input { width: calc((100% - 30px) / 6); height: 52px; font-size: 21px; }
    .profile-grid { grid-template-columns: 1fr; gap: 14px; }
    .profile-grid .full { grid-column: auto; }
    .profile-modal-head, .profile-modal-body { padding-left: 22px; padding-right: 22px; }
}

/* Wymagania techniczne */
.requirements-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.requirements-box {
    position: relative;
    padding: 34px 38px;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    background: rgba(255,255,255,.72);
}

.requirements-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(33deg, #710505 0%, #e12025 100%);
}

.requirements-intro {
    margin: 0 0 28px;
    color: #626262;
    font-size: 14px;
    line-height: 1.7;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 26px;
}

.requirement-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
}

.requirement-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(152,27,36,.07);
    color: #981b24;
    font-size: 18px;
}

.requirement-item h3 {
    margin: 0 0 6px;
    color: #232323;
    font-size: 15px;
    font-weight: 700;
}

.requirement-item p {
    margin: 0;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 1.55;
}

.requirements-speed {
    margin: 0 0 26px;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(152,27,36,.055);
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.requirements-speed strong {
    color: #981b24;
}

.requirements-speed a,
.requirements-contact a {
    color: #981b24;
    font-weight: 700;
    text-decoration: none;
}

.requirements-speed a:hover,
.requirements-contact a:hover {
    text-decoration: underline;
}

.requirements-contact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.requirements-contact i {
    margin-top: 1px;
    color: #981b24;
    font-size: 20px;
}

.requirements-contact h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.requirements-contact p {
    margin: 0;
    color: #6c6c6c;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 767px) {
    .requirements-box { padding: 27px 23px; }
    .requirements-grid { grid-template-columns: 1fr; }
}

/* Wbudowany test predkosci lacza */
.requirements-speed-copy {
    margin-bottom: 18px;
}

.speed-test {
    margin-top: 8px;
    padding: 22px;
    border: 1px solid rgba(152,27,36,.16);
    border-radius: 9px;
    background: #fff;
}

.speed-test-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.speed-test-kicker,
.speed-test-result-label {
    display: block;
    margin-bottom: 4px;
    color: #981b24;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.speed-test-head h3 {
    margin: 0 0 5px;
    color: #232323;
    font-size: 18px;
    font-weight: 700;
}

.speed-test-head p,
.speed-test-note {
    margin: 0;
    color: #737373;
    font-size: 12px;
    line-height: 1.55;
}

.speed-test-gauge {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(152,27,36,.07);
    color: #981b24;
    font-size: 22px;
}

.speed-test-button {
    min-width: 220px;
}

.speed-test-button:disabled {
    cursor: wait;
    opacity: .7;
}

.speed-test-progress {
    margin-top: 18px;
}

.speed-test-progress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #ececec;
}

.speed-test-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(33deg, #710505 0%, #e12025 100%);
    transition: width .3s ease;
}

.speed-test-progress p {
    margin: 8px 0 0;
    color: #777;
    font-size: 12px;
}

.speed-test-result {
    margin-top: 18px;
    padding: 17px 18px;
    border: 1px solid #e2e2e2;
    border-left: 4px solid #981b24;
    border-radius: 8px;
    background: #fafafa;
}

.speed-test-result-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #222;
    line-height: 1;
}

.speed-test-result-value strong {
    font-size: 31px;
    font-weight: 700;
}

.speed-test-result-value span {
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

.speed-test-result p {
    margin: 9px 0 0;
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

.speed-test-result.is-good { border-left-color: #238636; }
.speed-test-result.is-good .speed-test-result-label { color: #238636; }
.speed-test-result.is-warning { border-left-color: #c47b00; }
.speed-test-result.is-warning .speed-test-result-label { color: #a76700; }
.speed-test-result.is-poor { border-left-color: #b42318; }
.speed-test-result.is-poor .speed-test-result-label { color: #b42318; }

.speed-test-note {
    margin-top: 14px;
}

.speed-test-external {
    display: inline-flex;
    align-items: center;
    margin-top: 9px;
}

@media (max-width: 575px) {
    .speed-test { padding: 18px; }
    .speed-test-head { gap: 12px; }
    .speed-test-gauge { flex-basis: 40px; width: 40px; height: 40px; font-size: 19px; }
    .speed-test-button { width: 100%; min-width: 0; }
}

/* Strona platnosci */
.payments-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.payments-operator,
.payment-section,
.payment-note {
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    background: rgba(255,255,255,.78);
}

.payments-operator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px 34px;
    margin-bottom: 18px;
    overflow: hidden;
}

.payments-operator::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(33deg, #710505 0%, #e12025 100%);
}

.payments-operator h2,
.payment-section h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
}

.payments-operator p,
.payment-section > p {
    margin: 0;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.55;
}

.tpay-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 17px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    background: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.tpay-badge i {
    color: #981b24;
}

.payment-section {
    padding: 28px 30px;
    margin-top: 18px;
}

.payment-section-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.payment-section-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(152,27,36,.07);
    color: #981b24;
    font-size: 22px;
}

.payment-section-head h2 {
    margin-top: 1px;
}

.payment-section-head p {
    margin: 0;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.5;
}

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 118px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 9px;
    background: #fff;
}

.payment-method-card .method-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f7f7f7;
    color: #981b24;
    font-size: 26px;
}

.payment-method-card h3 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 700;
}

.payment-method-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 9px;
}

.payment-logo-pill {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 5px 9px;
    border: 1px solid #dedede;
    border-radius: 6px;
    background: #fff;
    color: #282828;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .01em;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 9px;
}

.bank-item {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    color: #383838;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.payment-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 18px 20px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.payment-note i {
    color: #981b24;
    font-size: 18px;
}

@media (max-width: 991px) {
    .bank-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 767px) {
    .payments-operator { align-items: flex-start; flex-direction: column; padding: 25px 24px; }
    .payment-section { padding: 24px 20px; }
    .payment-method-grid { grid-template-columns: 1fr; }
    .bank-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

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

/* Live page */
.live-empty-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.live-empty-card {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    min-height: 430px;
    padding: 54px 34px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.045);
}

.live-empty-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, #981b24, #c62531);
}

.live-empty-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.live-empty-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f7f7f7;
    color: #981b24;
    font-size: 38px;
}

.live-status-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f8ecee;
    color: #981b24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.live-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #981b24;
}

.live-empty-card h2 {
    margin: 0 0 12px;
    color: #222;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 700;
}

.live-empty-card p {
    max-width: 560px;
    margin: 0 auto;
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.6;
}

.live-empty-hint {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ededed;
    color: #8a8a8a;
    font-size: 13px;
}

@media (max-width: 767px) {
    .live-empty-card {
        min-height: 360px;
        padding: 42px 22px;
    }
    .live-empty-card h2 { font-size: 28px; }
    .live-empty-icon { width: 74px; height: 74px; font-size: 32px; }
}



/* Regulamin - typografia wewnatrz istniejacego boxu */

/* Regulamin - typografia zgodna z pozostalymi podstronami */
.regulation-content > h2 {
    margin-bottom: 24px;
}
.regulation-content > h3 {
    margin: 30px 0 10px;
    color: #232323;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}
.regulation-content > h2 + h3 {
    margin-top: 24px;
}
.regulation-content p,
.regulation-content li {
    color: #6c6c6c;
    font-size: 13px;
    line-height: 1.65;
}
.regulation-content p {
    margin-bottom: 16px;
}
.regulation-content ol,
.regulation-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
}
.regulation-content li {
    margin-bottom: 8px;
}
.regulation-content li > ul {
    margin-top: 8px;
    margin-bottom: 4px;
}
.regulation-content strong {
    color: #555;
}
.regulation-content a {
    color: #981b24;
    font-weight: 700;
    text-decoration: none;
}
.regulation-content a:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {
    .regulation-content > h3 { font-size: 15px; margin-top: 25px; }
    .regulation-content p, .regulation-content li { font-size: 13px; }
    .regulation-content ol, .regulation-content ul { padding-left: 19px; }
}


/* O nas */
.about-wrap{max-width:1040px;margin:0 auto}.about-hero{position:relative;display:grid;grid-template-columns:1fr 170px;gap:42px;align-items:center;padding:36px 40px;border:1px solid #d5d5d5;border-radius:10px;background:rgba(255,255,255,.72);overflow:hidden}.about-hero:before{content:"";position:absolute;left:0;top:28px;bottom:28px;width:4px;border-radius:0 4px 4px 0;background:linear-gradient(33deg,#710505 0%,#e12025 100%)}.about-hero h2,.about-band h2{margin:0 0 12px;color:#232323;font-size:21px;line-height:1.25;font-weight:700}.about-hero p,.about-band p,.about-card p{color:#696969;font-size:14px;line-height:1.6}.about-hero p:last-child,.about-card p:last-child,.about-band p:last-child{margin-bottom:0}.about-hero-icon{width:140px;height:140px;display:grid;place-items:center;border-radius:50%;background:rgba(152,27,36,.06);color:#981b24;font-size:58px}.about-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}.about-card{padding:26px 24px;border:1px solid #ddd;border-radius:10px;background:#fff}.about-card h3{margin:0 0 8px;color:#232323;font-size:16px;font-weight:700}.about-icon{width:42px;height:42px;display:grid;place-items:center;margin-bottom:16px;border-radius:9px;background:rgba(152,27,36,.07);color:#981b24;font-size:20px}.about-band{display:grid;grid-template-columns:1.4fr .8fr;gap:38px;margin:18px 0;padding:30px 32px;border-radius:10px;background:linear-gradient(135deg,rgba(113,5,5,.96),rgba(225,32,37,.92));color:#fff}.about-band .auth-step-label,.about-band h2,.about-band p{color:#fff}.about-band p{opacity:.86}.about-points{display:grid;gap:11px;align-content:center}.about-points span{display:flex;align-items:center;gap:9px;font-size:14px;font-weight:700}.about-points i{font-size:17px}.privacy-table-wrap{max-width:100%;overflow-x:auto;margin:16px 0}.privacy-table{width:100%;min-width:650px;border-collapse:collapse;font-size:13px}.privacy-table th,.privacy-table td{padding:11px 12px;border:1px solid #ddd;text-align:left;vertical-align:top}.privacy-table th{background:#f5f5f5;color:#232323;font-weight:700}.privacy-content>h2{font-size:18px}.privacy-content>h3{font-size:16px}
@media(max-width:767px){.about-hero{grid-template-columns:1fr;padding:28px 24px}.about-hero-icon{display:none}.about-grid{grid-template-columns:1fr}.about-band{grid-template-columns:1fr;padding:26px 24px}.privacy-table{font-size:12px}}

/* FAQ: only interaction; visual appearance inherits requirements components */
.faq-standard{display:grid;gap:14px;margin-top:18px}.faq-row{margin:0}.faq-row summary{cursor:pointer;list-style:none;font-weight:700;color:#222;font-size:15px;position:relative;padding-right:34px}.faq-row summary::-webkit-details-marker{display:none}.faq-row summary:after{content:"+";position:absolute;right:0;top:-5px;color:#d71920;font-size:24px;font-weight:400}.faq-row[open] summary:after{content:"–"}.faq-row p{margin:14px 0 0}

/* Jak ogladac - kroki w tym samym systemie wizualnym */
.watch-steps{position:relative;margin:26px 0 28px;padding:2px 0}
.watch-steps:before{content:"";position:absolute;left:21px;top:24px;bottom:24px;width:1px;background:#e2e2e2}
.watch-step{position:relative;display:grid;grid-template-columns:44px 46px 1fr;gap:14px;align-items:flex-start;padding:18px 0;border-bottom:1px solid #ececec}
.watch-step:last-child{border-bottom:0}
.watch-step-marker{position:relative;z-index:2;width:44px;height:44px;display:grid;place-items:center;border-radius:50%;background:#fff;border:1px solid #d8d8d8;box-shadow:0 0 0 6px #fff}
.watch-step-marker span{width:30px;height:30px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(33deg,#710505 0%,#e12025 100%);color:#fff;font-size:13px;font-weight:700}
.watch-step-icon{width:46px;height:46px;display:grid;place-items:center;border-radius:9px;background:rgba(152,27,36,.06);color:#981b24;font-size:20px}
.watch-step-content{padding-top:1px}
.watch-step-label{display:block;margin-bottom:3px;color:#981b24;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em}
.watch-step h3{margin:0 0 6px;color:#232323;font-size:16px;font-weight:700}
.watch-step p{margin:0;color:#6c6c6c;font-size:13px;line-height:1.6}

/* FAQ - wyglad oparty na tym samym boxie co pozostale podstrony */
.faq-standard{margin:22px 0 28px;border-top:1px solid #e5e5e5}
.faq-row{margin:0;border-bottom:1px solid #e5e5e5}
.faq-row summary{position:relative;cursor:pointer;list-style:none;padding:16px 36px 16px 0;color:#232323;font-size:14px;font-weight:700}
.faq-row summary::-webkit-details-marker{display:none}
.faq-row summary:after{content:"+";position:absolute;right:2px;top:50%;transform:translateY(-50%);color:#981b24;font-size:22px;font-weight:400}
.faq-row[open] summary:after{content:"–"}
.faq-row p{margin:0;padding:0 36px 17px 0;color:#6c6c6c;font-size:13px;line-height:1.6}

@media(max-width:767px){.watch-step{grid-template-columns:38px 40px 1fr;gap:10px}.watch-steps:before{left:18px}.watch-step-marker{width:38px;height:38px}.watch-step-marker span{width:27px;height:27px}.watch-step-icon{width:40px;height:40px;font-size:18px}}


/* Kontakt i Centrum pomocy - rozszerzenia istniejącego design systemu */
.contact-wrap,.help-center-wrap{max-width:960px}.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px 20px;margin-top:24px}.contact-full{grid-column:1/-1}.contact-optional{color:#8a8a8a;font-weight:400}.contact-textarea.auth-input{height:auto;min-height:160px;resize:vertical;line-height:1.5}.contact-hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.contact-status{display:none;margin-top:18px;padding:12px 14px;border-radius:8px;font-size:13px;font-weight:700}.contact-status.is-visible{display:block}.contact-status.success{background:#eef8f0;border:1px solid #cae5d0;color:#26783c}.contact-status.error{background:#fff0f0;border:1px solid #efc8ca;color:#a92026}.contact-form .requirements-contact{margin-top:28px}.help-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:24px 0}.help-item{color:inherit;text-decoration:none;align-items:flex-start;transition:transform .2s ease,border-color .2s ease,background .2s ease}.help-item:hover{transform:translateY(-3px);border-color:#c9a7aa;background:#fff}.help-link-label{display:inline-block;margin-top:7px;color:#981b24;font-size:12px;font-weight:700}.help-before{margin-top:18px}@media(max-width:767px){.contact-grid{grid-template-columns:1fr}.contact-full{grid-column:auto}.help-grid{grid-template-columns:1fr}}


/* Graficzny wybór tematu - Kontakt */
.contact-topic-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.contact-topic{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  margin:0;
  border:1px solid #e4e4e4;
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.contact-topic:hover{
  border-color:#d71920;
  transform:translateY(-2px);
}
.contact-topic input{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  pointer-events:none;
}
.contact-topic-icon{
  width:42px;
  height:42px;
  min-width:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f5f5f5;
  color:#d71920;
  font-size:19px;
  transition:background .2s ease,color .2s ease;
}
.contact-topic-text{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.contact-topic-text strong{
  color:#222;
  font-size:14px;
  line-height:1.3;
}
.contact-topic-text small{
  margin-top:4px;
  color:#777;
  font-size:12px;
  line-height:1.45;
}
.contact-topic:has(input:checked){
  border-color:#d71920;
  box-shadow:0 0 0 3px rgba(215,25,32,.08);
}
.contact-topic:has(input:checked) .contact-topic-icon{
  background:linear-gradient(135deg,#d71920,#a70f14);
  color:#fff;
}
.contact-topic:has(input:focus-visible){
  outline:2px solid #d71920;
  outline-offset:2px;
}
@supports not selector(:has(*)){
  .contact-topic input:checked + .contact-topic-icon{
    background:#d71920;
    color:#fff;
  }
}
@media(max-width:767px){
  .contact-topic-grid{grid-template-columns:1fr}
}


/* =========================================================
   KALENDARZ
   ========================================================= */

.calendar-wrap{
  max-width:1100px;
  margin:0 auto;
}

.calendar-intro{
  margin-bottom:18px;
}

.calendar-events{
  display:grid;
  gap:14px;
}

.calendar-event{
  display:grid;
  grid-template-columns:92px minmax(0,1fr) 36px;
  align-items:center;
  gap:18px;

  padding:16px 18px;

  border:1px solid #e6e6e6;
  border-radius:10px;

  background:#fff;

  text-decoration:none!important;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.calendar-event:hover{
  transform:translateY(-2px);
  border-color:#d71920;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}

.calendar-date{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  min-height:84px;

  padding:10px 8px;

  border-radius:8px;

  background:linear-gradient(135deg,#d71920,#a70f14);

  color:#fff;
}

.calendar-day-name,
.calendar-month{
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:.7px;
}

.calendar-date strong{
  margin:5px 0 4px;

  font-size:30px;
  line-height:1;
  font-weight:700;
}

.calendar-event-main{
  min-width:0;
}

.calendar-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;

  margin-bottom:13px;
}

.calendar-time{
  display:inline-flex;
  align-items:center;
  gap:6px;

  color:#555;

  font-size:12px;
  font-weight:700;
}

.calendar-time i{
  color:#d71920;
}

.calendar-badge{
  display:inline-flex;
  align-items:center;

  padding:5px 9px;

  border-radius:999px;

  background:#f6eeee;

  color:#981b24;

  font-size:10px;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:.4px;
}

.calendar-badge-live{
  background:#eef7ef;
  color:#24743a;
}

.calendar-teams{
  display:grid;
  grid-template-columns:minmax(0,1fr) 42px minmax(0,1fr);
  align-items:center;
  gap:12px;
}

.calendar-team{
  display:flex;
  align-items:center;
  gap:12px;

  min-width:0;
}

.calendar-team-away{
  justify-content:flex-end;
  text-align:right;
}

.calendar-team span{
  color:#222;

  font-size:15px;
  font-weight:700;
  line-height:1.3;
}

.calendar-team-logo{
  width:52px;
  height:52px;
  min-width:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:6px;

  border:1px solid #eee;
  border-radius:50%;

  background:#fff;
}

.calendar-team-logo img{
  display:block;

  max-width:100%;
  max-height:100%;

  object-fit:contain;
}

.calendar-vs{
  display:flex;
  align-items:center;
  justify-content:center;

  width:40px;
  height:40px;

  border-radius:50%;

  background:#f4f4f4;

  color:#777;

  font-size:10px;
  font-weight:700;
}

.calendar-arrow{
  display:flex;
  align-items:center;
  justify-content:center;

  color:#bbb;

  font-size:20px;

  transition:color .2s ease,transform .2s ease;
}

.calendar-event:hover .calendar-arrow{
  color:#d71920;
  transform:translateX(2px);
}

.calendar-note{
  margin-top:20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:991px){

  .calendar-event{
    grid-template-columns:78px minmax(0,1fr) 28px;
    gap:14px;
  }

  .calendar-date{
    min-height:76px;
  }

  .calendar-date strong{
    font-size:27px;
  }

  .calendar-team-logo{
    width:46px;
    height:46px;
    min-width:46px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:767px){

  .calendar-event{
    grid-template-columns:64px minmax(0,1fr);

    gap:12px;

    padding:14px;
  }

  .calendar-arrow{
    display:none;
  }

  .calendar-date{
    min-height:70px;
  }

  .calendar-date strong{
    font-size:24px;
  }

  .calendar-meta{
    margin-bottom:11px;
  }

  .calendar-teams{
    grid-template-columns:1fr;
    gap:8px;
  }

  .calendar-team,
  .calendar-team-away{
    justify-content:flex-start;
    text-align:left;
  }

  .calendar-vs{
    width:auto;
    height:auto;

    justify-content:flex-start;

    background:none;

    font-size:9px;

    margin-left:58px;
  }

  .calendar-team-logo{
    width:44px;
    height:44px;
    min-width:44px;
  }

  .calendar-team span{
    font-size:14px;
  }

}




.requirements-wrap,
.auth-wrap,
.contact-wrap,
.help-center-wrap, .payments-wrap, .live-empty-wrap {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}




/* =========================================================
   STRONA TRANSMISJI
   wykorzystuje istniejacy design system PHTV
   ========================================================= */

.stream-wrap {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   UKLAD
   ========================================================= */

.stream-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 20px;
    align-items: start;
}

.stream-main {
    min-width: 0;
}

.stream-sidebar {
    display: grid;
    gap: 18px;
}


/* =========================================================
   PLAYER
   ========================================================= */

.stream-player-section {
    padding: 28px;
}

.stream-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;

    margin-top: 7px;

    border-radius: 9px;

    background: #111;
}

.stream-player iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   OPIS TRANSMISJI
   ========================================================= */

.stream-description {
    padding-top: 22px;
}

.stream-description h2 {
    margin: 0 0 9px;

    color: #232323;

    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}

.stream-description p {
    max-width: 750px;

    margin: 0;

    color: #696969;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   STATUS
   ========================================================= */

.stream-live-label {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 10px;

    color: #981b24;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.stream-live-label span {
    display: block;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #981b24;

    box-shadow:
        0 0 0 5px rgba(152, 27, 36, .07);
}


/* =========================================================
   PRAWA KOLUMNA
   ========================================================= */

.stream-sidebar-box {
    padding: 26px 24px;
}

.stream-sidebar-box h2 {
    margin: 0 0 19px;

    color: #232323;

    font-size: 19px;
    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   WYMAGANIA
   ========================================================= */

.stream-requirements {
    display: grid;

    gap: 11px;
}

.stream-requirements .requirement-item {
    padding: 14px;

    gap: 12px;
}

.stream-requirements .requirement-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    font-size: 17px;
}

.stream-requirements .requirement-item h3 {
    margin-bottom: 3px;

    font-size: 14px;
}

.stream-requirements .requirement-item p {
    margin: 0;

    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   LINK DO WYMAGAN
   ========================================================= */

.stream-more-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 18px;
    padding-top: 16px;

    border-top: 1px solid #e5e5e5;

    color: #981b24;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: color .2s ease;
}

.stream-more-link:hover {
    color: #710505;

    text-decoration: none;
}


/* =========================================================
   POMOC
   ========================================================= */

.stream-help {
    margin-top: 0;
}

.stream-help p {
    margin-bottom: 6px;
}

.stream-help a {
    color: #981b24;

    font-weight: 700;

    text-decoration: none;
}

.stream-help a:hover {
    text-decoration: underline;
}


/* =========================================================
   POWROT
   ========================================================= */

.stream-back {
    margin-top: 24px;
}

.stream-back .btn {
    min-width: 125px;

    padding: 10px 19px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .stream-layout {
        grid-template-columns: 1fr;
    }

    .stream-sidebar {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        align-items: stretch;
    }

    .stream-sidebar > * {
        height: 100%;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .stream-layout {
        gap: 16px;
    }

    .stream-sidebar {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .stream-player-section {
        padding: 20px 18px;
    }

    .stream-sidebar-box {
        padding: 22px 19px;
    }

    .stream-description {
        padding-top: 18px;
    }

    .stream-description h2 {
        font-size: 18px;
    }

    .stream-back .btn {
        width: 100%;
    }

}



/* =========================================================
   KALENDARZ - 2 MECZE W RZĘDZIE NA DUŻYCH EKRANACH
   ========================================================= */

@media (min-width: 1200px) {

    .calendar-events {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .calendar-event {
        grid-template-columns: 78px minmax(0, 1fr) 24px;
        gap: 14px;
        padding: 15px;
    }

    .calendar-date {
        min-height: 78px;
    }

    .calendar-date strong {
        font-size: 27px;
    }

    .calendar-teams {
        grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
        gap: 8px;
    }

    .calendar-team {
        gap: 8px;
    }

    .calendar-team-logo {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .calendar-team span {
        font-size: 13px;
    }

    .calendar-vs {
        width: 32px;
        height: 32px;
        font-size: 9px;
    }

    .calendar-meta {
        margin-bottom: 11px;
    }
}

/* =========================================================
   TRANSMISJA - SZCZEGÓŁY I ZAKUP
   bazuje na aktualnym auth.css
   ========================================================= */

.transmission-card{max-width:100%}

.transmission-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
  padding-bottom:20px;
  border-bottom:1px solid #e5e5e5;
}

.transmission-date-box{
  display:flex;
  align-items:center;
  gap:12px;
}

.transmission-date-box i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(152,27,36,.07);
  color:#981b24;
  font-size:18px;
}

.transmission-date-box div{
  display:flex;
  flex-direction:column;
}

.transmission-date-box strong{
  color:#232323;
  font-size:15px;
}

.transmission-date-box span{
  margin-top:2px;
  color:#777;
  font-size:13px;
}

.transmission-price{text-align:right}

.transmission-price span{
  display:block;
  margin-bottom:3px;
  color:#777;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}

.transmission-price strong{
  color:#981b24;
  font-size:26px;
  line-height:1;
}

.transmission-teams{
  display:grid;
  grid-template-columns:minmax(0,1fr) 70px minmax(0,1fr);
  align-items:center;
  gap:18px;
  padding:18px 0 30px;
}

.transmission-team{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}

.transmission-team span{
  color:#232323;
  font-size:20px;
  font-weight:700;
}

.transmission-logo{
  width:96px;
  height:96px;
  display:grid;
  place-items:center;
  padding:10px;
  border:1px solid #e4e4e4;
  border-radius:50%;
  background:#fff;
}

.transmission-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.transmission-vs{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin:auto;
  border-radius:50%;
  background:#f4f4f4;
  color:#777;
  font-size:12px;
  font-weight:700;
}

.transmission-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  padding-top:22px;
  border-top:1px solid #e5e5e5;
  flex-wrap:wrap;
}

.transmission-actions .btn{
  min-width:170px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
}

.transmission-buy-btn{
  border:1px solid #981b24;
  color:#981b24;
  background:#fff;
}

.transmission-buy-btn:hover{
  color:#fff;
  background:#981b24;
}


/* Zakup */

.purchase-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:20px;
  align-items:start;
}

.purchase-event,
.purchase-summary{min-width:0}

.purchase-teams{
  display:grid;
  grid-template-columns:minmax(0,1fr) 54px minmax(0,1fr);
  align-items:center;
  gap:14px;
  margin:22px 0 26px;
}

.purchase-team{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
}

.purchase-team span{
  color:#232323;
  font-size:17px;
  font-weight:700;
}

.purchase-logo{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  padding:8px;
  border:1px solid #e3e3e3;
  border-radius:50%;
  background:#fff;
}

.purchase-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.purchase-vs{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin:auto;
  border-radius:50%;
  background:#f4f4f4;
  color:#777;
  font-size:10px;
  font-weight:700;
}

.purchase-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  padding-top:18px;
  border-top:1px solid #e5e5e5;
}

.purchase-meta div{
  display:flex;
  align-items:center;
  gap:7px;
  color:#666;
  font-size:13px;
}

.purchase-meta i{color:#981b24}

.purchase-summary-row,
.purchase-summary-total{
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.purchase-summary-row{
  padding:18px 0;
  border-bottom:1px solid #e5e5e5;
  color:#666;
  font-size:14px;
}

.purchase-summary-total{
  align-items:flex-end;
  padding:20px 0 24px;
}

.purchase-summary-total span{
  color:#232323;
  font-size:15px;
  font-weight:700;
}

.purchase-summary-total strong{
  color:#981b24;
  font-size:27px;
  line-height:1;
}

.purchase-pay-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
}

.purchase-note{
  margin:16px 0 0;
  color:#777;
  font-size:12px;
  line-height:1.55;
}

@media(max-width:991px){
  .purchase-layout{grid-template-columns:1fr}
}

@media(max-width:767px){
  .transmission-top{
    align-items:flex-start;
    flex-direction:column;
  }

  .transmission-price{text-align:left}

  .transmission-teams{
    grid-template-columns:1fr;
    gap:14px;
  }

  .transmission-vs{
    width:auto;
    height:auto;
    background:none;
  }

  .transmission-logo{
    width:82px;
    height:82px;
  }

  .transmission-team span{font-size:18px}

  .transmission-actions .btn{width:100%}

  .purchase-teams{grid-template-columns:1fr}

  .purchase-vs{
    width:auto;
    height:auto;
    background:none;
  }
}


/* =========================================================
   TRANSMISJA V2 - EVENT HERO
   Dopisane do aktualnego auth.css, bez zmiany istniejących reguł
   ========================================================= */

.match-hero{
  position:relative;
  overflow:hidden;
  padding:30px 36px 32px;
  border-radius:12px;
  background:
    linear-gradient(125deg,rgba(18,22,27,.72) 0%,rgba(30,34,40,.62) 48%,rgba(84,9,14,.50) 100%),
    url("/img/transmission-bg.png") center center / cover no-repeat;
  color:#fff;
  box-shadow:0 18px 42px rgba(69,5,9,.15);
}

.match-hero-bg::before,
.match-hero-bg::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.match-hero-bg::before{
  width:330px;
  height:330px;
  right:-105px;
  top:-155px;
  border:1px solid rgba(255,255,255,.11);
  box-shadow:
    0 0 0 42px rgba(255,255,255,.025),
    0 0 0 90px rgba(255,255,255,.018);
}

.match-hero-bg::after{
  width:190px;
  height:190px;
  left:-90px;
  bottom:-110px;
  background:rgba(255,255,255,.035);
}

.match-hero-top{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.match-live-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.match-live-pill i{font-size:14px}

.match-price{
  text-align:right;
}

.match-price small{
  display:block;
  margin-bottom:3px;
  color:rgba(255,255,255,.72);
  font-size:10px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.match-price strong{
  color:#fff;
  font-size:30px;
  line-height:1;
  font-weight:700;
}

.match-teams{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) 160px minmax(0,1fr);
  align-items:center;
  gap:24px;
  padding:32px 0 30px;
}

.match-team{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:0;
  text-align:center;
}

.match-team-logo{
  width:126px;
  height:126px;
  display:grid;
  place-items:center;
  margin-bottom:15px;
  padding:14px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.15);
}

.match-team-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.match-team-label{
  margin-bottom:4px;
  color:rgba(255,255,255,.65);
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.match-team h2{
  margin:0;
  color:#fff;
  font-size:25px;
  line-height:1.15;
  font-weight:700;
}

.match-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:15px;
}

.match-date{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.match-date i{
  margin-bottom:6px;
  color:rgba(255,255,255,.76);
  font-size:17px;
}

.match-date strong{
  color:#fff;
  font-size:14px;
}

.match-date span{
  margin-top:3px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:600;
}

.match-vs{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  background:rgba(255,255,255,.09);
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.match-actions{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  gap:12px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.16);
}

.match-actions .btn{
  min-width:190px;
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:8px;
  font-weight:700;
}

.match-watch-btn{
  border:1px solid #fff;
  background:#fff;
  color:#861018;
}

.match-watch-btn:hover{
  background:#f3f3f3;
  color:#710505;
}

.match-buy-btn{
  border:1px solid rgba(255,255,255,.38);
  background:rgba(255,255,255,.09);
  color:#fff;
}

.match-buy-btn:hover{
  border-color:#fff;
  background:rgba(255,255,255,.16);
  color:#fff;
}

.match-access-note{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin:16px 0 0;
  color:rgba(255,255,255,.68);
  font-size:11px;
  text-align:center;
}

.match-info-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
  gap:18px;
  margin-top:18px;
}

.match-info-grid .requirements-box h2{
  margin:0 0 18px;
  color:#232323;
  font-size:20px;
}

.match-benefits{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.match-benefits .requirement-item{
  padding:15px;
  flex-direction:column;
}

.match-benefits .requirement-icon{
  margin-bottom:2px;
}

.match-tech-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.match-tech-list div{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid #e7e7e7;
  color:#666;
  font-size:13px;
}

.match-tech-list div:last-child{
  border-bottom:0;
}

.match-tech-list i{
  width:30px;
  color:#981b24;
  font-size:17px;
}

.match-tech-list strong{
  color:#232323;
}

.match-text-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:15px;
  padding-top:15px;
  border-top:1px solid #e5e5e5;
  color:#981b24;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}

.match-text-link:hover{
  color:#710505;
  text-decoration:none;
}

.match-support,
.purchase-support{
  margin-top:22px;
}

@media(max-width:991px){
  .match-teams{
    grid-template-columns:minmax(0,1fr) 120px minmax(0,1fr);
  }

  .match-info-grid{
    grid-template-columns:1fr;
  }

  .match-benefits{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media(max-width:767px){
  .match-hero{
    padding:24px 18px;
  }

  .match-hero-top{
    align-items:flex-start;
  }

  .match-price strong{
    font-size:24px;
  }

  .match-teams{
    grid-template-columns:1fr;
    gap:18px;
    padding:27px 0 24px;
  }

  .match-team-logo{
    width:96px;
    height:96px;
    margin-bottom:10px;
  }

  .match-team h2{
    font-size:20px;
  }

  .match-center{
    flex-direction:row;
    justify-content:center;
    gap:13px;
  }

  .match-date{
    align-items:flex-end;
    text-align:right;
  }

  .match-vs{
    width:48px;
    height:48px;
    min-width:48px;
  }

  .match-actions{
    flex-direction:column;
  }

  .match-actions .btn{
    width:100%;
  }

  .match-access-note{
    align-items:flex-start;
  }

  .match-benefits{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   TRANSMISJA V3 - PREMIUM OVERLAY NA TLE HOKEJOWYM
   Nadpisuje wyłącznie elementy hero transmisji
   ========================================================= */

.match-hero{
  position:relative;
  overflow:hidden;
  padding:34px 38px 34px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:
    linear-gradient(180deg,rgba(7,12,18,.32),rgba(7,10,15,.62)),
    url("/img/transmission-bg.png") center center / cover no-repeat;
  color:#fff;
  box-shadow:
    0 22px 55px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.match-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 38%,rgba(255,255,255,.08),transparent 34%),
    linear-gradient(90deg,rgba(110,5,10,.18),transparent 28%,transparent 72%,rgba(110,5,10,.18));
  z-index:0;
}

.match-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.match-hero-bg::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  right:-110px;
  top:-120px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 40px rgba(255,255,255,.015),
    0 0 0 82px rgba(255,255,255,.01);
}

.match-hero-bg::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  left:-80px;
  bottom:-100px;
  border-radius:50%;
  background:rgba(152,27,36,.12);
  filter:blur(2px);
}

.match-hero-top,
.match-teams,
.match-actions,
.match-access-note{
  position:relative;
  z-index:2;
}

.match-live-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:7px 12px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:rgba(12,16,22,.48);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.055em;
  text-transform:uppercase;
}

.match-live-pill i{
  color:#ff3a42;
  font-size:15px;
  filter:drop-shadow(0 0 8px rgba(255,58,66,.35));
}

.match-price{
  min-width:150px;
  padding:11px 14px 10px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:10px;
  background:rgba(10,14,20,.45);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 24px rgba(0,0,0,.12);
  text-align:right;
}

.match-price small{
  color:rgba(255,255,255,.68);
  letter-spacing:.08em;
}

.match-price strong{
  color:#fff;
  font-size:31px;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}

.match-teams{
  grid-template-columns:minmax(0,1fr) 170px minmax(0,1fr);
  gap:28px;
  padding:34px 0 32px;
}

.match-team{
  position:relative;
  padding:22px 18px 20px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:13px;
  background:linear-gradient(180deg,rgba(12,17,24,.42),rgba(8,12,18,.55));
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 14px 28px rgba(0,0,0,.11);
}

.match-team-logo{
  width:132px;
  height:132px;
  margin-top:-6px;
  margin-bottom:16px;
  padding:16px;
  border:1px solid rgba(255,255,255,.26);
  background:
    radial-gradient(circle at 35% 28%,#fff 0%,#f8f8f8 72%,#ececec 100%);
  box-shadow:
    0 14px 34px rgba(0,0,0,.2),
    0 0 0 7px rgba(255,255,255,.055);
}

.match-team-label{
  color:rgba(255,255,255,.58);
  letter-spacing:.11em;
}

.match-team h2{
  font-size:25px;
  text-shadow:0 2px 10px rgba(0,0,0,.22);
}

.match-center{
  gap:16px;
}

.match-date{
  min-width:150px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:10px;
  background:rgba(9,13,19,.42);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}

.match-date i{
  color:#ff454d;
}

.match-date strong{
  font-size:14px;
  letter-spacing:.015em;
}

.match-date span{
  color:rgba(255,255,255,.72);
  font-size:14px;
}

.match-vs{
  width:72px;
  height:72px;
  border:1px solid rgba(255,255,255,.28);
  background:
    radial-gradient(circle at 35% 30%,rgba(225,32,37,.95),rgba(113,5,5,.9));
  box-shadow:
    0 10px 24px rgba(60,0,4,.24),
    inset 0 1px 0 rgba(255,255,255,.14);
  color:#fff;
  font-size:14px;
  letter-spacing:.04em;
}

.match-actions{
  gap:14px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.18);
}

.match-actions .btn{
  min-width:200px;
  min-height:50px;
  border-radius:9px;
  font-size:14px;
  letter-spacing:.01em;
  box-shadow:0 10px 24px rgba(0,0,0,.13);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.match-actions .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}

.match-watch-btn{
  border:1px solid #fff;
  background:linear-gradient(180deg,#fff,#f2f2f2);
  color:#7d0d14;
}

.match-watch-btn i{
  font-size:18px;
}

.match-buy-btn{
  border:1px solid rgba(255,255,255,.42);
  background:linear-gradient(180deg,rgba(184,18,27,.9),rgba(121,8,14,.92));
  color:#fff;
}

.match-buy-btn:hover{
  border-color:rgba(255,255,255,.62);
  background:linear-gradient(180deg,rgba(207,24,34,.95),rgba(135,9,16,.96));
}

.match-access-note{
  width:max-content;
  max-width:100%;
  margin:17px auto 0;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(9,13,18,.33);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
  color:rgba(255,255,255,.72);
  font-size:11px;
}

.match-access-note i{
  color:#8fe2a1;
}

@media(max-width:991px){
  .match-teams{
    grid-template-columns:minmax(0,1fr) 135px minmax(0,1fr);
    gap:18px;
  }

  .match-team{
    padding:18px 14px;
  }

  .match-team-logo{
    width:108px;
    height:108px;
  }

  .match-team h2{
    font-size:21px;
  }
}

@media(max-width:767px){
  .match-hero{
    padding:22px 16px 24px;
    background-position:center center;
  }

  .match-hero-top{
    gap:12px;
  }

  .match-price{
    min-width:128px;
    padding:10px 11px;
  }

  .match-price strong{
    font-size:24px;
  }

  .match-teams{
    grid-template-columns:1fr;
    gap:14px;
    padding:24px 0 22px;
  }

  .match-team{
    width:100%;
    max-width:360px;
    margin:0 auto;
  }

  .match-center{
    flex-direction:column;
  }

  .match-date{
    align-items:center;
    text-align:center;
  }

  .match-vs{
    width:54px;
    height:54px;
  }

  .match-actions{
    flex-direction:column;
  }

  .match-actions .btn{
    width:100%;
  }

  .match-access-note{
    width:auto;
    border-radius:10px;
  }
}


/* =========================================================
   TRANSMISJA V4 - CLEAN SPORT HERO
   prostszy, bardziej elegancki i spójny z PHTV
   ========================================================= */

.match-hero{
  position:relative;
  overflow:hidden;
  padding:34px 42px 32px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:
    linear-gradient(180deg,rgba(8,12,18,.32),rgba(8,11,16,.68)),
    url("/img/transmission-bg.png") center center / cover no-repeat;
  color:#fff;
  box-shadow:0 16px 38px rgba(0,0,0,.14);
}

.match-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(90,4,9,.22),transparent 25%,transparent 75%,rgba(90,4,9,.22));
}

.match-hero-bg{
  display:none;
}

.match-hero-top,
.match-teams,
.match-actions,
.match-access-note{
  position:relative;
  z-index:2;
}

.match-live-pill{
  min-height:auto;
  padding:6px 10px;
  border:0;
  border-radius:5px;
  background:#981b24;
  color:#fff;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  font-size:10px;
  letter-spacing:.05em;
}

.match-live-pill i{
  color:#fff;
  filter:none;
  font-size:13px;
}

.match-price{
  min-width:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.match-price small{
  color:rgba(255,255,255,.68);
  font-size:10px;
  letter-spacing:.05em;
}

.match-price strong{
  color:#fff;
  font-size:28px;
  text-shadow:0 2px 8px rgba(0,0,0,.25);
}

.match-teams{
  grid-template-columns:minmax(0,1fr) 150px minmax(0,1fr);
  gap:28px;
  padding:38px 0 34px;
}

.match-team{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.match-team-logo{
  width:128px;
  height:128px;
  margin:0 0 16px;
  padding:15px;
  border:0;
  border-radius:50%;
  background:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}

.match-team-label{
  color:rgba(255,255,255,.55);
  font-size:9px;
  letter-spacing:.09em;
}

.match-team h2{
  margin:0;
  color:#fff;
  font-size:24px;
  line-height:1.15;
  text-shadow:0 2px 8px rgba(0,0,0,.24);
}

.match-center{
  gap:12px;
}

.match-date{
  min-width:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.match-date i{
  margin-bottom:5px;
  color:#fff;
  font-size:15px;
}

.match-date strong{
  color:#fff;
  font-size:13px;
}

.match-date span{
  color:rgba(255,255,255,.7);
  font-size:13px;
}

.match-vs{
  width:58px;
  height:58px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:50%;
  background:rgba(0,0,0,.28);
  box-shadow:none;
  color:#fff;
  font-size:12px;
}

.match-actions{
  gap:12px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.16);
}

.match-actions .btn{
  min-width:185px;
  min-height:46px;
  border-radius:7px;
  box-shadow:none;
  font-size:13px;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}

.match-actions .btn:hover{
  transform:translateY(-1px);
  box-shadow:none;
}

.match-watch-btn{
  border:1px solid #fff;
  background:#fff;
  color:#7b0b12;
}

.match-watch-btn:hover{
  background:#f3f3f3;
  color:#710505;
}

.match-buy-btn{
  border:1px solid #b11922;
  background:#981b24;
  color:#fff;
}

.match-buy-btn:hover{
  border-color:#7c0b12;
  background:#7c0b12;
  color:#fff;
}

.match-access-note{
  width:auto;
  max-width:100%;
  margin:14px 0 0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  color:rgba(255,255,255,.62);
  font-size:10px;
}

.match-access-note i{
  color:#fff;
}

@media(max-width:991px){
  .match-teams{
    grid-template-columns:minmax(0,1fr) 120px minmax(0,1fr);
  }

  .match-team-logo{
    width:108px;
    height:108px;
  }

  .match-team h2{
    font-size:21px;
  }
}

@media(max-width:767px){
  .match-hero{
    padding:22px 18px 24px;
  }

  .match-hero-top{
    align-items:flex-start;
  }

  .match-price strong{
    font-size:23px;
  }

  .match-teams{
    grid-template-columns:1fr;
    gap:18px;
    padding:28px 0 24px;
  }

  .match-team-logo{
    width:94px;
    height:94px;
    margin-bottom:10px;
  }

  .match-team h2{
    font-size:19px;
  }

  .match-center{
    flex-direction:row;
    justify-content:center;
    gap:14px;
  }

  .match-date{
    align-items:flex-end;
    text-align:right;
  }

  .match-vs{
    width:46px;
    height:46px;
    min-width:46px;
  }

  .match-actions{
    flex-direction:column;
  }

  .match-actions .btn{
    width:100%;
  }

  .match-access-note{
    text-align:center;
  }
}


/* =========================================================
   PRZYCISK POWROT - TRANSMISJA / ZAKUP
   prosty styl zgodny z przyciskiem na stronach news
   ========================================================= */

.news-back-wrap{
  margin-top:24px;
}

.news-back-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:9px 18px;
  border:1px solid #d9d9d9;
  border-radius:5px;
  background:#fff;
  color:#333;
  font-family:inherit;
  font-size:13px;
  font-weight:600;
  line-height:1;
  cursor:pointer;
  transition:
    border-color .2s ease,
    color .2s ease,
    background .2s ease;
}

.news-back-btn i{
  color:#981b24;
  font-size:14px;
}

.news-back-btn:hover{
  border-color:#981b24;
  background:#fff;
  color:#981b24;
}

@media(max-width:767px){
  .news-back-btn{
    width:100%;
  }
}



/* Poprawione kadrowanie logotypów drużyn */

.match-team-logo,
.transmission-logo,
.purchase-logo,
.calendar-team-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #fff;
}

/* Strona transmisji */
.match-team-logo {
    width: 128px;
    height: 128px;
    padding: 18px;
}

/* Widok szczegółów transmisji */
.transmission-logo {
    width: 96px;
    height: 96px;
    padding: 14px;
}

/* Zakup transmisji */
.purchase-logo {
    width: 78px;
    height: 78px;
    padding: 12px;
}

/* Kalendarz */
.calendar-team-logo {
    width: 52px;
    height: 52px;
    padding: 7px;
}


/* Najważniejsza zmiana */
.match-team-logo img,
.transmission-logo img,
.purchase-logo img,
.calendar-team-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    max-width: none;
    max-height: none;
}