.portal-summary {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.portal-list {
    overflow: hidden;
}

.portal-list-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    border-bottom: 1px solid var(--glass-border);
    transition: background .2s ease, border-color .2s ease;
}

.portal-list-item:last-child {
    border-bottom: 0;
}

.portal-list-item:hover {
    background: rgba(255, 255, 255, .035);
}

.portal-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-family: 'Oxanium', sans-serif;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.portal-item-title {
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.portal-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-color);
    font-family: 'Oxanium', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.portal-detail-link:hover {
    text-shadow: 0 0 10px var(--primary-glow);
}

.portal-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.portal-back:hover {
    color: var(--primary-color);
}

.tournament-frame-card {
    overflow: hidden;
    padding: 12px;
}

.tournament-frame {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 5px;
    background: rgba(0, 0, 0, .45);
}

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

.dealer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 360px;
    padding: 28px 22px;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dealer-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    background: rgba(197, 160, 89, .07);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .28);
}

.dealer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: rgba(0, 0, 0, .28);
}

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

.dealer-card h2 {
    margin-bottom: 7px;
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

.dealer-card p {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 13px;
}

.dealer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.dealer-badge {
    padding: 4px 10px;
    border: 1px solid rgba(197, 160, 89, .28);
    border-radius: 20px;
    background: rgba(197, 160, 89, .09);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.dealer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background: var(--btn-primary-bg);
    color: #111;
    font-family: 'Oxanium', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.payment-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    padding: 24px;
}

.payment-bonus,
.payment-provider,
.payment-notice {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-bonus > strong {
    padding: 9px 14px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #111;
    font-family: 'Oxanium', sans-serif;
    font-size: 32px;
    line-height: 1;
}

.payment-bonus > span {
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.payment-bonus small {
    color: var(--primary-color);
    font-size: 10px;
}

.payment-provider {
    padding: 12px 16px;
    border: 1px solid rgba(197, 160, 89, .25);
    border-radius: 6px;
    background: rgba(197, 160, 89, .08);
    color: var(--text-muted);
    font-size: 13px;
}

.payment-provider i,
.payment-provider strong {
    color: var(--primary-color);
}

.payment-notice {
    margin-bottom: 20px;
    padding: 13px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 13px;
}

.payment-notice a {
    margin-left: auto;
    color: var(--primary-color);
    font-weight: 800;
}

.payment-notice-success {
    border-color: rgba(80, 250, 123, .25);
    background: rgba(80, 250, 123, .07);
    color: #a7f3d0;
}

.payment-notice-error {
    border-color: rgba(255, 85, 85, .28);
    background: rgba(255, 85, 85, .08);
    color: #fecaca;
}

.payment-message {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 13px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    user-select: none;
}

.payment-message.success,
.payment-message.error {
    display: flex;
}

.payment-message i {
    flex: 0 0 auto;
}

.payment-message.success {
    border: 1px solid rgba(80, 250, 123, .25);
    background: rgba(80, 250, 123, .08);
    color: #a7f3d0;
}

.payment-message.error {
    border: 1px solid rgba(255, 85, 85, .28);
    background: rgba(255, 85, 85, .08);
    color: #fecaca;
}

.voucher-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.voucher-card-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 18px;
    transition: transform .2s ease, border-color .2s ease;
}

.voucher-card-modern:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.voucher-bonus-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 4px;
    background: var(--primary-color);
    color: #111;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.voucher-image-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin-bottom: 16px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .3);
    overflow: hidden;
}

.voucher-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.voucher-card-modern h2 {
    min-height: 44px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    font-size: 14px;
}

.voucher-price-modern {
    margin-bottom: 8px;
    color: #50fa7b;
    font-family: 'Oxanium', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.voucher-card-modern p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 11px;
}

.voucher-card-modern p i {
    color: var(--primary-color);
}

.voucher-buy-button:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: .45;
}

.payment-page .avci-chat-launcher {
    min-width: 54px;
    padding-right: 8px;
}

.payment-page .avci-launcher-copy {
    display: none;
}

.payment-page .avci-launcher-pulse {
    right: 4px;
    top: 4px;
}

.download-page {
    max-width: 1100px;
}

.download-page .portal-summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.download-page .portal-summary i {
    color: var(--primary-color);
}

.download-hero-modern {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding: 25px 28px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13,15,18,.96), rgba(13,15,18,.88)),
        url('../../Public/Web/img/bg/third_about_bg.jpg') center 38% / cover no-repeat;
}

.download-hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: .65;
}

.download-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(197,160,89,.3);
    border-radius: 12px;
    background: rgba(197,160,89,.1);
    color: var(--primary-color);
    font-size: 23px;
    box-shadow: inset 0 0 18px rgba(197,160,89,.05);
}

.download-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font: 800 9px 'Oxanium', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.download-hero-modern h2 {
    margin: 0 0 7px;
    color: #fff;
    font: 800 20px 'Oxanium', sans-serif;
}

.download-hero-modern p {
    max-width: 650px;
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.download-safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(80,250,123,.19);
    border-radius: 20px;
    background: rgba(80,250,123,.07);
    color: #83e9a3;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.download-list-modern {
    display: grid;
    gap: 14px;
}

.download-card-modern {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 105px;
    padding: 18px 20px;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.download-card-modern:hover {
    transform: translateY(-3px);
    border-color: rgba(197,160,89,.42);
    background: rgba(197,160,89,.055);
    box-shadow: 0 16px 35px rgba(0,0,0,.28), 0 0 16px rgba(197,160,89,.045);
}

.download-provider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(197,160,89,.22);
    border-radius: 10px;
    background: rgba(197,160,89,.075);
    color: var(--primary-color);
    font-size: 21px;
    transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.download-card-modern:hover .download-provider-icon {
    background: var(--primary-color);
    color: #111;
    box-shadow: 0 0 18px var(--primary-glow);
}

.download-card-content {
    display: block;
    min-width: 0;
}

.download-card-content small {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font: 800 9px 'Oxanium', sans-serif;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.download-card-content strong {
    display: block;
    overflow: hidden;
    margin-bottom: 7px;
    color: #fff;
    font: 800 15px 'Oxanium', sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-card-content > span {
    color: var(--text-muted);
    font-size: 11px;
}

.download-card-content > span i {
    margin-right: 5px;
    color: #50fa7b;
    font-size: 9px;
}

.download-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-file-size {
    padding: 7px 10px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    background: rgba(255,255,255,.018);
    color: var(--primary-color);
    font: 800 11px 'Oxanium', sans-serif;
    white-space: nowrap;
}

.download-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 98px;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background: var(--btn-primary-bg);
    color: #111;
    font: 900 10px 'Oxanium', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 5px 18px var(--btn-primary-shadow);
}

.download-empty-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 150px;
    padding: 30px;
    text-align: left;
}

.download-empty-modern > i {
    color: var(--primary-color);
    font-size: 25px;
}

.download-empty-modern strong,
.download-empty-modern span {
    display: block;
}

.download-empty-modern strong {
    margin-bottom: 5px;
    color: #fff;
    font: 800 14px 'Oxanium', sans-serif;
}

.download-empty-modern span {
    color: var(--text-muted);
    font-size: 12px;
}

.download-help-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 12px;
}

.download-help-note i,
.download-help-note a {
    color: var(--primary-color);
}

.download-help-note a {
    font-weight: 800;
}

.download-redesign-page {
    max-width: 1240px;
}

.download-redesign-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
    gap: 22px;
    align-items: start;
}

.download-panel,
.download-support-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 145, 31, .24);
    border-radius: 10px;
    background:
        radial-gradient(circle at 50% 0, rgba(245, 158, 11, .12), transparent 34%),
        linear-gradient(180deg, rgba(30, 18, 8, .82), rgba(9, 7, 6, .93));
    box-shadow: 0 20px 42px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.035);
}

.download-panel::before,
.download-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 205, 61, .85), transparent);
    pointer-events: none;
}

.download-panel-head {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(220, 145, 31, .22);
    background: linear-gradient(180deg, rgba(245, 158, 11, .08), rgba(0,0,0,0));
}

.download-panel-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #f4a52b;
    font: 900 21px 'Oxanium', sans-serif;
    letter-spacing: -.3px;
    text-transform: uppercase;
}

.download-panel-head h2 i {
    color: #f59e0b;
    text-shadow: 0 0 14px rgba(245, 158, 11, .32);
}

.download-panel-body {
    padding: 34px 42px 42px;
}

.download-intro {
    max-width: 520px;
    margin: 0 0 22px;
    color: #8d95a4;
    font-size: 14px;
    line-height: 1.75;
}

.download-featured-link {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 84px;
    padding: 15px 18px;
    border: 1px solid rgba(245, 158, 11, .46);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(245, 158, 11, .13), rgba(0,0,0,.26)),
        rgba(0,0,0,.35);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.download-featured-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 196, 52, .78);
    background:
        linear-gradient(90deg, rgba(245, 158, 11, .18), rgba(0,0,0,.2)),
        rgba(0,0,0,.42);
    box-shadow: 0 15px 34px rgba(0,0,0,.32), 0 0 18px rgba(245, 158, 11, .12);
}

.download-featured-icon,
.download-alt-icon,
.download-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(245, 158, 11, .35);
    background: linear-gradient(145deg, rgba(245, 158, 11, .28), rgba(245, 158, 11, .08));
    color: #fff0c9;
    box-shadow: inset 0 1px rgba(255,255,255,.08), 0 0 20px rgba(245,158,11,.08);
}

.download-featured-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: #fff;
    font-size: 21px;
}

.download-featured-copy {
    min-width: 0;
}

.download-featured-copy strong,
.download-alt-copy strong {
    display: block;
    overflow: hidden;
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-featured-copy strong {
    margin-bottom: 5px;
    font-size: 17px;
}

.download-featured-copy small,
.download-alt-copy small {
    display: block;
    color: #7f8794;
    font-size: 12px;
}

.download-featured-badges {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.download-featured-badges em,
.download-featured-badges b,
.download-alt-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 0 9px;
    border-radius: 6px;
    font: 900 10px 'Oxanium', sans-serif;
    font-style: normal;
    white-space: nowrap;
}

.download-featured-badges em {
    border: 1px solid rgba(255,255,255,.11);
    background: rgba(255,255,255,.035);
    color: #f5c46d;
}

.download-featured-badges b,
.download-alt-tag {
    border: 1px solid rgba(117, 176, 255, .32);
    background: rgba(45, 119, 255, .12);
    color: #f5a12a;
}

.download-alt-header {
    margin-top: 38px;
}

.download-alt-header h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
    color: #f59e0b;
    font: 800 14px 'Oxanium', sans-serif;
}

.download-alt-header h3::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(255,255,255,.24), transparent);
}

.download-alt-list {
    display: grid;
    gap: 14px;
}

.download-alt-link,
.download-alt-empty {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto 18px;
    gap: 14px;
    align-items: center;
    min-height: 76px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    background: rgba(0,0,0,.46);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.download-alt-link:hover {
    transform: translateX(4px);
    border-color: rgba(245, 158, 11, .42);
    background: rgba(245, 158, 11, .07);
}

.download-alt-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #f59e0b;
    font-size: 18px;
}

.download-alt-copy {
    min-width: 0;
}

.download-alt-copy strong {
    margin-bottom: 4px;
    font-size: 14px;
}

.download-alt-open {
    color: #6f7b8d;
    font-size: 13px;
    transition: color .2s ease, transform .2s ease;
}

.download-alt-link:hover .download-alt-open {
    color: #f59e0b;
    transform: translate(2px, -2px);
}

.download-alt-empty {
    grid-template-columns: 32px minmax(0, 1fr);
    color: #8d95a4;
    font-size: 13px;
}

.download-alt-empty i {
    color: #f59e0b;
}

.download-side-stack {
    display: grid;
    gap: 24px;
}

.download-requirements-panel {
    min-height: 518px;
}

.download-requirements-table {
    padding: 38px 42px;
}

.download-req-head,
.download-req-row {
    display: grid;
    grid-template-columns: 1.02fr 1fr 1.12fr;
    gap: 20px;
    align-items: center;
}

.download-req-head {
    padding: 0 14px 16px;
    border-bottom: 1px solid rgba(245, 158, 11, .22);
    color: #f5efe5;
    font: 900 13px 'Oxanium', sans-serif;
    text-transform: uppercase;
}

.download-req-row {
    min-height: 58px;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255,255,255,.045);
    color: #d6d8de;
    font-size: 13px;
    line-height: 1.35;
}

.download-req-row:last-child {
    border-bottom: 0;
}

.download-req-row:nth-child(even) {
    background: rgba(245, 158, 11, .028);
}

.download-req-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #f59e0b;
    font-weight: 800;
}

.download-req-label i {
    width: 16px;
    text-align: center;
}

.download-support-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
}

.download-support-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    color: #f59e0b;
    font-size: 22px;
}

.download-support-card h3 {
    margin: 0 0 5px;
    color: #fff;
    font: 900 18px 'Oxanium', sans-serif;
}

.download-support-card p {
    margin: 0 0 9px;
    color: #8d95a4;
    font-size: 13px;
    line-height: 1.5;
}

.download-support-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f59e0b;
    font: 900 12px 'Oxanium', sans-serif;
    text-decoration: none;
}

.download-support-card a:hover {
    color: #ffd36a;
}

@media (max-width: 720px) {
    .portal-list-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .portal-detail-link {
        margin-top: 5px;
    }

    .tournament-frame-card {
        padding: 6px;
    }

    .payment-hero {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-notice {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .payment-notice a {
        width: 100%;
        margin-left: 0;
    }

    .voucher-grid-modern {
        grid-template-columns: 1fr;
    }

    .download-hero-modern {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 20px;
    }

    .download-safe-badge {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .download-card-modern {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        padding: 16px;
    }

    .download-provider-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .download-card-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
        padding-top: 4px;
    }

    .download-card-content strong {
        white-space: normal;
    }
}

@media (min-width: 721px) and (max-width: 1024px) {
    .voucher-grid-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .portal-summary {
        width: 100%;
        font-size: 11px;
        line-height: 1.45;
    }

    .portal-list {
        overflow: hidden;
        border-radius: 10px;
    }

    .portal-list-item {
        padding: 14px;
    }

    .portal-date {
        font-size: 11px;
    }

    .portal-item-title {
        font-size: 13px;
        line-height: 1.35;
    }

    .payment-hero,
    .payment-bonus,
    .payment-provider,
    .payment-notice {
        gap: 11px;
    }

    .payment-bonus,
    .payment-provider,
    .payment-notice {
        padding: 13px;
    }

    .payment-bonus > strong {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .voucher-card-modern {
        padding: 14px;
        border-radius: 12px;
    }

    .voucher-image-modern {
        height: 188px;
    }

    .voucher-card-modern h2 {
        font-size: 16px;
        line-height: 1.45;
    }

    .voucher-price-modern {
        font-size: 23px;
    }

    .download-hero-modern {
        grid-template-columns: 1fr;
        padding: 18px;
        text-align: left;
    }

    .download-hero-icon {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .download-hero-modern h2 {
        font-size: 19px;
        line-height: 1.3;
    }

    .download-card-modern {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 14px;
        border-radius: 12px;
    }

    .download-provider-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .download-card-content strong {
        font-size: 13px;
        line-height: 1.45;
    }

    .download-card-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .download-action-button,
    .download-file-size {
        width: 100%;
        min-height: 38px;
        justify-content: center;
    }

    .download-help-note {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 1180px) {
    .download-redesign-grid {
        grid-template-columns: 1fr;
    }

    .download-requirements-panel {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .download-panel-head {
        min-height: 56px;
        padding: 0 16px;
    }

    .download-panel-head h2 {
        font-size: 16px;
        line-height: 1.25;
    }

    .download-panel-body,
    .download-requirements-table {
        padding: 22px 16px;
    }

    .download-featured-link {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .download-featured-badges {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .download-alt-link {
        grid-template-columns: 42px minmax(0, 1fr) 18px;
    }

    .download-alt-tag {
        grid-column: 2 / 3;
        justify-self: start;
    }

    .download-alt-open {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .download-req-head {
        display: none;
    }

    .download-req-row {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.06);
        border-radius: 9px;
        background: rgba(0,0,0,.28);
    }

    .download-requirements-table {
        display: grid;
        gap: 10px;
    }

    .download-req-row span:nth-child(2)::before {
        content: 'Minimum: ';
        color: #7f8794;
        font-weight: 800;
    }

    .download-req-row span:nth-child(3)::before {
        content: 'Önerilen: ';
        color: #7f8794;
        font-weight: 800;
    }

    .download-support-card {
        grid-template-columns: 1fr;
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .download-redesign-page {
        padding-right: 12px;
        padding-left: 12px;
    }

    .download-featured-link,
    .download-alt-link {
        border-radius: 12px;
    }

    .download-featured-copy strong,
    .download-alt-copy strong {
        white-space: normal;
        line-height: 1.35;
    }

    .download-featured-badges,
    .download-featured-badges em,
    .download-featured-badges b {
        width: 100%;
    }

    .download-featured-badges {
        align-items: stretch;
        flex-direction: column;
    }

    .download-alt-link {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .download-alt-open {
        display: none;
    }

    .download-alt-tag {
        grid-column: 1 / -1;
    }
}

.download-command-page {
    max-width: 1280px;
}

.download-command-page .page-heading {
    margin-bottom: 22px;
}

.download-command-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 28px;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 34px;
    border: 1px solid rgba(246, 200, 95, .18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 78% 18%, rgba(246,200,95,.22), transparent 28%),
        radial-gradient(circle at 12% 82%, rgba(75, 111, 255, .16), transparent 34%),
        linear-gradient(135deg, rgba(13, 18, 30, .96), rgba(7, 8, 12, .98)),
        url('../../Public/Web/img/bg/third_about_bg.jpg') center / cover no-repeat;
    box-shadow: 0 28px 70px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.05);
    isolation: isolate;
}

.download-command-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.12)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 92px);
    opacity: .78;
}

.download-command-hero::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(246,200,95,.22);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(246,200,95,.11), transparent 60%);
    pointer-events: none;
}

.download-command-copy {
    position: relative;
    z-index: 1;
    align-self: center;
    max-width: 690px;
}

.download-command-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: 1px solid rgba(246,200,95,.32);
    border-radius: 999px;
    background: rgba(246,200,95,.08);
    color: #f6c85f;
    font: 900 11px 'Oxanium', sans-serif;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.download-command-copy h2 {
    max-width: 720px;
    margin: 0 0 14px;
    color: #fff;
    font: 950 clamp(32px, 5vw, 60px) / .98 'Oxanium', sans-serif;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    text-shadow: 0 8px 30px rgba(0,0,0,.55);
}

.download-command-copy p {
    max-width: 620px;
    margin: 0;
    color: #a9b2c2;
    font-size: 15px;
    line-height: 1.8;
}

.download-command-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.download-command-stats span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(0,0,0,.26);
    color: #9aa5b6;
    font-size: 12px;
}

.download-command-stats b {
    color: #f6c85f;
    font: 900 12px 'Oxanium', sans-serif;
}

.download-command-main-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 330px;
    padding: 22px;
    border: 1px solid rgba(246,200,95,.26);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
        rgba(2, 5, 12, .72);
    box-shadow: 0 24px 54px rgba(0,0,0,.36), inset 0 1px rgba(255,255,255,.07);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.download-command-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.download-command-card-top span,
.download-command-card-top em {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    border-radius: 999px;
    font: 900 10px 'Oxanium', sans-serif;
    text-transform: uppercase;
}

.download-command-card-top span {
    gap: 7px;
    color: #f6c85f;
}

.download-command-card-top em {
    padding: 0 10px;
    border: 1px solid rgba(80,250,123,.24);
    background: rgba(80,250,123,.08);
    color: #7fffa3;
    font-style: normal;
}

.download-command-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border: 1px solid rgba(246,200,95,.4);
    border-radius: 20px;
    background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.22), transparent 34%), linear-gradient(145deg, #f6c85f, #b77818);
    color: #111;
    font-size: 30px;
    box-shadow: 0 20px 34px rgba(246,200,95,.18);
}

.download-command-main-card h2 {
    margin: 0 0 18px;
    color: #fff;
    font: 900 21px/1.25 'Oxanium', sans-serif;
}

.download-command-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 18px;
}

.download-command-meta span {
    display: block;
    min-width: 0;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    background: rgba(0,0,0,.2);
    color: #e9edf5;
    font: 900 12px 'Oxanium', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-command-meta small {
    display: block;
    margin-bottom: 4px;
    color: #7d8797;
    font: 700 9px 'Outfit', sans-serif;
    text-transform: uppercase;
}

.download-command-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffe173, #f59e0b 60%, #ff8a00);
    color: #141006;
    font: 950 13px 'Oxanium', sans-serif;
    letter-spacing: .5px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(245,158,11,.24);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.download-command-cta:hover {
    color: #141006;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(245,158,11,.34);
}

.download-command-empty {
    display: grid;
    place-items: center;
    min-height: 260px;
    color: #9aa5b6;
    text-align: center;
}

.download-command-empty i {
    color: #f6c85f;
    font-size: 34px;
}

.download-command-empty strong {
    color: #fff;
    font: 900 16px 'Oxanium', sans-serif;
}

.download-command-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
}

.download-mirror-zone,
.download-install-card,
.download-spec-cards,
.download-help-strip {
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16,20,29,.78), rgba(8,10,15,.92));
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.download-mirror-zone {
    padding: 22px;
}

.download-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.download-section-title span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font: 950 16px 'Oxanium', sans-serif;
    text-transform: uppercase;
}

.download-section-title span i {
    color: #f6c85f;
}

.download-section-title small {
    color: #748094;
    font-size: 11px;
}

.download-section-title.compact {
    margin-bottom: 13px;
}

.download-mirror-grid {
    display: grid;
    gap: 12px;
}

.download-mirror-card {
    display: grid;
    grid-template-columns: 52px 48px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
        rgba(0,0,0,.22);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.download-mirror-card:hover {
    transform: translateX(5px);
    border-color: rgba(246,200,95,.38);
    background: rgba(246,200,95,.055);
}

.download-mirror-card.is-primary {
    border-color: rgba(246,200,95,.32);
    background:
        radial-gradient(circle at 0 50%, rgba(246,200,95,.14), transparent 32%),
        rgba(0,0,0,.28);
}

.download-mirror-number {
    color: rgba(246,200,95,.5);
    font: 950 24px 'Oxanium', sans-serif;
}

.download-mirror-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    color: #f6c85f;
    font-size: 19px;
}

.download-mirror-copy {
    min-width: 0;
}

.download-mirror-copy strong {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    color: #fff;
    font: 900 15px 'Oxanium', sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-mirror-copy small {
    display: block;
    overflow: hidden;
    color: #7f8794;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-mirror-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(246,200,95,.25);
    border-radius: 999px;
    color: #f6c85f;
    font: 900 10px 'Oxanium', sans-serif;
    text-transform: uppercase;
}

.download-mirror-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 110px;
    padding: 18px;
    color: #9aa5b6;
}

.download-mirror-empty i {
    color: #f6c85f;
    font-size: 26px;
}

.download-install-zone {
    display: grid;
    gap: 18px;
}

.download-install-card,
.download-spec-cards {
    padding: 20px;
}

.download-install-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 17px;
    color: #fff;
    font: 950 16px 'Oxanium', sans-serif;
    text-transform: uppercase;
}

.download-install-card h2 i {
    color: #f6c85f;
}

.download-install-card ol {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: install-step;
}

.download-install-card li {
    position: relative;
    min-height: 58px;
    padding: 11px 11px 11px 52px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 13px;
    background: rgba(0,0,0,.18);
    counter-increment: install-step;
}

.download-install-card li::before {
    content: counter(install-step);
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: rgba(246,200,95,.14);
    color: #f6c85f;
    font: 950 12px 'Oxanium', sans-serif;
}

.download-install-card b,
.download-install-card span {
    display: block;
}

.download-install-card b {
    margin-bottom: 3px;
    color: #fff;
    font-size: 13px;
}

.download-install-card span {
    color: #7f8794;
    font-size: 12px;
}

.download-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.download-spec-card {
    min-height: 112px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 14px;
    background: rgba(0,0,0,.2);
}

.download-spec-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 11px;
    border-radius: 10px;
    background: rgba(246,200,95,.12);
    color: #f6c85f;
}

.download-spec-card strong,
.download-spec-card span {
    display: block;
}

.download-spec-card strong {
    margin-bottom: 5px;
    color: #fff;
    font: 900 12px 'Oxanium', sans-serif;
}

.download-spec-card span {
    color: #8e98aa;
    font-size: 11px;
    line-height: 1.35;
}

.download-help-strip {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 15px;
}

.download-help-strip > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(80,250,123,.1);
    color: #7fffa3;
}

.download-help-strip strong,
.download-help-strip span {
    display: block;
}

.download-help-strip strong {
    color: #fff;
    font: 900 13px 'Oxanium', sans-serif;
}

.download-help-strip span {
    color: #7f8794;
    font-size: 11px;
    line-height: 1.35;
}

.download-help-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(246,200,95,.12);
    color: #f6c85f;
    font: 900 10px 'Oxanium', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .download-command-hero,
    .download-command-layout {
        grid-template-columns: 1fr;
    }

    .download-command-main-card {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .download-command-hero {
        padding: 22px;
        border-radius: 18px;
    }

    .download-command-copy h2 {
        font-size: 34px;
        line-height: 1.05;
    }

    .download-command-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .download-command-meta,
    .download-spec-grid {
        grid-template-columns: 1fr;
    }

    .download-mirror-zone,
    .download-install-card,
    .download-spec-cards {
        padding: 16px;
        border-radius: 16px;
    }

    .download-section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .download-mirror-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
    }

    .download-mirror-number {
        display: none;
    }

    .download-mirror-action {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .download-help-strip {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .download-help-strip a {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .download-command-page {
        padding-right: 12px;
        padding-left: 12px;
    }

    .download-command-hero {
        padding: 18px;
    }

    .download-command-copy h2 {
        font-size: 29px;
    }

    .download-command-main-card {
        padding: 16px;
        border-radius: 15px;
    }

    .download-command-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .download-command-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        font-size: 24px;
    }

    .download-mirror-copy strong,
    .download-mirror-copy small {
        white-space: normal;
    }
}
