

@font-face {
    font-family: "Quicksand";
    src: url("../fonts/quicksand-variable-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Quicksand";
    src: url("../fonts/quicksand-variable-latin-ext.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --white: #ffffff;
    --ink: #2d3436;
    --ink-soft: #4e4e4e;
    --muted: #6c757d;
    --muted-soft: #868e96;
    --faint: #cccccc;
    --border: #e1e8ed;
    --surface: #f8f9fa;
    --brand: #6d0d38;
    --brand-tint: #fdeff2;
    --brand-ground: #fee4e5;
    --brand-panel: #f9e3e6;
    --brand-line: #eec2ce;
    --brand-pop: #e07ba7;
    --brand-dark: #560a2c;
    --cream: #fffbf2;
    --peach: #f9f0ea;
    --accent: #ff9668;
    --accent-dark: #e55a2b;
    --link: #0066cc;
    --link-hover: #004499;
    --success: #3fb96a;
    --danger: #dc3545;
}

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

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-regular.woff2") format("woff2");
    font-weight: normal;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-bold.woff2") format("woff2");
    font-weight: bold;
}

body {
    font-family: "Quicksand", sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    font-size: 13.6px;
}

body:has(.bottom-sheet-overlay) {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-shell {
    max-width: 75rem;
    margin: 0 auto;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--brand-ground);
}

.main-content > *:last-child {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    height: auto;
}

.header-container {
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
        "burger logo  header-right"
        "nav    nav   nav";
    align-items: center;
    position: relative;
    margin: 0 auto;
    max-width: 1240px;
}

.nav-left {
    grid-area: nav;
    display: flex;

    gap: clamp(1rem, 3vw, 2.25rem);
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    width: 100%;

    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-left::-webkit-scrollbar {
    display: none;
}

.nav-left-item {
    display: flex;
    align-items: center;
    padding: 0.35rem 0.25rem;
    border-radius: 0;
    transition: all 0.2s ease;
}

.nav-left a {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    text-decoration: none;
}

.nav-left a:hover,
.nav-left a.selected {
    background: transparent;
    color: var(--muted-soft);
}

.header-right {
    grid-area: header-right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.burger-menu {
    grid-area: burger;
}

.header-logo {
    grid-area: logo;
    padding: 0.85rem 0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 6px;
}

.burger-line {
    width: 26px;
    height: 2px;
    background: var(--ink-soft);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-item {
    display: block;
    padding: 1rem 2rem;
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.selected {
    background: var(--surface);
    color: var(--link);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.account-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-bar button {
    border: none;
    font: inherit;
}

.sticky-sections {
    position: sticky;
    top: var(--header-height, 120px);
    z-index: 50;
    background-color: var(--white);
    will-change: transform;
    transform: translateZ(0);
    overflow: visible;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

.sticky-sections .swish-coin-balance {
    background-color: var(--brand-tint);
}

.category-order-list {
    display: flex;
    background-color: var(--white);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    font-weight: 600;
}

.category-order-list::-webkit-scrollbar {
    display: none;
}

.category-order-item {
    display: flex;
    border-radius: 12px;
    align-items: center;
    padding: 0.4rem 0.5rem;
    margin: 0.2rem auto;
    gap: 0.3rem;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

.category-select-list {
    display: flex;
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    font-weight: 600;
}

.category-select-list::-webkit-scrollbar {
    display: none;
}

.category-select-item {
    display: flex;
    border-radius: 12px;
    align-items: center;
    padding: 0.4rem 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
    margin: 0.2rem auto;
}

.draws-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0.5rem auto;
    gap: 0.5rem;
    padding: 0 0.5rem;

    justify-content: flex-start;
}

@media (min-width: 48rem) {
    .draws-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, 250px);
        justify-content: center;
    }

    .draws-list > .prize-draw-box {
        width: 100%;
    }

    .sticky-sections {
        font-size: 1rem;
    }

    .category-order-item,
    .category-select-item {
        padding: 0.7rem 1rem;
    }
}

.header-logo {
    width: 100%;
    display: flex;
    justify-content: left;
}

.user-menu-container {
    position: relative;
    display: flex;
    gap: 0.2rem;
}

.user-icon {
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 50%;
    transition: background 0.2s ease;
    margin-top: 0.1rem;
}

.cart-icon {
    cursor: pointer;
    padding: 0.2rem;
    transition: background 0.2s ease;
}

.user-icon:hover {
    background: var(--surface);
}

.user-menu-overlay {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    margin-top: 0.5rem;
}

.user-menu {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    padding: 0.5rem 0;
    animation: fadeInDown 0.2s ease-out;
}

.user-menu-item {
    display: block;
    padding: 0.75rem 1.2rem;
    color: var(--ink);
    text-decoration: none;
    transition: background-color 0.2s;
    border-bottom: 1px solid var(--border);
}

.user-menu-item:last-child {
    border-bottom: none;
}

.user-menu-item:hover {
    background-color: var(--surface);
    color: var(--link);
}

.page-title {
    font-size: 1.9125rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2rem;
    text-align: center;
}

.draw-timer-countdown {
    display: flex;
    text-align: center;
    padding: 0;
}

.draw-back {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    border-style: solid none solid none;
    border-width: 1px;
    border-color: var(--border);
    background-color: var(--brand-tint);
    color: var(--ink-soft);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    width: 100%;
}

.draw-back-link {
    display: block;
    position: sticky;
    top: var(--header-height, 0px);
    z-index: 99;
}

.draw-sold-section {
    background-color: var(--brand-tint);
    font-family: "Quicksand", sans-serif;

    padding: 0.5rem 1rem 0.5rem 1rem;
}

.draw-sold-section .progress-bar-text {
    font-size: 1.105rem;
}

.swish-coin-balance {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    border-style: solid none solid none;
    border-width: 1px;
    border-color: var(--border);
    background-color: var(--white);
    color: var(--accent);
    margin: 0;
    padding: 0.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.swish-coin-balance-loading {
    border-style: solid none solid none;
    border-width: 1px;
    border-color: var(--border);
    background-color: var(--white);
    min-height: 3.6rem;
    box-sizing: border-box;
}

.swish-coin-balance-label {
    font-size: 1.53rem;
    margin-left: auto;
    margin-right: 1rem;
}

.swish-coin-balance-amount {
    font-size: 1.105rem;
    color: var(--ink);
    background-color: #f9cc88;
    padding: 0 0.3rem 0 0.3rem;
    border-style: solid;
    border-color: var(--accent);
    box-sizing: border-box;
    border-radius: 50%;
    min-width: 3.2rem;
    min-height: 3.2rem;
    align-content: center;
    text-align: center;
}

.swish-coin-balance-amount-border {
    border-style: solid;
    border-color: #f9cc88;
    border-radius: 50%;
    margin-left: 0;
    margin-right: auto;
    min-width: 3.2rem;
    min-height: 3.2rem;
}

.progress-bar-container {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}

.progress-bar {
    background-color: var(--faint);
    height: 0.8rem;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-dim {
    color: var(--faint);
}

.live-bar-title {
    display: flex;
    flex-direction: row;
    font-size: 0.800rem;
}

.progress-bar-fill {
    background-color: var(--danger);
    height: 100%;
    border-radius: 3px;
}

.progress-bar-text {
    color: var(--danger);
    font-size: 1.02rem;
    font-weight: bold;
    text-align: left;
}

.progress-bar-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.prize-draw-enter-now {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    margin-left: 15%;
    width: 70%;
    background-color: var(--brand);
    color: var(--white);
    border-radius: 30px;
    border: 2.5px solid var(--brand);
    font-size: 0.9rem;
    text-align: center;

    white-space: nowrap;
}

.timer-separator {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--ink);
    align-self: flex-start;
    line-height: 1.4;
    min-width: 15px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-item-count {
    font-size: 1.5725rem;
    font-weight: normal;
    color: var(--ink);
    line-height: 1.4;
}

.timer-item-label {
    font-size: 0.765rem;
    color: var(--ink-soft);
}

.featured-categories-list {
    display: flex;
}

.category-card {
    border: 1px solid var(--border);
}

.featured-draws {
    background-color: var(--white);
    padding-top: 0.25rem;
}

.main-content > .featured-draws:last-child {
    padding-bottom: 2rem;
}

.featured-draws-title {
    margin-top: 0;
}
.featured-draws-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0.5rem;
    gap: 0.5rem;
    justify-content: center;
}

.prize-draw-box {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    width: 48%;
    flex-direction: column;
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: var(--accent) 1.5px solid;
    max-width: 250px;
}

.prize-draw-box .live-bar-title {
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
}

.draw-timer {
    line-height: 1.7;
}

.prize-draw-box .timer-item-count, .prize-draw-box .timer-separator {
    font-family: "Manrope", sans-serif;
    font-size: 1.02rem;
    font-weight: bold;
}

.draw-timer .timer-item-count, .draw-timer .timer-separator {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
}

.draw-timer .live-bar-title {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.prize-draw-left {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
}

.prize-draw-title {
    margin-bottom: 0.5rem;
    color: var(--ink-soft);
    align-content: center;
    height: 2.2rem;
    font-size: clamp(0.7rem, var(--scaled-font-size, 0.9rem), 0.9rem);
    font-weight: bold;

}

.prize-draw-image {
    width: 100%;
    height: auto;
}

.prize-draw-right {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.prize-draw-description {
    color: var(--muted);
    font-size: 0.765rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.draw-page-rainbow-text {
    transform: rotate(-6deg);
    font-size: 1.6rem;
    color: var(--accent);
    width: 50%;
    text-align: center;
    line-height: 1.1;
    font-weight: 700;
    align-content: center;
}

.prize-draw-price {
    color: var(--ink-soft);
    font-size: 1.105rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-left: 0.2rem;
}

.draw-price {
    color: var(--ink);
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    padding-left: 0.3rem;
    padding-top: 0.4rem;
}

.draw-price-was {
    color: var(--danger);
    text-decoration: line-through;
}

.draw-price-now {
    color: var(--success);
}

.draw-price-swish-coins {
    font-weight: normal;
}

.draw-price-per-entry {
    font-weight: 700;
    color: var(--ink-soft);
}

.draw-enter-now {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.5725rem;
    margin: 1rem auto;
    background-color: var(--brand);
    color: var(--white);
    border-radius: 1.2rem;
    border: 2.5px solid var(--brand);
    padding: 0.2rem;
    display: block;
    width: 95%;
    text-align: center;
}

.draw-page-rainbow {
    display: flex;
    width: 100%;
    justify-content: center;

}

.prize-draw-price-per-entry {
    font-size: 0.8rem;
    font-weight: 700;
}

.prize-draw-time-section {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 4.5rem;
}

.prize-draw-buy-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--link);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8075rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.prize-draw-buy-btn:hover {
    background: var(--link-hover);
    transform: translateY(-1px);
}

.prize-draw-buy-btn:disabled {
    background: var(--faint);
    color: var(--muted-soft);
    cursor: not-allowed;
    transform: none;
}

.prize-draw-sold-section {
    background-color: var(--brand-tint);
    padding-top: 0.5rem;
    padding-bottom: 0.8rem;
}

.quick-buy-buttons {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.quick-buy-button {
    background-color: var(--cream);
    padding: 0.6rem 0.5rem;
    border-radius: 1rem;
    border: 2px solid transparent;
}

.quick-buy-ticket-count {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.05rem;
    color: var(--ink);
}

.quick-buy-free-tickets {
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 500;
    text-align: center;
}

.quick-buy-buttons-header {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
}

.quick-buy-button.marked {
    border: 2px solid var(--accent);
}

.quick-buy-button.disabled {
    opacity: 0.4;
    filter: grayscale(1);
    cursor: not-allowed;
    pointer-events: none;
    background-color: var(--border);
}

.quick-buy-label {
    font-size:0.6rem;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
}

.large-prize-draw-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 2rem auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.large-prize-draw-left {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
}

.large-prize-draw-title {
    color: var(--ink);
    font-size: 1.105rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.large-prize-draw-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.large-prize-draw-right {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.large-prize-draw-description {
    color: var(--muted);
    font-size: 0.935rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.large-prize-draw-price {
    color: var(--link);
    font-size: 1.5725rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.large-prize-draw-buy-btn {
    padding: 1.2rem 2rem;
    color: var(--brand);
    background-color: var(--white);
    border-radius: 30px;
    border: 2.5px solid var(--brand);
    font-weight: 600;
    font-size: 0.935rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2dvh;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-box {
    background: var(--white);
    color: var(--ink);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 1rem;

    max-width: 48rem;
    width: 90vw;
    position: relative;
    max-height: 90vh;
    max-height: 90dvh;
    overflow: hidden;
}

.modal-box:has(.login-register-selector),
.modal-box:has(.login-form) {
    max-width: 26rem;
    min-height: 55vh;
}

.modal-content {
    overflow-y: auto;
    max-height: calc(90vh - 2rem);
    max-height: calc(90dvh - 2rem);
}

.register-email-form {
    max-height: 90vh;
    max-height: 90dvh;
}

.modal-close {
    position: absolute;
    top: 0.1rem;
    right: 1.5rem;
    background: white;
    border: none;
    color: var(--faint);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 100%;
    z-index: 2;
}

.login-form-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form button {
    color: var(--white);
    background-color: var(--accent);
}

.login-form-inputs .outlined-input-container {
    margin-top: 0.5rem;
}

.modal-title {
    font-size: 1.5725rem;
    margin: 0 0 0.5rem 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.login-form {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.modal-form {
    display: flex;
    flex-direction: column;
}

.modal-button {
    margin-top: 0.5rem;
    padding: 0.6rem;
    border-radius: 12px;
    border: none;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-bar {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem 0.7rem;
    background: var(--brand-tint);
    align-items: stretch;
    line-height: 1.15;
    border: solid var(--border);
    border-width: 1px 0;
}

.login-bar-already {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.login-bar-join {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
}

.login-bar-promo {
    color: #ffbc40;
    font-weight: 700;
    font-size: 0.9rem;
}

.login-bar-login {
    flex: 1;
    min-width: 0;
    border-radius: 14px;
    padding: 0.8rem 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    text-align: center;
    text-decoration: none;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.login-bar-rewards {
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
}

.login-bar-register {
    flex: 1;
    min-width: 0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background: var(--ink);
    cursor: pointer;
}

.login-bar-login-text {
    color: #d99518;
    font-size: 1rem;
}

.login-register-selector {
    display: flex;
    color: var(--faint);
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.login-register-selector .active {
    color: var(--accent);
}
.login-register-selector div {
    border-bottom: 4px solid currentColor;
    width:100%;
    text-align:center;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.switch {
    display:flex;
}

.checkboxswitch {
    display: inline-block;
    height: 1.0625rem;
    position: relative;
    width: 1.875rem;
}

.checkboxswitch input {
    display:none;
}

.checkboxslider {
    background-color: var(--faint);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.checkboxslider:before {
    background-color: var(--white);
    bottom: 0.125rem;
    content: "";
    height: 0.8125rem;
    left: 0.125rem;
    position: absolute;
    transition: .4s;
    width: 0.8125rem;
}

input:checked + .checkboxslider {
    background-color: var(--success);
}

input:checked + .checkboxslider:before {
    transform: translateX(0.8125rem);
}

.checkboxslider.round {
    border-radius: 1.0625rem;
}

.checkboxslider.round:before {
    border-radius: 50%;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

input[type="checkbox"] + .outlined-input-label {
    vertical-align: middle;
    line-height: 1.2;
    cursor: pointer;
}

.checkbox-container label {
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.checkbox-label {
    font-size: 0.765rem;
    line-height: 1.4;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
}

.checkbox-label a {
    color: var(--link);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--link-hover);
}

.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-container input {
    flex: 1;
    padding-right: 3rem;
}

.password-toggle-btn {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    transition: color 0.2s ease;
    background-color: transparent !important;
}

.password-toggle-btn:hover {
    color: var(--ink-soft);
}

.password-toggle-btn:focus {
    outline: 2px solid var(--link);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.password-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: rgb(140,140,140);
}

.password-field-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.password-strength-indicator {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.password-strength-dashes {
    display: flex;
    gap: 0.25rem;
}

.password-strength-dash {
    height: 0.25rem;
    flex: 1;
    border-radius: 0.125rem;
    transition: background-color 0.2s ease;
}

.password-strength-dash.password-strength-empty {
    background-color: var(--border);
}

.password-strength-dash.password-strength-weak {
    background-color: var(--danger);
}

.password-strength-dash.password-strength-ok,
.password-strength-dash.password-strength-strong,
.password-strength-dash.password-strength-perfect {
    background-color: var(--success);
}

.password-strength-text {
    font-size: 0.75rem;
    font-weight: 500;
}

.password-strength-text.password-strength-weak {
    color: var(--danger) !important;
}

.password-strength-text.password-strength-ok,
.password-strength-text.password-strength-strong,
.password-strength-text.password-strength-perfect {
    color: var(--success) !important;
}

.password-hint, .phone-hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
    line-height: 1.2;
}

.account-shell-header,
.account-shell-identity,
.account-shell-menu {
    display: none;
}

.my-account-page {
    max-width: 800px;
    margin: 0 auto;
    background-repeat: repeat;
    height: 100%;
    background-color: var(--brand-ground);
}

.my-account-form {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    background-color: var(--brand-ground);
}

.my-account-links {
    display: flex;
    background-color: var(--cream);
    padding-top: 0.5rem;
}

.my-account-links-link {
    flex-direction: row;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 1rem;
    color: var(--ink-soft);
    margin: 0.6rem 0.5rem;
    cursor: pointer;
}

.my-account-order {
    flex: 1 1 auto;
}

.my-account-categories {
    flex: 1 1 auto;
}

.my-account-horizontal-button {
    grid-column: span 2;
    height: 7vh;
}

.account-sticky {
    position: sticky;
    top: var(--header-height, 0px);
    z-index: 101;
    display: flex;
    flex-direction: column;
}

body:has(.mobile-nav.active) .account-sticky {
    z-index: 90;
}

.my-entries .account-sticky,
.settings-page .account-sticky {
    background-color: transparent;
}

.settings-page .account-sticky {
    margin-bottom: -1.25rem;
    padding-bottom: 1.25rem;
}

.settings-page > :not(.account-sticky) {
    margin-left: 1rem;
    margin-right: 1rem;
}

.account-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.9125rem;
    font-weight: 600;
    text-align: center;
}

.section-title-newbie {
    color: var(--white);
    background-color: #720038;
}

.section-title-super {
    color: var(--white);
    background-color: #d5657a;
}

.section-title-gold {
    color: var(--white);
    background-color: #dba312;
}

.section-title-platinum {
    color: var(--white);
    background-color: #554d4d;
}

.section-title-diamond {
    color: var(--white);
    background-color: #9c9999;
}

.section-title-star {
    color: var(--white);
    background-color: #f0d029;
}

.section-reveal {
    display: flex;
    background-color: #ffeb84;
    color: var(--accent);
    font-size: 1.02rem;
    margin: auto;
    border-radius: 20px;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.section-reveal-link {
    display: flex;
}

.section-reveal img {
    margin-top: -24px;
}

.section-value {
    background-color: var(--white);
    color: var(--accent);
    font-size: 1.105rem;
    border-radius: 20px;
    padding: 0.2rem 1rem;
    align-items: center;
    cursor: pointer;
    text-align: center;
    width: 80%;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    margin: 1rem auto;
}

.section-reveal-header {
    display: flex;
    flex-direction: column;
}

.swishie-rewards-page .section-reveal-header {
    position: sticky;
    top: var(--header-height, 0px);
    z-index: 101;
    background-color: var(--brand-ground);
}

.perks-banner {
    display: flex;
    flex-direction: column;
}

.perks-banner-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--white);
    padding: 0.75rem 1rem;
}

.perks-banner-row-alt {
    background-color: var(--brand-tint);
}

.perks-banner-text {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 2.1rem;
    letter-spacing: 0.02em;
    color: var(--accent);
}

.perks-banner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6em;
    height: 2.6em;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--accent);
    font-size: 1rem;
    flex: none;
}

.perks-banner-badge-plain {
    background: none;
}

.perks-banner-icon {
    width: 1.9em;
    height: 1.9em;
    fill: currentColor;
}

.perks-banner-icon-ringed {
    width: 2.4em;
    height: 2.4em;
}

@media screen and (max-width: 480px) {
    .perks-banner-text {
        font-size: 1.75rem;
    }
}

.my-account-page .viplevel-header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    justify-content: center;
    width: 100%;
}

.viplevel-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.section-reveal-content {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    margin: 1rem 0.5rem;
}

.viplevel-header-text {
    display: flex;
}

.viplevel-header-title-vip {
    display: flex;
    gap: 0.3rem;
    align-items: baseline;
    text-align: center;
}

.viplevel-header-vip-level {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.1;
}

.viplevel-header-title-name {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.viplevel-swishie {
    font-size: 1.7rem;
    color: var(--ink-soft);
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.viplevel-header-vip-level-newbie {
    color: #720038;
}

.viplevel-header-vip-level-super {
    color: #d5657a;
}

.viplevel-header-vip-level-gold {
    color: #dba312;
}

.viplevel-header-vip-level-diamond {
    color: #9c9999;
}

.viplevel-header-vip-level-platinum {
    color: #554d4d;
}

.viplevel-header-vip-level-star {
    color: #f0d029;
}

.viplevel-header-image {
    border-radius: 50%;
    margin-top: -0.6rem;
    margin-bottom: -0.6rem;
    position: relative;
    z-index: 101;
    margin-left: 0.2rem;
}

body:has(.mobile-nav.active) .viplevel-header-image {
    z-index: 99;
}

.viplevel-header-image-newbie   { border: 14px solid #c59da4; }
.viplevel-header-image-super    { border: 14px solid #c59da4; }
.viplevel-header-image-gold     { border: 14px solid #ebc17a; }
.viplevel-header-image-diamond  { border: 14px solid var(--faint); }
.viplevel-header-image-platinum { border: 14px solid #998c8c; }
.viplevel-header-image-star     { border: 14px solid #d5cea2; }

.draw-whatsnext {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.draw-othercomps {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.draw-checkoutnow {
    background-color: #ffd06f;
    padding: 0.5rem;
    text-align: center;
    border-radius: 16px;
    margin: 0.5rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.105rem;
}

.draw-seeall {
    background-color: #fae79a;
    padding: 0.5rem;
    text-align: center;
    border-radius: 16px;
    margin: 1rem 0.5rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.105rem;
}

.draw-youmight {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    font-size: 1.105rem;
}

.account-section .viplevel-header-text {
    background-color: var(--peach);
}

.account-section .viplevel-header-title-vip {
    margin: 0 0.3rem;
}

.account-section .viplevel-header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-content-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.9125rem;
    gap: 0.3rem;
}

.section-content-header-rewards {
    color: var(--accent);
}

.section-content-header img {
    transform: scale(0.8, 0.8);
}

.section-content-header div {
    padding-top: 0.8rem;
}

.section-content-table img {
}

.section-content-table {
    width: 100%;
    font-family: "Quicksand", sans-serif;
    color: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-collapse: collapse;
}

.section-content-table td,
.section-content-table th {
    border: none;
    padding: 0.1rem;
}

.section-content-table th {
    font-weight: 700;
    font-size: 0.8rem;
}

.section-content-table td {
}

.section-content-table .col1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content-table .col2 {
    width: 20%;
    color: inherit;
    text-align: left;
}

.section-content-table .col3, .section-content-table .col4, .section-content-table .col5 {
    text-align: center;
    width: auto;
}

.section-content-table .col3, .section-content-table .col4 {
    border-right: var(--accent) 1px solid;
}

.section-reveal-table-newbie   { background-color: rgba(114, 0, 56, 0.1);    color: #720038; }
.section-reveal-table-super    { background-color: rgba(255, 51, 128, 0.1);  color: #FF3380; }
.section-reveal-table-gold     { background-color: rgba(196, 154, 0, 0.1);   color: #C49A00; }
.section-reveal-table-platinum { background-color: rgba(85, 77, 77, 0.1);    color: #554d4d; }
.section-reveal-table-diamond  { background-color: rgba(194, 194, 194, 0.1); color: #9c9999; }
.section-reveal-table-star     { background-color: rgba(255, 214, 0, 0.1);   color: #f0d029; }

.section-content-footer {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.68rem;
    text-align: center;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.my-account-menu-section {
    border-radius: 16px 0 16px 0;
    width: 95%;
    padding: 0.5rem;
    margin: 0 auto 0.5rem auto;
}

.my-account-menu-section ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.my-account-menu-section li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--peach);
    color: var(--ink-soft);
    border-radius: 16px;
    aspect-ratio: 1.5/1;
    width: 100%;
    margin-bottom: 0;
}

.my-account-menu-section li.is-current {
    border: 2px solid var(--brand-dark);
}

.my-account-menu-section li.is-current a {
    font-weight: 700;
}

.my-account-menu-section li a {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2.2rem;
    text-align: center;
    line-height: 1.2;
}

.vip-perks-button-newbie {
    background-color: #720038 !important;
    color: var(--white) !important;
}

.vip-perks-button-super {
    background-color: #d5657a !important;
    color: var(--white) !important;
}

.vip-perks-button-gold {
    background-color: #dba312 !important;
    color: var(--white) !important;
}

.vip-perks-button-platinum {
    background-color: #554d4d !important;
    color: var(--white) !important;
}

.vip-perks-button-diamond {
    background-color: #9c9999 !important;
    color: var(--white) !important;
}

.vip-perks-button-star {
    background-color: #f0d029 !important;
    color: var(--white) !important;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.8075rem;
}

.form-input {
    background: var(--white);
    color: var(--ink);
    border: 2px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8075rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--link);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.modal-button:disabled {
    background: var(--faint) !important;
    color: var(--muted-soft) !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    transform: none !important;
}

.modal-button:disabled:hover {
    background: var(--faint) !important;
    transform: none !important;
}

.order-complete-header {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0.5rem 0.5rem;
}

.order-complete-header-title {
    font-size: 1.105rem;
    color: var(--ink);
    font-weight: bold;
}

.order-complete-header-subtitle {
    font-size: 1.02rem;
    justify-content: center;
    text-align: center;
}

.order-complete-header-subtitle a {
    color: var(--accent);
    text-decoration: none;
    display: inline;
}

.no-orders {
    text-align: center;
    padding: 3rem 1rem;
}

.no-orders p {
    color: var(--ink);
    font-size: 1.02rem;
    margin-bottom: 2rem;
}

.browse-link {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 1.2rem;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease;
}

.browse-link:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.order-date {
    font-size: 1.4rem;
    margin: 1rem 0 0.2rem 0;
    padding: 0 1rem;
    font-weight: 600;
    background-color: var(--peach);
    color: #ffba45;
}

.order-items-summary {
    font-size: 1.2rem;
}

.order-item-summary {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    background-color: var(--peach);
    padding: 0 1rem;
}

.item-name {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.order-totals {
    font-size: 1.2rem;
}

.order-total {
    font-weight: 600;
    text-align: right;
    padding-top: 1rem;
    background: var(--brand-dark);
    color: var(--white);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: var(--white);
    color: var(--link);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--link);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: var(--link);
    color: var(--white);
    transform: translateY(-1px);
}

.pagination-info {
    color: var(--ink);
    font-weight: 600;
    padding: 0 1rem;
}

.purchase-history {
    background-color: var(--brand-ground);
}

.order-card {
    background-color: var(--brand-ground);
}

.order-items h2 {
    color: var(--ink);
    font-size: 1.53rem;
    font-weight: 600;
}

.items-list {
    display: flex;
    flex-direction: column;
}

.order-item {
    background-color: var(--cream);
    margin: 0.3rem 0.7rem;
    padding: 0.75rem;
    border-radius: 1.1rem;
}

.order-item img {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.item-details {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.item-price {
    background: #d4edda;
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.765rem;
}

.item-tickets-count {
    font-size: 1.105rem;
    font-weight: bold;
}

.item-tickets-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ticket-number:not(:last-child):after {
    content: ", ";
}

.item-tickets h4 {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
    font-weight: 500;
}

.ticket-number {
    color: #2a2a10;
    font-size: 1.105rem;
}

.cart-header {
    font-size: 1.105rem;
    font-weight: 700;
    border-bottom: 2px solid var(--border);
    color: var(--ink);
    text-align: center;
    width: 100%;
}

.cart-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
    gap:0.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    height: 5.5rem;
    width: auto;
    object-fit: scale-down;
    border-radius: 0.75rem;
    background: transparent;
    object-position: top;
}

.cart-item-details {
    flex: 1;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.cart-item-title {
    font-size: 1.105rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
    text-align: center;
}

.cart-item-free-tickets {
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 500;
    margin: 0.15rem 1rem 0.1rem;
    text-align: center;
}

.item-free-tickets {
    display: block;
    color: var(--success);
    font-weight: 500;
    font-size: 1rem;
}

.cart-item-price {
    color: var(--ink);
    font-size: 1.105rem;
    font-weight: bold;
    display: flex;
}

.cart-item-price-label {
    margin-right: auto;
}

.cart-item-subtotal {
    font-size: 1.105rem;
    display: flex;
}

.cart-item-subtotal-label {
    margin-right: auto;
}

.cart-item-subtotal-price {
    font-size: 1.105rem;
}

.cart-footer {
    border-top: 2px solid var(--border);
    padding: 0.25rem;
    margin-top: auto;
    background: var(--surface);
    display: flex;
    flex-direction: column;
}

.cart-total-row {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    display: flex;
    font-size: 1.105rem;
    color: var(--ink);
    margin: 0 0.3rem;
}

.cart-total-row.cart-subtotal {
    font-size: 0.9rem;
}

.cart-total-row.cart-total {
    font-size: 1.445rem;
}

.cart-total-row.swish-coin-discount {
    color: var(--accent);
}

.cart-total-row.cart-free-tickets {
    color: var(--success);
}

.receipt-items {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.receipt-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px dotted var(--ink-soft);
    padding-bottom: 0.5rem;
}

.receipt-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.receipt-item-name {
    font-weight: 500;
    font-size: 0.8075rem;
    line-height: 1.3;
}

.receipt-item-line {
    display: grid;
    font-size: 0.765rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
}

.receipt-item-line span:last-child {
    font-weight: 600;
}

.receipt-item-free {
    font-size: 0.7225rem;
    color: var(--success);
    font-weight: 500;
    margin-top: 0.1rem;
}

.cart-checkout-btn {
    font-family: "Quicksand", sans-serif;
    background: #ffd976;
    color: var(--ink);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1.105rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-checkout-btn.disabled {
    background-color: var(--muted);
    color: var(--white);
    cursor: not-allowed;
}

.draw-buy-totals {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.draw-buy-total-row {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--ink);
    margin: 0 0.3rem;
}

.draw-buy-total-row.draw-buy-subtotal {
    font-size: 0.8rem;
}

.draw-buy-total-row.draw-buy-free-tickets {
    color: var(--success);
}

.cart-checkout-btn:not(.disabled):hover {
    background: var(--link-hover);
    transform: translateY(-1px);
}

.draw-page {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.draw-main-section {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    background-color: var(--brand-tint);
    display: flex;
    flex-direction: column;
}

.draw-images {
}

.main-image {
    width: 100%;
    object-fit: cover;

    display: block;
}

.main-image-container {
    padding: 1rem;
}

.draw-main-media {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.draw-page-name {
    font-size: 1.105rem;
    color: var(--ink);
    text-align: center;
    font-weight: bold;
    margin: 0.5rem 0;
}

.buycard-name {
    color: var(--ink);
    font-weight: bold;
    margin: 0.5rem 0;
    font-size: 1.105rem;
}

.draw-timer-soon {
    font-size: 1.105rem;
    font-weight: 700;
    padding: 0.7rem 0.1rem;
    animation: glow 0.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 0 var(--white);
    }
    to {
        text-shadow: 0 0 3px var(--ink-soft);
    }
}

.draw-page-money {
    text-align: center;
    font-size: 1.105rem;
    padding-bottom: 1rem;
}

.draw-page-money-value {
    color: var(--accent);
}

.draw-page-subtitle {
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--ink);
    padding: 0.5rem 0 1rem 0;
    font-weight: 650;
}

.draw-preview-banner {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
}

.draw-info-watch-live {
    margin-top: 0.5rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.draw-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.draw-info h1 {
    font-size: 1.5725rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.draw-info-live {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.445rem;
    color: var(--accent);
}

.draw-info-live .draw-timer .timer-item-count {
    font-size: 1.615rem;
    font-weight: bold;
}

.draw-info-live .draw-timer .timer-item-label {
    font-size: 0.765rem;
}

.draw-info-live .draw-timer .timer-separator {
    font-size: 1.615rem;
    padding: 0 0.5rem;
}

.draw-info-date {
    color: var(--ink);
}

.prices {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5725rem;
    font-weight: 700;
    color: var(--link);
}

.buy-btn {
    padding: 1.2rem 2rem;
    background: var(--link);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.935rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.buy-btn:hover {
    background: var(--link-hover);
    transform: translateY(-1px);
}

.instant-wins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instant-win {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.instant-image-container {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin-bottom: 1rem;
}

.instant-image-container img {
    width: 100%;
    border-radius: 12px;
}

.ticket-info {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.7225rem;
    font-weight: 500;
}

.instant-desc {
    color: var(--ink);
    font-size: 0.7225rem;
    line-height: 1.5;
}

.slider-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    gap: 0.5rem;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 2.3rem;
}

.slider {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    appearance: none;
    background: linear-gradient(to right, var(--accent) var(--progress, 0%), var(--border) var(--progress, 0%));
    outline: none;
    cursor: pointer;
}

.slider-bonus {
    position: absolute;
    bottom: 0;
    height: 0.5rem;
    background: var(--success);
    border-radius: 0 0.25rem 0.25rem 0;
    pointer-events: none;
    z-index: 1;
}

.slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    background: transparent;
    border-radius: 0.25rem;
}

.slider::-moz-range-track {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
}

.slider::-moz-range-progress {
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--white);
    border: 0.25rem solid var(--accent);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--accent);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    background: radial-gradient(circle, var(--white) 40%, var(--accent) 40%, var(--accent) 70%, transparent 70%);
}

.slider-min-max {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    width: 100%;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    padding-left: 0.5rem;
}

.slider-min,
.slider-max {
    font-size: 1.105rem;
    color: var(--ink);
}

.slider-tooltip {
    position: absolute;
    top: -0.85rem;
    left: 0;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.765rem;
    font-weight: 600;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--accent);
}

.content p,
.info p {
    margin-bottom: 15px;
}

.content h1,
.content h2,
.content h3,
.info h1,
.info h2,
.info h3 {
    margin: 30px 0 12px;
    line-height: 1.3;
}

.content > *:first-child,
.info > *:first-child {
    margin-top: 0;
}

.content ul,
.content ol,
.info ul,
.info ol {
    margin: 0 0 15px 20px;
}

.content li,
.info li {
    margin-bottom: 6px;
}

.content blockquote,
.info blockquote {
    margin: 0 0 15px;
    padding-left: 15px;
    border-left: 3px solid var(--border);
}

.section {
    margin-bottom: 30px;
}

.clause {
    margin-bottom: 15px;
    padding-left: 0;
}

.sub-clause {
    margin-bottom: 10px;
    padding-left: 20px;
}

.sub-sub-clause {
    margin-bottom: 8px;
    padding-left: 40px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fly-to-cart {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--cart-x, 0px), var(--cart-y, 0px)) scale(0.3);
        opacity: 0;
    }
}

.fly-image {
    pointer-events: none;
    z-index: 1000;
    position: fixed;
    transform-origin: 50% 50%;
    animation: fly-to-cart 0.8s ease-in forwards;
}

.button__badge {
    background-color: var(--danger);
    border-radius: 12px;
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.6375rem;
    font-weight: 600;
    position: absolute;
    right: -7px;
}

.outlined-input-container {
    display: flex;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem 0.75rem 0.25rem 0.75rem;
    transition: border-color 0.2s;
    position: relative;
    background: var(--white);
}

.outlined-input-container.error {
    border-color: var(--danger);
}

.outlined-input-label {
    background-color: var(--white);
    color: darkgray;
    padding: 0.1rem 0.25rem;
    font-size: 0.765rem;
    transition: color 0.2s, transform 0.2s;
}

.outlined-input {
    border: none;
    outline: none;
    background: transparent;
    color: var(--ink);
    padding: 0.5rem 0 0.25rem;
    width: 100%;

    font-size: 1rem;
    margin-top: 0.2rem;
    margin-bottom: -0.1rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

@keyframes onAutoFillStart { from {} to {} }

.outlined-input:-webkit-autofill,
.outlined-input:autofill {
    animation-name: onAutoFillStart;
    animation-duration: 0.001s;
}

.outlined-input:disabled {
    background: var(--surface);
    color: var(--muted);
}
.outlined-input-container .outlined-input-label {
    position: absolute;
    pointer-events: none;
    font-size: 1rem;
    font-weight: 700;
    background-color: transparent;
}

.outlined-input-container .floating-input-label {
    transform: scale(0.7);
    transform-origin: top left;
    top: 0.1rem;
    left: 0.5rem;
}

.outlined-input-container:has(.phone-input-wrapper) .outlined-input-label {
    left: 5.1rem;
}

.outlined-input-error-message {
    color: var(--danger);
    font-size: 0.7225rem;
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    background-color: var(--white);
    padding: 0 0.5rem;
    font-weight: 500;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-right: 0.5rem;
    color: darkgray;
    font-size: 0.9rem;
    white-space: nowrap;
    border-right: 2px solid var(--border);
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.phone-flag {
    width: 1.4rem;
    height: auto;
    display: block;
}

.phone-input-wrapper .outlined-input {
    flex: 1;
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "burger logo header-right";
        padding: 0 1rem;
    }

    .nav-left {
        display: none;
    }

    .header-logo {
        padding: 0.5rem 0;
    }

    .burger-menu {
        display: flex;
        z-index: 10;
    }

    .header-right {
        z-index: 10;
    }

    .account-bar {
        display: flex;
        gap: 0.5rem;
    }

    .page-title {
        font-size: 1.5725rem;
    }

    .large-prize-draw-left,
    .large-prize-draw-right {
        padding: 2rem 1.5rem;
    }

    .modal-box {
        min-width: 320px;
        margin: 1rem;
        padding: 1rem;
    }

    .pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-btn {
        width: 100%;
        text-align: center;
    }

    .item-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .instant-wins {
        grid-template-columns: 1fr;
    }

    .draw-info h1 {
        font-size: 1.105rem;
    }

    .price {
        font-size: 1.105rem;
    }

    .sticky-sections {
        top: var(--header-height, 63px);
    }
}

@media (max-width: 480px) {
    .nav-left {
        gap: 0.5rem;
    }

    .nav-left-item {
        padding: 0.5rem;
        font-size: 0.765rem;
    }

    .page-title {
        font-size: 1.4875rem;
    }

}

.info-dropdown {
    align-self: center;
    margin: 0.5rem 0;
}

.info-dropdown-header {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink);
    font-size: 1.105rem;
    padding: 0.5rem 1rem;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.info-dropdown-header:hover {
    background-color: var(--surface);
}

.info-dropdown-arrow {
    font-size: 1.02rem;
    transition: transform 0.3s ease;
    display: inline-block;
    transform-origin: 50% 50%;
}

.info-dropdown-arrow.open {
    transform: rotate(180deg);
}

.info-dropdown-content {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    color: var(--ink);
    line-height: 1.6;
}

.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 998;
    pointer-events: none;
    transition: background 0.3s ease;
    overflow: auto;
}

.bottom-sheet-overlay.open {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(90vh, 90dvh);
    background: var(--white);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;

    -webkit-transform: translateY(100%);
    will-change: transform;
}

.bottom-sheet.open {
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

@media (min-width: 48rem) {
    .bottom-sheet:has(.cart-card) {
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;

        height: auto;
        width: min(26rem, 100vw);

        border-radius: 24px 0 0 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);

        transform: translateX(100%);
        -webkit-transform: translateX(100%);
    }

    .bottom-sheet:has(.cart-card).open {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

.bottom-sheet-handle {
    padding: 1rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.bottom-sheet-handle-bar {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.bottom-sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

@supports (-webkit-touch-callout: none) {
    .bottom-sheet {
        height: min(95dvh, 95vh);
        max-height: 95dvh;
        -webkit-text-size-adjust: 100%;

        z-index: 999;
    }

    .bottom-sheet-content {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

.panel-section {
    display: flex;
    flex-direction: column;
}

.panel-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    border-radius: 12px 12px 0 0;
}

.panel-tab:first-child {
    border-radius: 12px 0 0 0;
}

.panel-tab:last-child {
    border-radius: 0 12px 0 0;
}

.panel-tab {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-style: normal;
    flex: 1;
    padding: 0.5rem;
    background: var(--surface);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1.02rem;
    color: var(--muted-soft);
    transition: all 0.2s ease;
    position: relative;
    bottom: -2px;
}

.panel-tab:hover {
    color: var(--ink);
    background: var(--white);
}

.panel-tab.selected {
    background: #ffeb66;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
}

.panel {
    padding: 0.5rem 0;
}

.skillgame-question-title {
    font-size: 0.7225rem;
    color: var(--accent);
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.skillgame-questions {
    background: var(--cream);
    border-radius: 12px;
    position: relative;
}

.skillgame-question-question {
    width: 100%;
    text-align: center;
    color: #b08b1b;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.105rem;
}

.skillgame-question-responses {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.skillgame-question-response {
    padding: 0 1rem;
    text-align: left;
    width: 100%;
    color: #b08b1b;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.105rem;
}

.skillgame-question-response input[type="radio"] {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.skillgame-question-response input[type="radio"]:checked {
    background-color: #ffeb66;
}

.skillgame-question-response .outlined-input-container {
    border: none;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.skillgame-question-response .outlined-input-container .outlined-input-label {
    color: #b08b1b;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.105rem;
}

.draw-main-section-small {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.draw-main-section-small img {
    width: 30%;
    height: 30%;
    border-radius: 16px;
    padding: 0;
}

.draw-page-price {
    font-size: 1.53rem;
    font-weight: bold;
}

.draw-page-price span {
    font-size: 0.9rem;
    font-weight: normal;
}

.draw-buy-quantity {
    display: flex;
    flex-direction: column;
    width: 13%;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

.draw-buy-quantity-value .outlined-input-container {
    border: 0;
}

.draw-buy-quantity-value input[type='text'] {
    text-align: center;
    padding: 0.25rem 0;
    margin-top: 0;
    margin-bottom: 0;
}

.draw-buy-slider {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

.draw-buy-slider .slider-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.draw-buy-slider .slider-center {
    width: 100%;
}

.draw-buy-slider .slider-label-left, .draw-buy-slider .slider-label-right {
    background-color: #fff4ab;
    vertical-align: middle;
    text-align: center;
    display: block;
    font-size: 1.8rem;
    color: var(--accent);
    margin: 1rem 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    width: 2.5rem;
}

.cart-item-details .draw-buy-slider {
    margin-top: 0;
    margin-bottom: 0;
    gap: 0.2rem;
    justify-content: center;

    align-items: center;
}

.cart-item-details .draw-buy-slider .slider-label-left, .cart-item-details .draw-buy-slider .slider-label-right {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.05rem;
    width: 1.6rem;
    height: 2.25rem;

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

.cart-item-details .draw-buy-slider .slider-count {
    font-size: 0.95rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    margin-left: 0;
    width: 3.6rem;
    height: 2.25rem;
    border-radius: 0;
    margin-top: 0;
}

.cart-item-details .draw-buy-slider .slider-count .outlined-input-container {
    border-radius: 0;
    height: 100%;
    padding: 0 0.4rem;
    align-items: center;
    justify-content: center;
}

.cart-item-details .draw-buy-slider .slider-count .outlined-input {
    padding: 0;
    margin: 0;
    height: 100%;
    text-align: center;
}

.cart-item-response {
    display: flex;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    column-gap: 0.5rem;
}

.cart-item-response-label {
    color: var(--accent);
}

.draw-buy-slider .slider-label-left {
    border-radius: 20px 0 0 20px;
}

.draw-buy-slider .slider-label-right {
    border-radius: 0 20px 20px 0;
}

.draw-buy-total {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.105rem;
    display: flex;
}

.draw-buy-section .large-prize-draw-buy-btn {
    font-family: "Quicksand", sans-serif;
    background-color: var(--brand);
    color: var(--white);
    border-radius: 1.2rem;
    border: 2.5px solid var(--brand);
    font-size: 1.5725rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem auto;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 95%;
    display: block;
}

.draw-buy-footer {
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tickets {
    width: 100%;
}

.footer {
    max-width: 75rem;
    margin: 0 auto;
    background-color: var(--brand-ground);
    color: var(--brand-dark);
    text-align: center;
    padding: 1.875rem 1.25rem;
    border-top: 0.0625rem solid var(--accent-dark);
}

.footer p {
    margin: 0.625rem 0;
    color: var(--brand);
    font-size: 0.765em;
}

.footer-links {
    margin-bottom: 0.9375rem;
}

.footer-links a,
.footer-links .footer-link-button {
    color: var(--brand);
    text-decoration: none;
    margin: 0 1.25rem;
    font-size: 0.765em;
}

.footer-links a:hover,
.footer-links .footer-link-button:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5625rem 0.9375rem;
    }

    .footer-links a,
    .footer-links .footer-link-button {
        display: block;
        margin: 0.5rem 0;
    }

    .footer-links .footer-link-button {
        width: fit-content;
        margin-inline: auto;
    }
}

.consent-section {
    margin: 0.5rem 1.5rem 0 1.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap:0.3rem;
}

.consent-section .outlined-input-label {
    font-size: 0.65rem !important;
}

.checkout-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 0.5rem 1rem;
}

.checkout-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: 6.75rem;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-steps .step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.3rem;
    top: 1.3rem;
    transform: translateY(-50%);
    width: 2.6rem;
    height: 2px;
    background: var(--ink-soft);
    z-index: 0;
}

.checkout-steps .step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-soft);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.checkout-steps .step-title {
    font-size: 0.8rem;
    color: var(--muted-soft);
    text-align: center;
    white-space: nowrap;
}

.checkout-steps .step.active .step-number,
.checkout-steps .step.completed .step-number {
    background: var(--accent);
}

.checkout-steps .step.active .step-title,
.checkout-steps .step.completed .step-title {
    color: var(--accent);
    font-weight: 700;
}

.address-form .form-body {
    padding: 0 1.5rem;
}

.checkout-address-body {
    padding: 0.5rem 1rem;
}

.checkout-address .address-details {
    margin-bottom: 0;
}

.checkout-address .address-line {
    color: var(--ink);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.payment-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.25rem 0;
}

body:has(.payment-fields) > div:has(> div > iframe) {
    z-index: 1002 !important;
}

@media (max-width: 30rem) {
    body:has(.payment-fields) > div:has(> div > iframe) > div {
        width: calc(100vw - 2rem) !important;
        min-width: 0 !important;
        max-height: calc(100dvh - 2rem) !important;
    }
}

.payment-error {
    background: #fdecea;
    color: #b3261e;
    border: 0.0625rem solid #f5c2c0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.payment-loading {
    padding: 0.75rem 0;
    color: var(--muted);
}

.payment-field-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.payment-field {
    width: 100%;
    height: 2.75rem;
    border: none;
    outline: none;
    background: transparent;
    display: block;
}

.payment-row {
    display: flex;
    gap: 0.75rem;
}

.payment-row-field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.security-info {
    font-size: 0.775rem;
    color: var(--muted);
    text-align: center;
    padding: 0.25rem 0;
}

.checkout-login-form {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-form {
    display: flex;
    flex-direction: column;
}

.social-login-title {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
}

.social-login-button {
    position: relative;
    padding: 0.5rem 1rem;
    border: 1px solid var(--faint);
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    color: var(--muted);
    font-size:0.8rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.social-login-button img {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.765rem;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.7225rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--link);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-input::placeholder {
    color: var(--muted);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--ink);
    font-size: 0.765rem;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 3px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--link);
    border-color: var(--link);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 10.2px;
    font-weight: bold;
}

.login-remember-password {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.register-social-large {
    overflow: hidden;
    max-height: 400px;
}

.register-social-large.hidden {
    max-height: 0;
}

.register-signup-views {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.register-signup-view {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.register-signup-view.hidden {
    display: none;
}

.login-form-inputs {
    color: var(--faint);
}

.login-form-inputs input::placeholder {
    color: var(--faint);
}

.register-promotions {
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    margin: 1rem 1.5rem;
}

.register-or-signup {
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    margin: 0.2rem 1.5rem;
}

.social-login-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.social-login-icons img {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-login-icons:hover img {
    opacity: 1;
}

.remember-me {
    display: flex;
    align-items: center;
    color: var(--border);
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.2rem;
}

.remember-me .outlined-input-container {
    border: none;
    padding: 0;
    background: transparent;
}

.remember-me .outlined-input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 3px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
}

.remember-me .outlined-input[type="checkbox"]:checked {
    background: var(--border);
    border-color: var(--border);
}

.remember-me .outlined-input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 10px;
    font-weight: bold;
}

.forgot-password a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

@media (max-width: 480px) {
    .checkout-login-form {
        margin: 1rem;
        padding: 1.5rem;
    }

}

.address-actions {
    display: flex;
    gap: 0.5rem;
}

.edit-btn,
.delete-btn {
    background: none;
    border: none;
    font-size: 0.7225rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.edit-btn:hover {
    background: rgba(0, 102, 204, 0.1);
}

.delete-btn:hover {
    background: rgba(220, 53, 69, 0.1);
}

.address-details {
    margin-bottom: 1rem;
}

.address-line {
    color: var(--muted);
    font-size: 0.765rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.address-form {
    background: var(--white);
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-header h3 {
    color: var(--ink);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.105rem;
    cursor: pointer;
    color: var(--muted);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.close-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.form-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.postcode-lookup {
    position: relative;
}

.postcode-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0.25rem 0 0;
    padding: 0;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    max-height: 16rem;
    overflow-y: auto;
}

.postcode-suggestion {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    color: var(--ink);
    cursor: pointer;
    border-bottom: 1px solid var(--surface);
}

.postcode-suggestion-sub {
    font-size: 0.72rem;
    color: var(--muted);
}

.postcode-suggestion:last-child {
    border-bottom: none;
}

.postcode-suggestion:hover {
    background: var(--surface);
}

.postcode-suggestion-empty {
    color: var(--muted);
    cursor: default;
}

.postcode-suggestion-empty:hover {
    background: transparent;
}

.form-group label {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.765rem;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.7225rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--link);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--ink);
    font-size: 0.765rem;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 3px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--link);
    border-color: var(--link);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 10.2px;
    font-weight: bold;
}

.address-form-postcode-or {
    align-content: center;
    color: darkgray;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.form-footer {
    padding: 0.5rem;
    display: flex;
    gap: 1rem;
    width: 90%;
    margin: auto;
}

.cancel-btn {
    background: var(--white);
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.8075rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: var(--surface);
    border-color: #adb5bd;
}

.save-btn {
    background: var(--link);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.8075rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.save-btn:hover {
    background: var(--link-hover);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-footer {
        flex-direction: column;
    }

    .cancel-btn,
    .save-btn {
        width: 100%;
    }

    .address-form {
        margin: 0;
        max-height: 95vh;
    }
}

.process-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:0.5rem;
}

.process-payment-btn {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    background: #ffd976;
    color: var(--ink);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1.105rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.process-payment-btn.disabled {
    background-color: var(--muted);
    color: var(--white);
    cursor: not-allowed;
}

.process-payment-btn:not(.disabled):hover {
    background: var(--link-hover);
    transform: translateY(-1px);
}

.thumbnails {
    height: 20%;
    width: 95%;
}

@media (min-width: 1024px) {
    .main-image-container {
        aspect-ratio: 1 / 1;
    }
    .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .thumbnails {
    }
    .draw-page-desktop-layout {
        display: grid;

        grid-template-columns: minmax(0, calc(5 * 95px + 4 * 0.2rem)) minmax(0, 1fr);

        overflow-x: clip;
        max-width: 1200px;
        margin: 0 auto;

        padding: 1.5rem;

        gap: 2rem;
        background-color: var(--brand-tint);
        align-items: start;
    }

    .draw-page-left-column {
        display: flex;
        flex-direction: column;
    }

    .draw-page-left-column .main-image-container {
        padding: 0;
    }

    .draw-page-left-column .draw-images {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .draw-page-left-column .thumbnails {
        width: 100%;
    }

    .draw-page-right-column {
        display: flex;
        flex-direction: column;

        position: relative;
    }

    .draw-page-title-desktop {
        font-size: 2rem;
        font-weight: 700;
        font-family: "Quicksand", sans-serif;
        color: var(--ink);
        display: block;
        text-align: center;
    }

    .draw-page-name {
        display: none;
    }

    .draw-page-left-column .draw-page-money {
        display: none;
    }

    .draw-page-right-column .draw-page-money {
        text-align: center;
        font-family: "Quicksand", sans-serif;
        font-weight: 600;
        font-size: 1.2rem;
        color: var(--muted);
    }

    .draw-info {
        margin: 0;
        background-color: var(--white);
        z-index: 1;

        position: relative;
    }

    .draw-info::after {
        content: '';
        background-color: var(--white);
        width: 1200px;
        top: 0;
        bottom: 0;
        position: absolute;
        left: -600px;
        z-index: -1;
    }

    .draw-sold-section {
        margin: 0;
    }

    .draw-images {
        z-index: 10;
    }
}

@media (max-width: 1023px) {
    .draw-page-right-column .draw-page-money {
        display: none;
    }
    .draw-page-desktop-layout {
        display: block;
    }

    .draw-page-title-desktop {
        display: none;
    }

    .draw-page-left-column,
    .draw-page-right-column {
        display: block;
    }
}

.draw-page-right-column {
    position: relative;
}

.bottom-sheet-overlay.bottom-sheet-relative {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.bottom-sheet-relative.open {
    opacity: 1;
}

.bottom-sheet.bottom-sheet-relative {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    max-height: 80vh;
}

.bottom-sheet.bottom-sheet-relative.open {
    transform: translateY(0);
}

@media (min-width: 1024px) {

    .bottom-sheet.bottom-sheet-relative {
        position: fixed;
        top: auto;
        bottom: 0;
        height: auto;
        max-height: 85vh;
    }
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--ink);
}

.item-count {
    color: var(--muted);
    font-size: 0.9rem;
    font-style: italic;
}

.no-items {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
    font-style: italic;
    background: var(--surface);
    border-radius: 6px;
    border: 2px dashed var(--faint);
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.item-info {
    flex: 1;
}

.image-preview {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.cancel-button {
    background: var(--muted);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.cancel-button:hover {
    background: var(--ink-soft);
}

.register-signup-view .container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.5rem 0;
    width: 100%;
}

.register-signup-view .checkboxswitch {
    display: inline-block;
    height: 1.5rem;
    position: relative;
    width: 2.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.register-signup-view .checkboxslider {
    background-color: var(--faint);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.register-signup-view .checkboxslider:before {
    background-color: var(--white);
    bottom: 0.125rem;
    content: "";
    height: 1.25rem;
    left: 0.125rem;
    position: absolute;
    transition: .4s;
    width: 1.25rem;
}

.register-signup-view input:checked + .checkboxslider {
    background-color: var(--success);
}

.register-signup-view input:checked + .checkboxslider:before {
    transform: translateX(1.375rem);
}

.outlined-input-label a {
    display:inline;
}

.register-signup-view .switch .outlined-input-label {
    background-color: transparent;
    color: var(--muted);
    padding: 0;
    font-size: 0.75rem;
    line-height: 1.1;
    cursor: pointer;
    display: block;
    margin-left: 0.25rem;
    margin-top: 0.125rem;
}

.register-signup-view .outlined-input-label a,
.checkout-address-form .outlined-input-label a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.register-signup-view .outlined-input-label a:hover,
.checkout-address-form .outlined-input-label a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.home-offerings {
    background-color: var(--brand-tint);
    padding: 0.75rem;
}

.home-offerings-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offering-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    background-color: var(--brand-panel);
}

.offering-item-image img {
    width: 55%;
    height: auto;
    object-fit: contain;
}

.offering-item-title {
    margin-bottom: 0.35rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1.2;
    color: var(--ink);
    text-transform: uppercase;
    white-space: nowrap;
}

.offering-item-text {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    line-height: 1.3;
    color: var(--ink-soft);
}

@media (min-width: 640px) {
    .offering-item-image {
        width: 3.6rem;
        height: 3.6rem;
    }

    .offering-item-title,
    .offering-item-text {
        font-size: 1rem;
    }
}

.home-winners {
    background-color: var(--brand-ground);
    padding: 1.5rem 0.5rem 1.75rem 0.5rem;
}

.home-winners-card {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0.5rem;
    border-radius: 0.875rem;
    background-color: var(--brand-tint);
}

.home-winners-people {
    display: contents;
}

.home-winners-avatars {
    display: flex;
    flex-shrink: 0;
    order: 1;
}

.home-winners-avatar {
    display: block;
    width: 3.45rem;
    height: 3.45rem;
    margin-left: -0.8rem;
    border-radius: 50%;
    overflow: hidden;
}

.home-winners-avatar:first-child {
    margin-left: 0;
}

.home-winners-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-winners-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    order: 2;
}

.home-winners-count {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ce407e;
    text-transform: uppercase;
    margin-left: 0.3rem;
}

.home-winners-location {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    margin-left: 0.3rem;
}

.home-winners-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.05rem;
    height: 2.05rem;
    margin-left: auto;
    border: 1px solid #ce407e;
    border-radius: 50%;
    color: #ce407e;
    order: 3;
}

.home-winners-chevron {
    width: 0.85rem;
    height: 0.85rem;
}

.home-stats {
    background-color: var(--brand-tint);
    padding: 0.5rem;
}

.home-stats-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.home-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-stat + .home-stat::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 2px;
    height: 3.7rem;
    background-color: var(--brand-line);
}

.home-stat-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.6rem;
    border-radius: 50%;
    background-color: var(--brand-pop);
}

.home-stat-image img {
    width: 68%;
    height: auto;
    object-fit: contain;
}

.home-stat-value {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0.55rem;
}

.home-stat-label {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--ink-soft);
    text-transform: uppercase;
    max-width: 23vw;
}

.home-stat-label.prizes-won {
    width: 3rem;
}

.home-nextdraw {
    background-color: var(--brand-ground);
}

.home-nextdraw-banner {
    display: block;
}

.home-nextdraw-banner img {
    width: 100%;
    height: auto;
}

.home-nextdraw-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 0.5rem 0.9rem 0.5rem;
}

.home-nextdraw .draw-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-nextdraw .draw-timer-title {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--brand-dark);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.home-nextdraw .draw-timer-countdown {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.home-nextdraw .timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

.home-nextdraw .timer-item-count {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.15;
    color: var(--ink);
}

.timer-digit {
    display: inline-block;
    width: 1ch;
    text-align: center;
}

.home-nextdraw .timer-item-label {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--brand-dark);
    text-transform: uppercase;
}

.home-nextdraw .timer-separator {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.15;
    color: var(--ink);
    align-self: flex-start;
    flex: 0 0 auto;
    width: 0.6rem;
    min-width: 0;
    text-align: center;
}

.home-nextdraw-week {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: auto 0.6rem;
    padding-left: 1.2rem;
}

.home-nextdraw-week::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 5rem;
    transform: translateY(-50%);
    background-color: var(--brand-line);
}

.home-nextdraw-week-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background-color: var(--brand-panel);
}

.home-nextdraw-week-icon img {
    width: 45%;
    height: auto;
    object-fit: contain;
}

.home-nextdraw-week-label {
    max-width: 4.2rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.05;
    color: var(--brand-dark);
    text-transform: uppercase;
}

@media (min-width: 1170px) {

    .section-reveal-content {
        margin: 0.5rem auto;
        width: 80%;
    }

    .my-account-page {
        max-width: 1200px;
    }

    .account-shell {
        max-width: 1200px;
        margin: 0 auto;
    }

    .account-shell-body {
        display: grid;
        grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
        align-items: start;
        column-gap: 1rem;
    }

    .account-shell-identity {
        display: block;
        position: sticky;
        top: var(--header-height, 0px);
        z-index: 101;
        background-color: var(--brand-ground);
    }

    .account-shell-header {
        display: block;
    }

    .account-shell-menu {
        display: block;
        align-self: stretch;
        background-color: var(--brand-ground);
        padding: 0.75rem;
    }

    .account-shell-content {
        min-width: 0;
        padding-right: 1rem;
    }

    .account-shell-header .my-account-links {
        flex-direction: column;
    }

    .account-shell-header .my-account-order,
    .account-shell-header .my-account-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
        gap: 0.25rem 0.75rem;
    }

    .account-shell-header .my-account-links-link {
        margin: 0.35rem 0;
    }

    .account-shell-header .my-account-links-link a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .account-shell-menu .my-account-menu-section {
        width: 100%;
        margin: 0;
    }

    .account-shell-menu .my-account-menu-section ul {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .account-shell-menu .my-account-menu-section li {
        aspect-ratio: auto;
        border-radius: 10px;
        justify-content: flex-start;
    }

    .account-shell-menu .my-account-menu-section .my-account-horizontal-button {
        grid-column: auto;
        height: auto;
    }

    .account-shell-menu .my-account-menu-section li a {
        font-size: 1.05rem;
        justify-content: flex-start;
        text-align: left;
        height: auto;
        padding: 0.7rem 0.9rem;
    }

    .account-shell-content .my-account-page {
        max-width: none;
        margin: 0;
    }

    .account-shell-content .purchase-history {
        background-color: transparent;
    }

    .account-shell-content .my-account-links,
    .account-shell-content .my-account-menu-section,
    .account-shell-content .account-sticky,
    .account-shell-content .draw-back-link {
        display: none;
    }

    .account-shell-identity .account-section {
        margin-bottom: 0;
    }

    .home-page {
        display: grid;

        grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.75fr) minmax(0, 0.43fr) minmax(0, 0.9fr) minmax(0, 0.8fr);

        max-width: 1320px;
        margin: 0 auto;
    }

    .home-page > * {
        grid-column: 1 / -1;
    }

    .home-page > .featured-draws {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
    }

    .home-nextdraw {
        display: contents;
    }

    .home-nextdraw-banner {
        grid-row: 1;
        grid-column: 1 / -1;
    }

    .home-nextdraw-banner img {
        aspect-ratio: 1536 / 748;
    }

    .home-offerings,
    .home-nextdraw-countdown,
    .home-nextdraw-week,
    .home-stats,
    .home-winners {
        grid-row: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.25rem 0.5rem 0.6rem;
    }

    .home-nextdraw-bar {
        display: contents;
    }

    .home-nextdraw-countdown {
        grid-column: 2;
    }

    .home-offerings {
        grid-column: 1;
    }

    .home-stats {
        grid-column: 4;
        background-color: var(--brand-panel);
    }

    .home-winners {
        grid-column: 5;
        padding: 1.25rem 1.5rem 0.6rem;
        background-color: var(--brand-tint);
    }

    .home-offerings-list {
        width: 100%;
        gap: 0.4rem;
    }

    .home-stats-list {
        width: 100%;
        gap: 0.5rem;
    }

    .offering-item-image {
        width: 2.6rem;
        height: 2.6rem;
        margin-bottom: 0.5rem;
    }

    .offering-item-title,
    .offering-item-text {
        font-size: min(0.62rem, 0.75vw);
    }

    .home-nextdraw .draw-timer-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .home-nextdraw .timer-item {
        width: 2.2rem;
    }

    .home-nextdraw .draw-timer-countdown {
        gap: 0.15rem;
    }

    .home-nextdraw .timer-item-count,
    .home-nextdraw .timer-separator {
        font-size: 1.6rem;
    }

    .home-nextdraw .timer-separator {
        width: 0.4rem;
    }

    .home-nextdraw .timer-item-label {
        font-size: 0.72rem;
    }

    .home-nextdraw-week {
        grid-column: 3;
        flex-direction: column;
        text-align: center;
        margin: 0;
        gap: 0.5rem;
        background-color: var(--brand-tint);
    }

    .home-nextdraw-week::before,
    .home-stat + .home-stat::before {
        display: none;
    }

    .home-nextdraw-week-icon {
        width: 2.6rem;
        height: 2.6rem;
    }

    .home-nextdraw-week-label {
        max-width: 7rem;
        font-size: 0.78rem;
        text-align: center;
    }

    .home-stat-image {
        width: 2.2rem;
        height: 2.2rem;
        margin-bottom: 0.4rem;
    }

    .home-stat-value {
        font-size: 1.35rem;
        margin-bottom: 0.3rem;
    }

    .home-stat-label {
        font-size: 0.6rem;
    }

    .home-winners-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.55rem;
        width: 100%;
        padding: 0;
        background-color: transparent;
    }

    .home-winners-people {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.7rem 1rem;
        border-radius: 0.875rem;
        background-color: var(--brand-panel);
    }

    .home-winners-arrow {
        margin-left: 0;
    }

    .home-winners-avatar {
        width: 2.6rem;
        height: 2.6rem;
        margin-left: -0.6rem;
    }

    .home-winners-text {
        align-items: center;
        text-align: center;
    }

    .home-winners-count {
        font-size: 1.3rem;
        margin-left: 0;
    }

    .home-winners-location {
        font-size: 0.95rem;
        margin-left: 0;
    }
}

.content.how-it-works {
    background-color: var(--white);
}

.content.how-it-works h1 {
    text-align: center;
    margin-top: 1rem;
}

.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 0.25rem 1.5rem 0.25rem;
}

.how-it-works-step {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
}

.how-it-works-step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.how-it-works-step-number {
    flex-shrink: 0;
    width: 2.7rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--ink);
}

.how-it-works-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
}

.how-it-works-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how-it-works-step-title {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--ink);
}

.how-it-works-step-description {
    margin-top: 0.9rem;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

@media (min-width: 640px) {
    .how-it-works {
        padding: 2rem 1rem 3rem 1rem;
    }

    .how-it-works-step-title {
        font-size: 1.3rem;
    }

    .how-it-works-step-description {
        font-size: 1rem;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
}

.static-doc {
    background-color: var(--white);
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.65;
    padding: 1.5rem 1.25rem 2.5rem;
}

.static-doc .container,
.static-doc .terms,
.static-doc.about {
    max-width: 62rem;
    margin-left: auto;
    margin-right: auto;
}

.static-doc h1 {
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 1.6rem;
}

.static-doc h2 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.25rem;
    margin: 2rem 0 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--brand-tint);
}

.static-doc p {
    margin: 0 0 0.85rem;
}

.static-doc p:last-child {
    margin-bottom: 0;
}

.static-doc strong {
    color: var(--ink);
    font-weight: 700;
}

.static-doc a,
.static-doc .email {
    color: #c2185b;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.static-doc a:hover,
.static-doc .email:hover {
    text-decoration: underline;
}

.static-doc ul,
.static-doc ol {
    margin: 0.5rem 0 1rem 1.5rem;
}

.static-doc li {
    margin-bottom: 0.4rem;
}

.static-doc .section {
    margin-bottom: 1.75rem;
}

.static-doc .clause {
    margin-bottom: 0.9rem;
}

.static-doc .sub-clause {
    margin: 0.5rem 0 0.5rem 1.25rem;
}

.static-doc .sub-sub-clause {
    margin: 0.5rem 0 0.5rem 2.5rem;
}

.static-doc .definition,
.static-doc .company-details {
    background-color: var(--brand-tint);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}

.static-doc .definition-term {
    color: var(--ink);
    font-weight: 700;
}

.static-doc .definition > .definition-term {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.static-doc .contact-info {
    margin-top: 0.5rem;
}

.static-doc .warning-box {
    background-color: var(--peach);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.static-doc table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.9rem;
}

.static-doc.faq p:has(strong) {
    margin-top: 1.6rem;
}

.static-doc.faq p strong {
    font-size: 1.08rem;
    color: var(--ink);
}

@media (min-width: 640px) {
    .static-doc {
        padding: 2.5rem 2.5rem 3.5rem;
    }

    .static-doc h1 {
        font-size: 2.1rem;
    }
}

.results-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
    color: var(--ink);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header__title {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.9125rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.results-header__subtitle {
    color: var(--muted);
    font-size: 1rem;
}

.results-empty {
    text-align: center;
    color: var(--muted);
    font-size: 1.02rem;
    padding: 3rem 1.5rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 1rem 0;
}

.results-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.results-pagination__btn {
    background: var(--white);
    color: var(--brand);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--brand);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.results-pagination__btn:hover {
    background: var(--brand);
    color: var(--white);
    transform: translateY(-1px);
}

.results-pagination__btn.is-disabled {
    background: var(--surface);
    color: var(--border);
    border-color: var(--border);
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.results-pagination__info {
    color: var(--ink);
    font-weight: 600;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .results-page {
        padding: 1.5rem 1rem 2.5rem;
    }

    .results-header__title {
        font-size: 1.5rem;
    }

    .results-pagination {
        gap: 0.6rem;
    }

    .results-pagination__btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

.winners__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.winner-card {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.winner-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.winner-card__media {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--cream);
}

.winner-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    min-width: 0;
}

.winner-card__prize {
    font-family: "Quicksand", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}

.winner-card__drawn {
    color: var(--muted);
    font-size: 0.85rem;
}

.winner-card__winner {
    color: var(--ink);
    font-size: 0.95rem;
}

.winner-card__location {
    color: var(--muted);
}

.winner-card__number {
    color: var(--muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.winner-card__number-value {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .winner-card {
        flex-direction: column;
    }

    .winner-card__media {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.draw-winners {
    background: var(--cream);
    border: 0.0625rem solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
    padding: 1rem;
}

.draw-winners__media {
    background: var(--cream);
    border-radius: 0.75rem;
}

.draw-winners__name {
    font-family: "Quicksand", sans-serif;
}

.draw-winners__name a {
    color: var(--ink);
}

.draw-winners__drawn,
.draw-winners__count {
    color: var(--muted);
}

.draw-winners__win {
    border-top-color: var(--border);
}

.draw-winners__kind {
    background: var(--surface);
    color: var(--muted);
}

.draw-winners__win--draw .draw-winners__kind {
    background: var(--brand);
    color: var(--white);
}

.draw-winners__win--instant .draw-winners__kind {
    background: var(--accent);
    color: var(--ink);
}

.draw-winners__win--near-miss .draw-winners__kind {
    background: var(--brand-tint);
    color: var(--brand);
}

.draw-winners__prize {
    font-family: "Quicksand", sans-serif;
    color: var(--ink);
}

.draw-winners__who {
    color: var(--ink);
}

.draw-winners__location,
.draw-winners__ticket {
    color: var(--muted);
}

.entry-draws__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.entry-draw-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.entry-draw-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.entry-draw-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.entry-draw-card__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    margin: 1.1rem 1.1rem 0;
    border-radius: 12px;
    background: var(--cream);
}

.entry-draw-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    padding: 1rem 1.1rem 1.1rem;
}

.entry-draw-card__name {
    font-family: "Quicksand", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.entry-draw-card__drawn {
    color: var(--muted);
    font-size: 0.85rem;
}

.entry-draw-card__entries {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.entry-draw-card__cta {
    display: block;
    margin-top: auto;
    text-align: center;
    background: var(--brand);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    border-radius: 30px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.entry-draw-card__link:hover .entry-draw-card__cta {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .entry-draws__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.entry-list__back {
    display: inline-block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    transition: color 0.2s ease;
}

.entry-list__back:hover {
    color: var(--brand);
}

.entry-list__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--brand-tint);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
}

.entry-list__media {
    flex-shrink: 0;
    width: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--brand-tint);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.entry-list__meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.entry-list__title {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ink);
}

.entry-list__drawn {
    color: var(--muted);
    font-size: 0.9rem;
}

.entry-list__entries {
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
}

.entry-table__wrap {
    overflow-x: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.entry-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: var(--ink);
}

.entry-table th {
    position: sticky;
    top: 0;
    background: var(--brand);
    color: var(--white);
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.85rem 1.1rem;
}

.entry-table td {
    padding: 0.65rem 1.1rem;
    border-bottom: 1px solid var(--border);
}

.entry-table tbody tr:nth-child(even) td {
    background: var(--brand-tint);
}

.entry-table tbody tr:hover td {
    background: var(--peach);
}

.entry-table__num {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
}

.entry-table__name {
    color: var(--ink);
}

@media (max-width: 768px) {
    .entry-list__header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .entry-list__media {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .entry-list__title {
        font-size: 1.35rem;
    }

    .entry-table {
        font-size: 0.85rem;
    }

    .entry-table th,
    .entry-table td {
        padding: 0.55rem 0.7rem;
    }
}

.win-row-date {
    background: var(--brand);
}

.win-row-details {
    font-family: "Quicksand", sans-serif;
}

.win-row-detail dd {
    font-variant-numeric: tabular-nums;
}

.claim-win-title,
.claim-win-option {
    font-family: "Quicksand", sans-serif;
}

.draw-enter-closed {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    background-color: var(--surface);
    border: 2px solid var(--border);
    border-radius: 1.2rem;
    padding: 0.45rem 1.5rem;
    margin: 1rem auto;
    display: table;
    text-align: center;
}

.order-number {
    font-weight: 700;
    margin-right: 0.6rem;
}

.prize-draw-top {
    position: relative;
}

.prize-draw-image {
    display: block;
}

.draw-worth-badge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(45, 52, 54, 0.55);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    line-height: 1.15;

    pointer-events: none;
}

.draw-worth-badge-label {
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.draw-worth-badge-value {
    font-size: 1.37rem;
    font-weight: 500;
}

.draw-main-media .draw-worth-badge {
    padding: 0.7rem 1.3rem;
}

.draw-main-media .draw-worth-badge-label { font-size: 1.07rem; }
.draw-main-media .draw-worth-badge-value { font-size: 1.63rem; }

.draw-worth-badge.draw-worth-badge-small {
    padding: 0.4rem 0.8rem;
    gap: 0.3rem;
}

.draw-worth-badge-small .draw-worth-badge-label { font-size: 0.78rem; }
.draw-worth-badge-small .draw-worth-badge-value { font-size: 1.1rem; }

.prize-draw-enter-now.is-closed {
    background-color: transparent;
    color: var(--brand);
    border-color: var(--brand);
    font-weight: 600;
}

.policy-updated {
    margin: 0.25rem 0 1.25rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.policy-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.policy-table th,
.policy-table td {
    padding: 0.5rem 0.7rem;
    border: 1px solid #e6e0dc;
    text-align: left;
    vertical-align: top;
}

.policy-table th {
    font-weight: 700;
}

.order-draw-schedule {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
}


.draw-winner {
    font-family: "Quicksand", sans-serif;
    margin: 1rem auto;
    padding: 0.9rem 1rem;
    width: 95%;
    text-align: center;
    background-color: var(--brand-ground);
    border: 0.125rem solid var(--accent-dark);
    border-radius: 1.2rem;
    color: var(--brand-dark);
}

.draw-winner-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.draw-winner-number {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
}

.draw-winner-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.draw-winner-location {
    font-weight: 400;
}

.draw-winner-drawn {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--ink-soft);
}
