:root {
    --page-bg-1: #030f1f;
    --page-bg-2: #051d35;
    --page-bg-3: #08375c;
    --surface: #f0f7fd;
    --surface-soft: #e8f3fb;
    --surface-white: #ffffff;
    --surface-blue: #dbeefa;
    --text-main: #061a30;
    --text-soft: #334d63;
    --text-muted: #64778a;
    --blue-deep: #061a30;
    --blue-dark: #082d4e;
    --blue-main: #0d66a8;
    --blue-light: #1b8bd3;
    --blue-cyan: #20bde8;
    --login-1: #0c63a7;
    --login-2: #18a7d7;
    --login-3: #63d6ff;
    --alt-1: #071f38;
    --alt-2: #0d548f;
    --alt-3: #1886cc;
    --border-soft: rgba(8, 45, 78, 0.12);
    --border-blue: rgba(27, 139, 211, 0.22);
    --shadow-main: 0 34px 90px rgba(0, 9, 22, 0.34);
    --shadow-soft: 0 16px 42px rgba(3, 19, 38, 0.11);
    --shadow-button: 0 14px 34px rgba(10, 79, 132, 0.22);
    --radius-main: 28px;
    --radius-card: 18px;
    --radius-button: 13px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 0%, rgba(32, 189, 232, 0.18), transparent 32%),
        radial-gradient(circle at 92% 8%, rgba(27, 139, 211, 0.16), transparent 34%),
        linear-gradient(135deg, var(--page-bg-1) 0%, var(--page-bg-2) 46%, var(--page-bg-3) 100%);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15.8px;
    font-weight: 500;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif;
}

::selection {
    background: rgba(32, 189, 232, 0.25);
    color: var(--blue-deep);
}

a {
    color: var(--blue-main);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--blue-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.site {
    max-width: 1200px;
    margin: 28px auto;
    background: transparent;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-main);
    overflow: visible;
}

.site-header {
    max-width: 1200px;
    margin: 0 auto;
    background:
        radial-gradient(circle at 92% 10%, rgba(32, 189, 232, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(6, 26, 48, 0.98) 0%, rgba(8, 45, 78, 0.98) 50%, rgba(5, 24, 43, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(32, 189, 232, 0.16);
    border-radius: var(--radius-main) var(--radius-main) 0 0;
    box-shadow: 0 20px 54px rgba(0, 10, 25, 0.26);
    overflow: hidden;
}

.inside-header {
    min-height: 96px;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo,
.site-branding {
    display: flex;
    align-items: center;
}

.site-logo img,
.site-header .header-image {
    max-width: 170px;
    height: auto;
    display: block;
}

.main-navigation,
.main-navigation .inside-navigation {
    background: transparent;
}

.main-navigation .main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 16px;
    padding: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 38px rgba(0, 10, 25, 0.18);
}

.main-navigation .main-nav ul li {
    margin: 0;
}

.main-navigation .main-nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border-radius: 11px;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1;
    padding: 14px 17px;
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li.current_page_item > a {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(27, 139, 211, 0.86), rgba(13, 102, 168, 0.9));
    box-shadow: 0 10px 22px rgba(0, 20, 42, 0.18);
}

.menu-toggle {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-main));
    border-radius: var(--radius-button);
    padding: 12px 16px;
}

.menu-toggle:hover,
.menu-toggle:focus {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
}

.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 38px 40px 58px;
    background:
        radial-gradient(circle at 100% 0%, rgba(32, 189, 232, 0.1), transparent 30%),
        linear-gradient(180deg, #f6fbff 0%, #eef7fd 54%, #eaf4fb 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.content-area,
.site-main,
.inside-article {
    background: transparent;
}

.inside-article {
    padding: 0;
}

.entry-content {
    max-width: 100%;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content p,
.entry-content table,
.entry-content blockquote,
.entry-content hr {
    max-width: 930px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue-deep);
    font-weight: 780;
    line-height: 1.22;
    letter-spacing: -0.024em;
}

h1 {
    max-width: 900px;
    margin: 2px 0 24px;
    font-size: clamp(29px, 2.65vw, 38px);
    line-height: 1.18;
}

h2 {
    margin: 36px 0 15px;
    font-size: clamp(23px, 1.9vw, 29px);
    line-height: 1.22;
}

h3 {
    margin: 26px 0 12px;
    font-size: clamp(19px, 1.55vw, 24px);
    line-height: 1.26;
}

h4 {
    margin: 24px 0 10px;
    font-size: 19px;
}

h5 {
    margin: 22px 0 10px;
    font-size: 17px;
}

h6 {
    margin: 20px 0 10px;
    font-size: 15.5px;
}

p {
    margin: 0 0 16px;
    color: var(--text-main);
    font-size: 15.8px;
    font-weight: 500;
    line-height: 1.72;
}

strong,
b {
    color: var(--blue-deep);
    font-weight: 800;
}

.entry-content img {
    border-radius: 18px;
}

.wp-block-image {
    margin: 28px 0;
}

.wp-block-image img {
    box-shadow: 0 18px 46px rgba(6, 26, 48, 0.16);
}

form {
    margin: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn,
.btn-li {
    appearance: none;
    border: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: var(--radius-button);
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 12px rgba(0, 12, 28, 0.22);
    box-shadow: var(--shadow-button);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.2s ease, color 0.2s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.btn:hover,
.btn-li:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.btn:focus,
.btn-li:focus {
    outline: 3px solid rgba(32, 189, 232, 0.32);
    outline-offset: 3px;
}

.entry-content > form {
    width: 100%;
    max-width: 930px;
    display: flex;
    justify-content: center;
    margin: 22px auto 14px;
}

.btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--login-1) 0%, var(--login-2) 58%, var(--login-3) 100%);
    background-size: 130% 130%;
    box-shadow: 0 16px 36px rgba(24, 167, 215, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn:hover {
    background-position: 100% 50%;
    box-shadow: 0 20px 44px rgba(24, 167, 215, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.wp-block-list {
    max-width: 930px;
    margin: 18px 0 26px;
    padding-left: 34px;
}

.wp-block-list li {
    margin: 10px 0;
    padding-left: 4px;
    color: var(--text-main);
    font-size: 15.8px;
    font-weight: 500;
}

.wp-block-list li::marker {
    color: var(--blue-deep);
    font-weight: 500;
}

.wp-block-list li form {
    display: inline-flex;
    vertical-align: middle;
}

.btn-li {
    width: 320px;
    min-height: 48px;
    padding: 13px 26px;
    background: linear-gradient(135deg, var(--alt-1) 0%, var(--alt-2) 56%, var(--alt-3) 100%);
    background-size: 135% 135%;
    box-shadow: 0 15px 34px rgba(8, 45, 78, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.btn-li:hover {
    background-position: 100% 50%;
    box-shadow: 0 19px 42px rgba(8, 45, 78, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

table {
    width: 100%;
    max-width: 930px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 28px 0;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

table th,
table td {
    padding: 15px 17px;
    border-bottom: 1px solid var(--border-soft);
    text-align: left;
    vertical-align: top;
}

table th {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    font-weight: 800;
}

table tr:last-child td {
    border-bottom: 0;
}

table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.42);
}

blockquote {
    max-width: 930px;
    margin: 28px 0;
    padding: 22px 26px;
    border: 1px solid rgba(27, 139, 211, 0.18);
    border-left: 5px solid var(--blue-light);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(223, 240, 251, 0.72));
    color: var(--text-main);
    box-shadow: 0 14px 34px rgba(6, 26, 48, 0.08);
}

hr {
    max-width: 930px;
    height: 1px;
    margin: 32px 0;
    border: 0;
    background: linear-gradient(90deg, transparent, rgba(8, 45, 78, 0.18), transparent);
}

.wp-block-columns {
    gap: 34px;
}

.wp-block-column {
    min-width: 0;
}

details {
    max-width: 930px;
    margin: 12px 0;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 12px 30px rgba(6, 26, 48, 0.08);
    overflow: hidden;
}

details summary {
    cursor: pointer;
    padding: 16px 19px;
    color: var(--blue-deep);
    font-weight: 800;
    list-style-position: inside;
}

details > *:not(summary) {
    padding: 0 19px 17px;
}

.wp-block-details {
    max-width: 930px;
}

.site-footer {
    max-width: 1200px;
    margin: 0 auto;
    background:
        radial-gradient(circle at 12% 0%, rgba(32, 189, 232, 0.1), transparent 30%),
        linear-gradient(135deg, rgba(3, 19, 38, 0.98) 0%, rgba(8, 45, 78, 0.98) 52%, rgba(6, 26, 48, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(32, 189, 232, 0.16);
    border-radius: 0 0 var(--radius-main) var(--radius-main);
    color: #ffffff;
    overflow: hidden;
}

.site-footer,
.site-footer p,
.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    color: #bfefff;
}

.inside-site-info {
    padding: 24px 40px;
}

@media (max-width: 1260px) {
    .site {
        margin: 18px 16px;
    }
}

@media (max-width: 1024px) {
    .inside-header {
        padding: 18px 24px;
    }

    .site-content {
        padding: 34px 28px 52px;
    }

    h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15.5px;
        line-height: 1.68;
    }

    .site {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site-header {
        max-width: 100%;
        border-radius: 0;
    }

    .inside-header {
        min-height: auto;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .site-logo,
    .site-branding {
        justify-content: center;
    }

    .site-logo img,
    .site-header .header-image {
        max-width: 160px;
    }

    .main-navigation .main-nav ul {
        width: 100%;
        flex-direction: column;
        border-radius: 14px;
        gap: 4px;
    }

    .main-navigation .main-nav ul li {
        width: 100%;
    }

    .main-navigation .main-nav ul li a {
        width: 100%;
        padding: 14px 18px;
        text-align: center;
    }

    .site-content {
        padding: 28px 18px 42px;
    }

    h1 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.2;
    }

    h2 {
        margin-top: 32px;
        font-size: 23px;
        line-height: 1.24;
    }

    h3 {
        margin-top: 24px;
        font-size: 20px;
        line-height: 1.28;
    }

    p {
        font-size: 15.5px;
        line-height: 1.68;
    }

    .entry-content > form {
        max-width: 100%;
    }

    .btn {
        width: 100%;
    }

    .wp-block-list {
        margin-left: 0;
        margin-right: 0;
        padding-left: 28px;
    }

    .wp-block-list li {
        font-size: 15.5px;
        font-weight: 500;
    }

    .wp-block-list li form {
        width: auto;
    }

    .btn-li {
        width: 300px;
        max-width: 100%;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .site-footer {
        max-width: 100%;
        border-radius: 0;
    }

    .inside-site-info {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .site-content {
        padding: 24px 14px 38px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 19px;
    }

    p {
        margin-bottom: 15px;
    }

    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"],
    .btn,
    .btn-li {
        min-height: 46px;
        padding: 12px 18px;
        font-size: 15px;
    }

    .btn-li {
        width: 280px;
        max-width: 100%;
    }
}

.content-card,
.hero-card,
.guide-card,
.action-links-card,
.xbet-download-steps {
    width: 100%;
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
}

.entry-content > h1,
.entry-content > h2,
.entry-content > h3,
.entry-content > p,
.entry-content > ul,
.entry-content > ol,
.entry-content > table,
.entry-content > blockquote,
.entry-content > hr,
.entry-content > form {
    margin-left: auto;
    margin-right: auto;
}

.entry-content p,
.entry-content table,
.entry-content blockquote,
.entry-content hr,
.wp-block-list {
    margin-left: auto;
    margin-right: auto;
}

.content-card,
.action-links-card {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 28px;
    border: 1px solid rgba(8, 45, 78, 0.12);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(226, 241, 250, 0.72));
    box-shadow: 0 18px 46px rgba(6, 26, 48, 0.1);
}

.content-card h2,
.action-links-card h2 {
    margin: 0 0 20px;
}

.content-card p,
.action-links-card p {
    max-width: 100%;
    margin: 20px 0 0;
}

.hero-card {
    position: relative;
    margin-top: 0;
    margin-bottom: 34px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(32, 189, 232, 0.18);
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 0%, rgba(32, 189, 232, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(226, 241, 250, 0.76));
    box-shadow: 0 22px 56px rgba(6, 26, 48, 0.12);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.56), transparent 42%),
        radial-gradient(circle at 0% 100%, rgba(13, 102, 168, 0.1), transparent 34%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.hero-title {
    max-width: 850px;
    margin: 0 0 22px;
    color: #061a30;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 820;
    line-height: 1.14;
    letter-spacing: -0.032em;
}

.hero-form {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 18px;
}

.hero-button {
    width: 100%;
    min-height: 54px;
    padding: 15px 34px;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(135deg, #0b5d99 0%, #18a7d7 58%, #63d6ff 100%);
    background-size: 140% 140%;
    box-shadow: 0 18px 42px rgba(24, 167, 215, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-shadow: 0 1px 12px rgba(0, 12, 28, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.2s ease;
}

.hero-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background-position: 100% 50%;
    box-shadow: 0 22px 48px rgba(24, 167, 215, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.26) inset;
}

.hero-button:focus {
    outline: 3px solid rgba(32, 189, 232, 0.32);
    outline-offset: 3px;
}

.hero-text {
    max-width: 850px;
    margin: 0;
    color: #153149;
    font-size: 15.9px;
    font-weight: 500;
    line-height: 1.72;
}

.guide-card {
    position: relative;
    overflow: hidden;
}

.guide-card h2 {
    margin: 0 0 14px;
}

.guide-card > p {
    max-width: 100%;
    margin: 0 0 24px;
}

.guide-step {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: center;
    margin: 18px 0;
    padding: 22px;
    border: 1px solid rgba(8, 45, 78, 0.1);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(226, 241, 250, 0.64));
    box-shadow: 0 14px 34px rgba(6, 26, 48, 0.08);
}

.guide-step-content {
    min-width: 0;
}

.guide-step h3,
.guide-grid-content h3 {
    margin: 0 0 12px;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.28;
}

.guide-step p,
.guide-grid-content p {
    max-width: 100%;
    margin: 0 0 14px;
}

.guide-step p:last-child,
.guide-grid-content p:last-child {
    margin-bottom: 0;
}

.guide-step-media,
.guide-grid-media {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(27, 139, 211, 0.14);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(219, 238, 250, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 32px rgba(6, 26, 48, 0.09);
}

.guide-step-media {
    min-height: 210px;
    padding: 14px;
    border-radius: 18px;
}

.guide-step-media img,
.guide-grid-media img {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(6, 26, 48, 0.16);
}

.guide-step-media img {
    max-height: 260px;
}

.guide-step-large,
.guide-step-image {
    grid-template-columns: minmax(0, 1fr) 260px;
}

.guide-step-large .guide-step-media img {
    width: 235px;
    max-height: 520px;
    object-fit: cover;
    object-position: top center;
}

.guide-step-media-small img {
    max-width: 190px;
    max-height: 250px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.guide-grid-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(8, 45, 78, 0.1);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(226, 241, 250, 0.66));
    box-shadow: 0 14px 34px rgba(6, 26, 48, 0.08);
}

.guide-grid-media {
    height: 310px;
    padding: 18px;
    border-width: 0 0 1px;
    border-radius: 0;
}

.guide-grid-media img {
    max-height: 270px;
}

.guide-grid-content {
    padding: 20px;
}

.clean-list,
.action-list {
    max-width: 100%;
    margin: 10px 0 16px;
    padding-left: 22px;
}

.clean-list li,
.action-list li {
    margin: 7px 0;
    padding-left: 4px;
    color: #061a30;
    font-size: 15.8px;
    font-weight: 500;
}

.clean-list li::marker {
    color: #0d66a8;
    font-weight: 800;
}

.guide-finish,
.register-final {
    margin-top: 22px;
    padding: 20px 22px;
    border: 1px solid rgba(27, 139, 211, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(13, 102, 168, 0.1), rgba(32, 189, 232, 0.14));
}

.guide-finish p,
.register-final p {
    max-width: 100%;
    margin: 0;
    color: #061a30;
    font-weight: 700;
}

.action-links-card {
    position: relative;
}

.action-list {
    margin: 0;
    padding-left: 28px;
}

.action-list li {
    margin: 14px 0;
    padding-left: 8px;
}

.action-list li::marker {
    color: #061a30;
    font-weight: 700;
}

.action-list form {
    width: 100%;
    margin: 0;
}

.page-button {
    appearance: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 14px 26px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 12px rgba(0, 12, 28, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.2s ease;
}

.page-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.page-button:focus {
    outline: 3px solid rgba(32, 189, 232, 0.32);
    outline-offset: 3px;
}

.page-button-alt {
    background: linear-gradient(135deg, #20144f 0%, #3f4bd4 52%, #7892ff 100%);
    background-size: 140% 140%;
    box-shadow: 0 16px 34px rgba(63, 75, 212, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.page-button-alt:hover {
    background-position: 100% 50%;
    box-shadow: 0 20px 44px rgba(63, 75, 212, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.side-promo-banner {
    position: absolute;
    left: calc(100% + 38px);
    top: 50%;
    z-index: 30;
    width: 210px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #19b7e8 0%, #3f4bd4 52%, #7892ff 100%);
    background-size: 150% 150%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 18px 48px rgba(32, 189, 232, 0.28), 0 0 34px rgba(120, 146, 255, 0.32);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 14px rgba(0, 12, 28, 0.32);
    transform: translateY(-50%);
    animation: sidePromoPulse 1.55s ease-in-out infinite;
}

.side-promo-banner::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, #19b7e8 0%, #3f4bd4 100%);
    transform: translateY(-50%) rotate(45deg);
}

.side-promo-banner:hover {
    color: #ffffff;
    background-position: 100% 50%;
    transform: translateY(-50%) scale(1.03);
}

.side-promo-banner-red {
    background: linear-gradient(135deg, #ff234b 0%, #c9133f 45%, #5a1dff 100%);
    background-size: 170% 170%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 22px 58px rgba(255, 35, 75, 0.3), 0 0 42px rgba(255, 35, 75, 0.42);
    animation: redSidePromoPulse 1.25s ease-in-out infinite;
}

.side-promo-banner-red::before {
    background: linear-gradient(135deg, #ff234b 0%, #c9133f 100%);
    box-shadow: 0 0 22px rgba(255, 35, 75, 0.45);
}

.side-promo-banner-red:hover {
    background-position: 100% 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24) inset, 0 26px 68px rgba(255, 35, 75, 0.42), 0 0 56px rgba(255, 35, 75, 0.62);
}

@keyframes sidePromoPulse {
    0% {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 18px 48px rgba(32, 189, 232, 0.24), 0 0 20px rgba(120, 146, 255, 0.24);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26) inset, 0 22px 56px rgba(32, 189, 232, 0.38), 0 0 44px rgba(120, 146, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 18px 48px rgba(32, 189, 232, 0.24), 0 0 20px rgba(120, 146, 255, 0.24);
    }
}

@keyframes redSidePromoPulse {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset, 0 18px 48px rgba(255, 35, 75, 0.24), 0 0 24px rgba(255, 35, 75, 0.28);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28) inset, 0 26px 70px rgba(255, 35, 75, 0.46), 0 0 64px rgba(255, 35, 75, 0.68);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset, 0 18px 48px rgba(255, 35, 75, 0.24), 0 0 24px rgba(255, 35, 75, 0.28);
    }
}

.xbet-download-steps {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 28px;
    border: 1px solid rgba(8, 45, 78, 0.12);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(226, 241, 250, 0.72));
    box-shadow: 0 18px 46px rgba(6, 26, 48, 0.1);
    box-sizing: border-box;
}

.xbet-download-steps,
.xbet-download-steps * {
    box-sizing: border-box;
}

.entry-content .xbet-download-steps > h2,
.editor-styles-wrapper .xbet-download-steps > h2 {
    max-width: 760px;
    margin: 0 auto 12px !important;
    color: #061a30;
    font-size: clamp(22px, 2vw, 30px) !important;
    line-height: 1.2 !important;
    text-align: center;
}

.entry-content .xbet-download-steps > p,
.editor-styles-wrapper .xbet-download-steps > p {
    max-width: 760px;
    margin: 0 auto 22px !important;
    color: #334d63;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
}

.entry-content .xbet-download-steps > p:last-child,
.editor-styles-wrapper .xbet-download-steps > p:last-child {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
    padding: 18px 20px;
    border: 1px solid rgba(27, 139, 211, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(13, 102, 168, 0.1), rgba(32, 189, 232, 0.14));
    color: #061a30;
    font-weight: 800;
}

.xbet-download-steps .dgs-shell {
    position: relative;
    width: 100%;
}

.xbet-download-steps .dgs-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    outline: none;
}

.xbet-download-steps .dgs-track {
    display: flex;
    width: 100%;
    counter-reset: dgsStep;
    transition: transform 0.35s ease;
    will-change: transform;
}

.xbet-download-steps .dgs-slide {
    flex: 0 0 33.333333%;
    min-width: 33.333333%;
    min-height: 306px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 16px 18px;
    counter-increment: dgsStep;
}

.xbet-download-steps .dgs-phone {
    position: relative;
    width: 140px;
    height: 232px;
    border: 5px solid #a7bbcf;
    border-radius: 16px;
    background: #f6faff;
    overflow: hidden;
    box-shadow: none;
}

.xbet-download-steps .dgs-phone::before,
.xbet-download-steps .dgs-phone::after {
    content: none;
}

.xbet-download-steps .dgs-browser,
.xbet-download-steps .dgs-menu,
.xbet-download-steps .dgs-header,
.xbet-download-steps .dgs-download-btn,
.xbet-download-steps .dgs-settings-head,
.xbet-download-steps .dgs-row,
.xbet-download-steps .dgs-highlight,
.xbet-download-steps .dgs-browser-row,
.xbet-download-steps .dgs-lines,
.xbet-download-steps .dgs-file,
.xbet-download-steps .dgs-install,
.xbet-download-steps .dgs-tap {
    position: absolute;
    z-index: 2;
}

.xbet-download-steps .dgs-browser {
    left: 10px;
    right: 10px;
    top: 10px;
}

.xbet-download-steps .dgs-address {
    position: relative;
    height: 16px;
    border-radius: 4px;
    background: #d7e2ec;
}

.xbet-download-steps .dgs-address::before {
    content: "https://1xbet.com";
    position: absolute;
    left: 6px;
    top: 3px;
    color: #4f7da4;
    font-size: 6px;
    font-weight: 700;
    line-height: 1;
}

.xbet-download-steps .dgs-address::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8bc34a;
}

.xbet-download-steps .dgs-site-head {
    height: 9px;
    margin-top: 7px;
    border-radius: 3px;
    background: #d7e2ec;
}

.xbet-download-steps .dgs-lines {
    left: 10px;
    right: 10px;
    top: 58px;
    display: grid;
    gap: 10px;
}

.xbet-download-steps .dgs-lines span {
    display: block;
    height: 18px;
    border-radius: 3px;
    background: #d7e2ec;
}

.xbet-download-steps .dgs-lines span::before {
    content: none;
}

.xbet-download-steps .dgs-menu {
    left: 10px;
    right: 10px;
    top: 12px;
    min-height: 36px;
    padding: 7px;
    border-radius: 4px;
    background: transparent;
    box-shadow: none;
}

.xbet-download-steps .dgs-logo {
    margin: 0;
    color: #4f7da4;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
}

.xbet-download-steps .dgs-menu-items {
    display: flex;
    gap: 6px;
    margin-top: 11px;
}

.xbet-download-steps .dgs-menu-items span {
    display: block;
    width: 24px;
    height: 5px;
    border-radius: 3px;
    background: #d7e2ec;
}

.xbet-download-steps .dgs-phone-icon {
    position: absolute;
    right: 5px;
    top: 7px;
    width: 15px;
    height: 15px;
    border: 1px solid #8bc34a;
    border-radius: 4px;
    background: #e7f2d6;
}

.xbet-download-steps .dgs-phone-icon::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: 1px solid #7ca942;
    border-radius: 2px;
}

.xbet-download-steps .dgs-phone-icon::after {
    content: "";
    position: absolute;
    left: 7px;
    bottom: 3px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #7ca942;
}

.xbet-download-steps .dgs-header {
    left: 10px;
    right: 10px;
    top: 14px;
    min-height: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px;
    color: #5b82a5;
    background: transparent;
    font-size: 7px;
    font-weight: 800;
}

.xbet-download-steps .dgs-download-btn {
    left: 16px;
    right: 16px;
    top: 67px;
    min-height: 30px;
    margin: 0;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #4d8a26;
    background: #dbecc8;
    box-shadow: none;
    font-size: 8px;
    font-weight: 900;
    text-align: center;
}

.xbet-download-steps .dgs-settings-head {
    left: 10px;
    right: 10px;
    top: 14px;
    min-height: 20px;
    margin: 0;
    padding: 0 7px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    color: #5b82a5;
    background: transparent;
    font-size: 8px;
    font-weight: 900;
}

.xbet-download-steps .dgs-back {
    font-size: 14px;
    line-height: 1;
}

.xbet-download-steps .dgs-row {
    left: 12px;
    right: 12px;
    height: 18px;
    border-radius: 4px;
    background: #d7e2ec;
    box-shadow: none;
}

.xbet-download-steps .dgs-row::before {
    content: none;
}

.xbet-download-steps .dgs-row--1 {
    top: 50px;
}

.xbet-download-steps .dgs-row--2 {
    top: 78px;
}

.xbet-download-steps .dgs-row--3 {
    top: 106px;
}

.xbet-download-steps .dgs-row--4 {
    top: 134px;
}

.xbet-download-steps .dgs-highlight {
    left: 12px;
    right: 12px;
    top: 164px;
    min-height: 26px;
    margin: 0;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #4d8a26;
    background: #dbecc8;
    box-shadow: none;
    font-size: 7px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.xbet-download-steps .dgs-browser-row {
    left: 12px;
    right: 12px;
    top: 74px;
    min-height: 26px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    background: #dbecc8;
    box-shadow: none;
}

.xbet-download-steps .dgs-name {
    color: #4d8a26;
    font-size: 7px;
    font-weight: 900;
}

.xbet-download-steps .dgs-toggle {
    position: relative;
    width: 22px;
    height: 12px;
    border-radius: 999px;
    background: #8bc34a;
}

.xbet-download-steps .dgs-toggle::before {
    content: "";
    position: absolute;
    right: 2px;
    top: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.xbet-download-steps .dgs-file {
    left: 12px;
    right: 12px;
    top: 42px;
    min-height: 44px;
    padding: 9px 8px;
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 7px;
    border-radius: 7px;
    background: #d7e2ec;
    box-shadow: none;
}

.xbet-download-steps .dgs-file p {
    margin: 0;
    color: #4f6f8d;
    font-size: 7px;
    font-weight: 900;
    line-height: 1.25;
}

.xbet-download-steps .dgs-file-icon {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #a7bbcf;
}

.xbet-download-steps .dgs-file-icon::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    width: 8px;
    height: 12px;
    border-radius: 2px;
    background: #f6faff;
}

.xbet-download-steps .dgs-file-icon::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 5px;
    border-left: 4px solid #d7e2ec;
    border-top: 4px solid transparent;
}

.xbet-download-steps .dgs-install {
    left: 12px;
    right: 12px;
    top: 112px;
    padding: 9px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 52, 125, 0.08);
}

.xbet-download-steps .dgs-install-title {
    margin: 0 0 8px;
    color: #4f6f8d;
    font-size: 8px;
    font-weight: 900;
    text-align: center;
}

.xbet-download-steps .dgs-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.xbet-download-steps .dgs-actions span {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #6f8090;
    background: #eef3f8;
    font-size: 7px;
    font-weight: 900;
}

.xbet-download-steps .dgs-actions .is-accent {
    color: #4d8a26;
    background: #dbecc8;
}

.xbet-download-steps .dgs-tap {
    width: 25px;
    height: 27px;
    fill: #245f94;
    filter: drop-shadow(0 2px 3px rgba(36, 95, 148, 0.22));
    animation: dgsTapPulse 1.35s ease-in-out infinite;
}

.xbet-download-steps .dgs-step-1 .dgs-tap {
    right: 19px;
    top: 19px;
}

.xbet-download-steps .dgs-step-2 .dgs-tap {
    right: 2px;
    top: 37px;
}

.xbet-download-steps .dgs-step-3 .dgs-tap {
    right: 12px;
    top: 82px;
}

.xbet-download-steps .dgs-step-4 .dgs-tap {
    right: 12px;
    top: 160px;
}

.xbet-download-steps .dgs-step-5 .dgs-tap {
    right: 12px;
    top: 82px;
}

.xbet-download-steps .dgs-step-6 .dgs-tap {
    right: 14px;
    top: 146px;
}

.xbet-download-steps .dgs-step-text {
    max-width: 160px;
    margin: 0;
    color: #0d2b52;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
}

.xbet-download-steps .dgs-step-text::before {
    content: counter(dgsStep) ". ";
}

.xbet-download-steps .dgs-nav {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 30px;
    height: 48px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    color: transparent;
    background: #e9f0f7;
    box-shadow: none;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.xbet-download-steps .dgs-nav::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3177b4;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.xbet-download-steps .dgs-nav--prev {
    left: -14px;
}

.xbet-download-steps .dgs-nav--next {
    right: -14px;
}

.xbet-download-steps .dgs-nav--prev::after {
    content: "‹";
}

.xbet-download-steps .dgs-nav--next::after {
    content: "›";
}

.xbet-download-steps .dgs-nav:hover,
.xbet-download-steps .dgs-nav:focus-visible {
    background: #dce8f2;
    transform: translateY(-50%);
    outline: none;
}

.xbet-download-steps .dgs-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
}

.xbet-download-steps .dgs-dot {
    width: 10px;
    height: 10px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(8, 45, 78, 0.24);
    box-shadow: none;
    transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.xbet-download-steps .dgs-dot:hover {
    transform: scale(1.12);
}

.xbet-download-steps .dgs-dot.is-active {
    width: 28px;
    background: #3177b4;
}

@keyframes dgsTapPulse {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.92;
    }

    50% {
        transform: translateY(-3px) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.92;
    }
}

@media (max-width: 1260px) {
    .side-promo-banner {
        left: auto;
        right: 24px;
        top: -30px;
        width: auto;
        min-height: 0;
        padding: 12px 18px;
        border-radius: 999px;
        font-size: 15px;
        transform: none;
    }

    .side-promo-banner::before {
        display: none;
    }

    .side-promo-banner:hover {
        transform: scale(1.03);
    }
}

@media (max-width: 900px) {
    .guide-step,
    .guide-step-large,
    .guide-step-image {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guide-step-media {
        width: 100%;
        max-width: 360px;
        min-height: auto;
        margin: 2px auto 0;
        padding: 12px;
    }

    .guide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .guide-grid-media {
        height: 300px;
        padding: 16px;
    }

    .guide-grid-media img {
        max-height: 260px;
    }
}

@media (max-width: 768px) {
    .content-card,
    .action-links-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .hero-card {
        padding: 26px 20px;
        border-radius: 22px;
        margin-bottom: 28px;
    }

    .hero-title {
        margin-bottom: 20px;
        font-size: 29px;
        line-height: 1.18;
    }

    .hero-form {
        max-width: 100%;
    }

    .hero-button {
        min-height: 50px;
        font-size: 15.5px;
    }

    .hero-text {
        font-size: 15.5px;
        line-height: 1.68;
    }

    .guide-step {
        padding: 18px;
    }

    .guide-grid-content {
        padding: 18px;
    }

    .action-list {
        padding-left: 24px;
    }

    .action-list li {
        padding-left: 4px;
    }

    .page-button {
        min-height: 48px;
        padding: 13px 18px;
        font-size: 15px;
    }

    .side-promo-banner {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        margin: 0 0 18px;
        padding: 13px 18px;
        border-radius: 14px;
        font-size: 15px;
    }

    .xbet-download-steps {
        padding: 22px 14px;
        border-radius: 18px;
    }

    .xbet-download-steps .dgs-viewport {
        max-width: 360px;
        margin: 0 auto;
    }

    .xbet-download-steps .dgs-slide {
        flex-basis: 100%;
        min-width: 100%;
        min-height: 316px;
        padding: 12px 42px 18px;
    }

    .xbet-download-steps .dgs-step-text {
        max-width: 190px;
        text-align: center;
    }

    .xbet-download-steps .dgs-nav {
        width: 30px;
        height: 48px;
    }

    .xbet-download-steps .dgs-nav--prev {
        left: 6px;
    }

    .xbet-download-steps .dgs-nav--next {
        right: 6px;
    }
}

@media (max-width: 480px) {
    .content-card,
    .action-links-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .hero-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 26px;
    }

    .guide-step {
        padding: 16px;
        border-radius: 16px;
    }

    .guide-step h3,
    .guide-grid-content h3 {
        font-size: 19px;
    }

    .guide-step-media {
        max-width: 300px;
        border-radius: 16px;
    }

    .guide-step-media img {
        max-height: 220px;
        border-radius: 12px;
    }

    .guide-grid {
        gap: 14px;
    }

    .guide-grid-item {
        border-radius: 17px;
    }

    .guide-grid-media {
        height: 260px;
        padding: 14px;
    }

    .guide-grid-media img {
        max-height: 220px;
        border-radius: 13px;
    }

    .guide-grid-content {
        padding: 16px;
    }

    .guide-finish,
    .register-final {
        padding: 17px;
        border-radius: 16px;
    }

    .xbet-download-steps {
        padding: 18px 10px;
    }

    .xbet-download-steps .dgs-viewport {
        max-width: 300px;
    }

    .xbet-download-steps .dgs-slide {
        min-height: 306px;
        padding-left: 34px;
        padding-right: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .side-promo-banner,
    .side-promo-banner-red,
    .xbet-download-steps .dgs-tap {
        animation: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-1 .dgs-address {
  height: 17px !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-1 .dgs-address::before {
  left: 5px !important;
  top: 4px !important;
  font-size: 6.8px !important;
  line-height: 1 !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-3 .dgs-download-btn {
  left: 32px !important;
  right: 32px !important;
  top: 72px !important;
  min-height: 28px !important;
  height: 28px !important;
  padding: 0 8px !important;
  font-size: 8px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  z-index: 5 !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-3 .dgs-lines {
  top: 112px !important;
  z-index: 2 !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-3 .dgs-tap {
  right: 2px !important;
  top: 83px !important;
  width: 22px !important;
  height: 24px !important;
  z-index: 6 !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-row--1 {
  top: 58px !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-row--2 {
  top: 126px !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-lines {
  display: none !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-browser-row {
  left: 16px !important;
  right: 16px !important;
  top: 88px !important;
  min-height: 27px !important;
  height: 27px !important;
  padding: 0 9px !important;
  z-index: 5 !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-name {
  max-width: 66px !important;
  font-size: 7px !important;
  line-height: 1.1 !important;
  white-space: normal !important;
  overflow: hidden !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-toggle {
  width: 20px !important;
  height: 11px !important;
  flex: 0 0 auto !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-toggle::before {
  width: 7px !important;
  height: 7px !important;
}

body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-tap {
  right: 1px !important;
  top: 99px !important;
  width: 22px !important;
  height: 24px !important;
  z-index: 6 !important;
}

@media (max-width: 768px) {
  body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-3 .dgs-download-btn {
    left: 34px !important;
    right: 34px !important;
    top: 72px !important;
    min-height: 27px !important;
    height: 27px !important;
    font-size: 7.8px !important;
  }

  body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-3 .dgs-lines {
    top: 111px !important;
  }

  body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-3 .dgs-tap {
    right: 2px !important;
    top: 83px !important;
    width: 21px !important;
    height: 23px !important;
  }

  body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-browser-row {
    left: 17px !important;
    right: 17px !important;
    top: 88px !important;
    min-height: 26px !important;
    height: 26px !important;
  }

  body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-name {
    max-width: 62px !important;
    font-size: 6.8px !important;
  }

  body .entry-content .xbet-download-steps.dgs-register-slider .dgs-step-5 .dgs-tap {
    right: 1px !important;
    top: 99px !important;
    width: 21px !important;
    height: 23px !important;
  }
}

.entry-content .info-section-card {
  width: 100%;
  max-width: 930px;
  margin: 34px auto 28px;
  padding: 28px 30px;
  border: 1px solid rgba(8, 45, 78, .12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(32, 189, 232, .16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(226, 241, 250, .78));
  box-shadow: 0 18px 46px rgba(6, 26, 48, .1);
}

.entry-content .info-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
}

.entry-content .info-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d66a8, #20bde8);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(13, 102, 168, .22);
}

.entry-content .info-section-card h2 {
  margin: 0;
  color: #061a30;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.entry-content .info-section-card p {
  max-width: 100%;
  margin: 0;
  color: #0b243d;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.72;
}

.entry-content .info-section-card em {
  color: #061a30;
  font-style: italic;
  font-weight: 650;
}

@media (max-width: 768px) {
  .entry-content .info-section-card {
    margin: 28px auto 24px;
    padding: 23px 20px;
    border-radius: 20px;
  }

  .entry-content .info-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .entry-content .info-section-card h2 {
    font-size: 24px;
  }

  .entry-content .info-section-card p {
    font-size: 15.5px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .entry-content .info-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .entry-content .info-section-card h2 {
    font-size: 22px;
  }
}