:root {
    --navy-950: #080e25;
    --navy-900: #0c1431;
    --navy-850: #111b3d;
    --navy-800: #172344;
    --navy-700: #243258;
    --blue-600: #167fd2;
    --blue-500: #2498ed;
    --green-500: #38c85a;
    --green-400: #52e778;
    --white: #f7f9ff;
    --muted: #aeb7d2;
    --line: rgba(161, 179, 229, 0.14);
    --shadow: 0 20px 55px rgba(1, 5, 19, 0.34);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--white);
    background: var(--navy-950);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
}

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

.rb-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.rb-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 10px 14px;
    color: #071328;
    background: var(--green-400);
    border-radius: 8px;
    transform: translateY(-150%);
}

.rb-skip-link:focus {
    transform: translateY(0);
}

/* Header */
.rb-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 27, 61, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.rb-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.rb-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.rb-logo-mark {
    width: 31px;
    height: 38px;
}

.rb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.rb-nav-link,
.rb-icon-button,
.rb-header-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    text-decoration: none;
    cursor: pointer;
    transition: 180ms ease;
}

.rb-nav-link {
    padding: 0 16px;
    color: #dfe5f8;
    font-weight: 700;
}

.rb-nav-link:hover,
.rb-nav-link:focus-visible {
    color: #fff;
    background: var(--navy-700);
}

.rb-icon-button {
    width: 48px;
    color: #eff3ff;
    background: var(--navy-700);
}

.rb-icon-button:hover,
.rb-icon-button:focus-visible {
    background: #314069;
    transform: translateY(-1px);
}

.rb-header-button {
    min-width: 108px;
    padding: 0 22px;
    color: #fff;
    background: var(--navy-700);
}

.rb-header-button--primary {
    background: var(--blue-600);
}

.rb-header-button--primary:hover,
.rb-header-button--primary:focus-visible {
    background: var(--blue-500);
}

.rb-menu-toggle {
    display: none;
}

/* Hero */
.rb-hero {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 64% 60%, rgba(35, 132, 238, 0.28), transparent 32%),
        linear-gradient(115deg, #0a1331 0%, #142451 55%, #0a1432 100%);
    border-bottom: 1px solid var(--line);
}

.rb-hero::before,
.rb-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    transform: rotate(28deg);
    border-radius: 24px;
    background: rgba(134, 167, 246, 0.035);
}

.rb-hero::before {
    width: 340px;
    height: 640px;
    left: 24%;
    top: -250px;
}

.rb-hero::after {
    width: 240px;
    height: 520px;
    right: 3%;
    bottom: -300px;
}

.rb-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.25fr);
    gap: 64px;
    align-items: center;
    padding-block: 44px;
}

.rb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #9ad1ff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rb-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 0 6px rgba(82, 231, 120, 0.1);
}

.rb-hero h1 {
    max-width: 620px;
    font-size: clamp(2.35rem, 4.1vw, 4.15rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
}

.rb-hero-copy {
    max-width: 590px;
    margin-top: 20px;
    color: #c3cbe2;
    font-size: 1.05rem;
}

.rb-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.rb-cta {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #fff;
    background: var(--green-500);
    box-shadow: 0 10px 24px rgba(56, 200, 90, 0.18);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: 180ms ease;
}

.rb-cta:hover,
.rb-cta:focus-visible {
    background: var(--green-400);
    transform: translateY(-2px);
}

.rb-cta--blue {
    background: var(--blue-600);
    box-shadow: 0 10px 24px rgba(22, 127, 210, 0.18);
}

.rb-cta--blue:hover,
.rb-cta--blue:focus-visible {
    background: var(--blue-500);
}

.rb-cta--ghost {
    color: #dde5f9;
    background: var(--navy-700);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.rb-cta--ghost:hover,
.rb-cta--ghost:focus-visible {
    background: #314169;
}

.rb-platform-picker {
    position: relative;
}

.rb-platform-menu {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    min-width: 220px;
    display: none;
    padding: 8px;
    background: #182445;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.rb-platform-menu.is-open {
    display: grid;
}

.rb-platform-menu a {
    padding: 10px 12px;
    color: #d9e1f6;
    border-radius: 7px;
    text-decoration: none;
}

.rb-platform-menu a:hover {
    background: var(--navy-700);
}

.rb-hero-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    transform: perspective(1200px) rotateY(-4deg);
}

.rb-portal-card {
    position: relative;
    min-height: 335px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(107, 172, 247, 0.42);
    border-radius: 10px;
    background: #172b58;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: 220ms ease;
}

.rb-portal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(115, 195, 255, 0.8);
}

.rb-portal-art {
    position: absolute;
    inset: 0 0 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 38%, rgba(41, 179, 255, 0.42), transparent 29%),
        linear-gradient(145deg, #1e79c6, #122653 65%);
}

.rb-portal-card:nth-child(2) .rb-portal-art {
    background:
        radial-gradient(circle at 70% 32%, rgba(65, 213, 143, 0.31), transparent 27%),
        linear-gradient(145deg, #14345d, #151b38 68%);
}

.rb-mini-grid {
    position: absolute;
    inset: 30px 22px 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    transform: rotate(-6deg) scale(1.08);
}

.rb-mini-tile {
    min-height: 96px;
    display: grid;
    place-items: center;
    padding: 8px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: linear-gradient(140deg, #2c8fe2, #7044db);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    text-align: center;
    font-weight: 900;
    line-height: 1.08;
}

.rb-mini-tile:nth-child(2) {
    background: linear-gradient(140deg, #ff7047, #ef365e);
}

.rb-mini-tile:nth-child(3) {
    background: linear-gradient(140deg, #11afae, #2f77db);
}

.rb-mini-tile:nth-child(4) {
    background: linear-gradient(140deg, #6c4adf, #a63fcb);
}

.rb-portal-label {
    position: relative;
    z-index: 2;
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    background: linear-gradient(90deg, rgba(31, 113, 190, 0.96), rgba(38, 96, 166, 0.94));
    font-size: 1.25rem;
    font-weight: 800;
}

.rb-portal-card:nth-child(2) .rb-portal-label {
    background: linear-gradient(90deg, rgba(47, 58, 89, 0.97), rgba(55, 65, 93, 0.97));
}

/* Live wins */
.rb-live-wins {
    padding: 28px 0 30px;
    background: #0a1027;
    border-bottom: 1px solid var(--line);
}

.rb-live-row {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.rb-live-label {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    color: #e8ecf9;
    background: var(--navy-700);
    border-radius: 9px;
    white-space: nowrap;
}

.rb-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-400);
    animation: rb-pulse 1.6s infinite;
}

.rb-win-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(125px, 1fr));
    gap: 12px;
    overflow: hidden;
}

.rb-win-card {
    min-width: 0;
}

.rb-win-art {
    aspect-ratio: 1 / 1.08;
    display: grid;
    place-items: center;
    padding: 15px;
    border-radius: 9px;
    background: linear-gradient(145deg, #246cdf, #53c4ed);
    text-align: center;
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rb-win-card:nth-child(2) .rb-win-art {
    background: linear-gradient(145deg, #ff5652, #f7a529);
}

.rb-win-card:nth-child(3) .rb-win-art {
    background: linear-gradient(145deg, #6f31bd, #9c4ff2);
}

.rb-win-card:nth-child(4) .rb-win-art {
    background: linear-gradient(145deg, #ff5f2b, #ff2a55);
}

.rb-win-card:nth-child(5) .rb-win-art {
    background: linear-gradient(145deg, #164f9e, #24b9cd);
}

.rb-win-meta {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 8px 4px 0;
    color: #afb8d2;
    font-size: 0.82rem;
}

.rb-win-amount {
    color: var(--green-400);
}

/* Main content */
.rb-main {
    background:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        var(--navy-950);
    background-size: 44px 44px;
}

.rb-section {
    padding-block: 78px;
}

.rb-section--compact {
    padding-block: 54px;
}

.rb-section--panel {
    background: rgba(17, 27, 61, 0.76);
    border-block: 1px solid var(--line);
}

.rb-section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.rb-section-heading h2,
.rb-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.rb-section-heading p,
.rb-copy p,
.rb-copy li {
    color: var(--muted);
}

.rb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rb-info-card {
    padding: 25px;
    background: linear-gradient(145deg, rgba(30, 45, 85, 0.94), rgba(15, 25, 55, 0.94));
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}

.rb-info-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(145deg, var(--blue-500), #595ddf);
    border-radius: 12px;
    font-size: 1.25rem;
}

.rb-info-card h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.rb-info-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.rb-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
}

.rb-device {
    max-width: 340px;
    margin-inline: auto;
    padding: 11px;
    background: #05091a;
    border: 1px solid #415077;
    border-radius: 36px;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.45);
}

.rb-device-screen {
    min-height: 560px;
    overflow: hidden;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 15%, rgba(36, 152, 237, 0.3), transparent 28%),
        #111b3b;
    border-radius: 27px;
}

.rb-device-notch {
    width: 90px;
    height: 20px;
    margin: -8px auto 20px;
    background: #05091a;
    border-radius: 0 0 13px 13px;
}

.rb-device-title {
    margin: 12px 0 18px;
    font-size: 1.45rem;
    line-height: 1.15;
}

.rb-device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rb-device-tile {
    min-height: 104px;
    display: grid;
    place-items: end start;
    padding: 10px;
    border-radius: 11px;
    background: linear-gradient(145deg, #1a8bdc, #6636cb);
    font-size: 0.74rem;
    font-weight: 900;
}

.rb-device-tile:nth-child(2) {
    background: linear-gradient(145deg, #f85a3c, #df2868);
}

.rb-device-tile:nth-child(3) {
    background: linear-gradient(145deg, #2fbd96, #2078c3);
}

.rb-device-tile:nth-child(4) {
    background: linear-gradient(145deg, #f3a82e, #f35b46);
}

.rb-device-button {
    width: 100%;
    margin-top: 18px;
}

.rb-step-list {
    display: grid;
    gap: 15px;
    margin-top: 25px;
    list-style: none;
    counter-reset: steps;
}

.rb-step-list li {
    position: relative;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 13px 16px 13px 66px;
    background: rgba(31, 46, 86, 0.72);
    border: 1px solid var(--line);
    border-radius: 11px;
    counter-increment: steps;
}

.rb-step-list li::before {
    content: counter(steps);
    position: absolute;
    left: 14px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #061126;
    background: var(--green-400);
    border-radius: 50%;
    font-weight: 900;
}

.rb-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 13px;
}

.rb-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(14, 23, 51, 0.9);
}

.rb-table th,
.rb-table td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.rb-table th {
    color: #fff;
    background: #1d2b52;
    white-space: nowrap;
}

.rb-table td {
    color: #c2cae1;
}

.rb-table tr:last-child td {
    border-bottom: 0;
}

.rb-table td:first-child {
    color: #fff;
    font-weight: 800;
}

.rb-note {
    margin-top: 22px;
    padding: 18px 20px;
    color: #c8d5ee;
    background: rgba(22, 127, 210, 0.12);
    border: 1px solid rgba(36, 152, 237, 0.35);
    border-left: 4px solid var(--blue-500);
    border-radius: 10px;
}

.rb-copy h3 {
    margin: 28px 0 8px;
    color: #fff;
    font-size: 1.25rem;
}

.rb-copy p {
    margin-bottom: 17px;
}

.rb-copy ul {
    margin: 0 0 20px 22px;
}

.rb-copy a {
    color: #8dd1ff;
}

.rb-faq {
    display: grid;
    gap: 13px;
}

.rb-faq details {
    overflow: hidden;
    background: #121d3e;
    border: 1px solid var(--line);
    border-radius: 11px;
}

.rb-faq details[open] {
    border-color: rgba(36, 152, 237, 0.62);
}

.rb-faq summary {
    position: relative;
    padding: 19px 54px 19px 20px;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.rb-faq summary::-webkit-details-marker {
    display: none;
}

.rb-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--green-400);
    font-size: 1.5rem;
    transform: translateY(-50%);
}

.rb-faq details[open] summary::after {
    content: "−";
}

.rb-faq-answer {
    padding: 0 20px 20px;
    color: var(--muted);
}

.rb-bottom-cta {
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background:
        radial-gradient(circle at 80% 20%, rgba(82, 231, 120, 0.16), transparent 30%),
        linear-gradient(120deg, #18295a, #102044);
    border: 1px solid rgba(74, 151, 240, 0.35);
    border-radius: 17px;
    box-shadow: var(--shadow);
}

.rb-bottom-cta h2 {
    margin-bottom: 7px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.rb-bottom-cta p {
    color: var(--muted);
}

/* Footer */
.rb-footer {
    padding: 42px 0;
    background: #070c1d;
    border-top: 1px solid var(--line);
}

.rb-footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: start;
}

.rb-footer-copy {
    max-width: 720px;
    margin-top: 13px;
    color: #8f99b8;
    font-size: 0.84rem;
}

.rb-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.rb-footer-links a {
    color: #bec7de;
    text-decoration: none;
}

.rb-footer-links a:hover {
    color: #fff;
}

.rb-footer-bottom {
    margin-top: 28px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #7f8aa8;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
}

.rb-age {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: none;
    border: 2px solid #e15f69;
    border-radius: 50%;
    color: #ff9da4;
    font-weight: 900;
}

/* Modal */
.rb-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(2, 5, 17, 0.84);
    backdrop-filter: blur(8px);
}

.rb-modal.is-open {
    display: grid;
}

.rb-modal-card {
    position: relative;
    width: min(440px, 100%);
    padding: 32px;
    background: #152143;
    border: 1px solid #344878;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.rb-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--navy-700);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.rb-modal-card h2 {
    margin-bottom: 8px;
}

.rb-modal-card p {
    margin-bottom: 22px;
    color: var(--muted);
}

.rb-modal-options {
    display: grid;
    gap: 11px;
}

.rb-modal-options a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: #fff;
    background: #22325c;
    border-radius: 9px;
    text-decoration: none;
}

.rb-modal-options a:hover {
    background: #2b4073;
}

@keyframes rb-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(82, 231, 120, 0.55);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(82, 231, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(82, 231, 120, 0);
    }
}

@media (max-width: 1020px) {
    .rb-nav-link {
        display: none;
    }

    .rb-hero-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .rb-hero-copy {
        max-width: 720px;
    }

    .rb-hero-panels {
        max-width: 680px;
        transform: none;
    }

    .rb-win-track {
        grid-template-columns: repeat(4, minmax(130px, 1fr));
    }

    .rb-win-card:nth-child(5) {
        display: none;
    }
}

@media (max-width: 780px) {
    .rb-shell {
        width: min(100% - 28px, 1180px);
    }

    .rb-header-inner {
        min-height: 66px;
    }

    .rb-logo {
        font-size: 1.65rem;
    }

    .rb-logo-mark {
        width: 27px;
        height: 33px;
    }

    .rb-header-button,
    .rb-icon-button {
        display: none;
    }

    .rb-menu-toggle {
        width: 44px;
        display: inline-flex;
    }

    .rb-nav.is-open {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: grid;
        padding: 14px;
        background: #111b3d;
        border-bottom: 1px solid var(--line);
    }

    .rb-nav.is-open .rb-nav-link,
    .rb-nav.is-open .rb-header-button {
        display: flex;
    }

    .rb-hero {
        min-height: auto;
    }

    .rb-hero-layout {
        grid-template-columns: minmax(0, 1fr);
        padding-block: 54px;
    }

    .rb-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

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

    .rb-cta {
        width: 100%;
    }

    .rb-platform-menu {
        width: 100%;
    }

    .rb-hero-panels {
        grid-template-columns: 1fr;
    }

    .rb-portal-card {
        min-height: 290px;
    }

    .rb-live-row {
        grid-template-columns: 1fr;
    }

    .rb-live-label {
        width: max-content;
    }

    .rb-win-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .rb-win-track::-webkit-scrollbar {
        display: none;
    }

    .rb-win-card,
    .rb-win-card:nth-child(5) {
        min-width: 142px;
        display: block;
        scroll-snap-align: start;
    }

    .rb-section {
        padding-block: 58px;
    }

    .rb-grid,
    .rb-split {
        grid-template-columns: 1fr;
    }

    .rb-split {
        gap: 38px;
    }

    .rb-table th,
    .rb-table td {
        padding: 14px;
    }

    .rb-bottom-cta {
        padding: 28px;
        align-items: stretch;
        flex-direction: column;
    }

    .rb-footer-top {
        grid-template-columns: 1fr;
    }

    .rb-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}