/* Modern Light Theme - Responsive Design */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Bricolage Grotesque Condensed";
    src: url("../fonts/BricolageGrotesque_Condensed-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bricolage Grotesque Condensed";
    src: url("../fonts/BricolageGrotesque_Condensed-Medium.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Bricolage Grotesque Condensed";
    src: url("../fonts/BricolageGrotesque_Condensed-SemiBold.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Bricolage Grotesque Condensed";
    src: url("../fonts/BricolageGrotesque_Condensed-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@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: Manrope, sans-serif;
    background: #ffffff;
    color: #2d3436;
    line-height: 1.6;
    font-size: 16px;
}

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

a:hover {
    color: inherit;
}

/* Container and Layout */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    top:63px;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 2px solid #e1e8ed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    align-content: center;
    height:63px;
}

.header-container {
    padding: 0 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0.7rem auto;
}

.nav-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-left-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-left a {
    color: #2d3436;
    font-weight: 500;
    text-decoration: none;
}

.nav-left a:hover,
.nav-left a.selected {
    background: #f8f9fa;
    color: #0066cc;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}




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

.burger-line {
    width: 26px;
    height: 2px;
    background: #4d4c52;
    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: #ffffff;
    border-bottom: 2px solid #e1e8ed;
    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: #2d3436;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.selected {
    background: #f8f9fa;
    color: #0066cc;
}

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

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

.account-bar-item {
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0.95rem 0 0.95rem 0;
}

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

.sticky-sections {
    position: sticky;
    top: 63px;
    z-index: 50;
    background-color: #ffffff;
    will-change: transform;
    transform: translateZ(0);
    overflow: visible;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-size: 1.2rem;
}

.sticky-sections .swish-coin-balance {
    background-color: #fffbf2;
}

.category-order-list {
    display: flex;
    background-color: #ffffff;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    font-weight: 400;
}

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

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

.category-select-list {
    margin: 0.1rem;
    display: flex;
    border-bottom: 1px solid #000000;
    background-color: #ffffff;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    font-weight: 500;
}

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

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

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

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


/* User Menu */
.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: #f8f9fa;
}

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

.user-menu {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    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: #2d3436;
    text-decoration: none;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f1f3f4;
}

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

.user-menu-item:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

/* Page Titles */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 2rem;
    text-align: center;
}

/* Next Draw */
.nextdraw-container {
    position: relative;
}

.nextdraw-container img  {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

.nextdraw-container .draw-timer {
    position: absolute;
    top: 5%;
    left: 18%;
    width: 64%;
    height: 20%;
    font-size: 2.2rem;
    font-weight: 700;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 0 2rem 0 2rem;
    align-content: center;
}

.nextdraw-container .draw-timer-title {
    font-size:1.5rem;
    text-align: center;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    padding: 0;
}
.draw-timer-countdown {
    display: flex;
    text-align: center;
    padding: 0;
}

.nextdraw-container .draw-timer-countdown {
    color: #000000;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0 0.2rem;
}

.nextdraw-container .enter {
    color: #0a0a0a;
    position: absolute;
    left: 27.5vw;
    top: clamp(330px,40vh,500px);
    background-color: #fefccb;
    width: 45vw;
    height: 11vw;
    border-radius: 30px;
    text-align: center;
    align-content: center;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    font-weight: 500;
    font-size: 6.5vw;
}

.draw-back {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    border-style: solid none solid none;
    border-width: 1px;
    border-color: #0a0a0a;
    background-color: #fffbf2;
    color: #0a0a0a;
    font-size: 1.7rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    width: 100%;
}

.draw-sold-section {
    background-color: #ffecec;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    padding: 1rem 1rem 0 1rem;
}

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

.swish-coin-balance {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    border-style: solid none solid none;
    border-width: 1px;
    border-color: #0a0a0a;
    background-color: #ffffff;
    color: #ff8963;
    margin: 0;
    padding: 0.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.swish-coin-balance-label {
    font-size: 1.8rem;
    margin-left: auto;
    margin-right: 1rem;
}

.swish-coin-balance-amount {
    font-size: 1.6rem;
    color: #0a0a0a;
    background-color: #f9cc88;
    padding: 0 0.3rem 0 0.3rem;
    border-style: solid;
    border-color: #f39d60;
    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: #dadada;
    height: 0.8rem;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.progress-bar-dim {
    color: #dadada;
}
.live-bar-title {
    display: flex;
    flex-direction: row;
    font-size: 1.1rem;
}
.progress-bar-fill {
    background-color: #f2622e;
    height: 100%;
    border-radius: 3px;
}
.progress-bar-text {
    color: #f2622e;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}
.progress-bar-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.prize-draw-enter-now {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    margin-left: 15%;
    width: 70%;
    color: #f2622e;
    background-color: #ffffff;
    border-radius: 30px;
    border: none;
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
}
.timer-separator {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    align-self: flex-start;
    line-height: 22px;
    min-width: 15px;
}
.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timer-item-count {
    font-size: 2rem;
    font-weight: normal;
    color: #333;
    line-height: 1;
}
.timer-item-label {
    font-size: 0.9rem;
    color: #666;
}
.featured-categories-list {
    display: flex;
}

.category-card {
    border: 1px solid #e1e8ed;
}

/* Featured Section */
.featured-section {
    margin-bottom: 3rem;
}

.featured-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2d3436;
    text-align: center;
}

.featured-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-box {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.featured-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.featured-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.featured-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 600;
}

.featured-box p {
    color: #636e72;
    font-size: 0.95rem;
}

/* Prize Draw Boxes */
.featured-draws-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0.5rem;
    gap: 0.5rem;
    justify-content: left;
}
.prize-draw-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.prize-draw-box {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    width: 48%;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.prize-draw-box .live-bar-title {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
}

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

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

.nextdraw-container .timer-item-count, .nextdraw-container .timer-separator {
    font-size: 2rem;
    font-weight: bold;
}

.draw-timer .live-bar-title {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
}

/*.prize-draw-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}*/

.prize-draw-left {
    padding: 1.5rem;
    text-align: center;
    background: #ffffff;
}

.prize-draw-title {
    margin-bottom: 0.5rem;
    color: #2d3436;
    align-content: center;
    height:2rem;
    font-size:clamp(1rem, var(--scaled-font-size), 1.3rem);
}

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

.prize-draw-right {
    padding: 1.5rem;
    border-top: 1px solid #f1f3f4;
    background: #ffffff;
}

.prize-draw-description {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prize-draw-price {
    color: #000000;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0.5rem;
    margin-left: 0.2rem;
}

.draw-price {
    color: #000000;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
    padding-left: 0.5rem;
}

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

.draw-price-per-entry {
    font-weight: normal;
    color: #dadada;
}

.draw-enter-now {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    cursor: pointer;
    color: #282418;
    font-weight: bold;
    font-size: 2.2rem;
    margin: 0.5rem auto;
    padding: 0.2rem;
    background-color: #ffd976;
    display: block;
    border-radius: 20px;
    width: 95%;
    text-align: center;
}

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

}

.prize-draw-price-per-entry {
    font-size: 1rem;
    font-weight: normal;
}

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

.prize-draw-tickets {
    color: #636e72;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.prize-draw-buy-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.prize-draw-buy-btn:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
}
.prize-draw-sold-section {
    background-color: #ffecec;
    padding-top: 0.5rem;
    padding-bottom: 0.8rem;
}


/* Large Prize Draw Box */
.large-prize-draw-box {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    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, #f8f9fa 0%, #e9ecef 100%);
}

.large-prize-draw-title {
    color: #2d3436;
    font-size: 1.6rem;
    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: #636e72;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.large-prize-draw-price {
    color: #0066cc;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.large-prize-draw-tickets {
    color: #636e72;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.large-prize-draw-buy-btn {
    padding: 1.2rem 2rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.large-prize-draw-buy-btn:hover {
    background: #004499;
    transform: translateY(-2px);
}

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

.modal-box {
    background: #ffffff;
    color: #2d3436;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    min-width: 400px;
    max-width: 90vw;
    position: relative;
}

.modal-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3436;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #636e72;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0.5rem;
    border-radius: 50%;
}

.modal-close:hover {
    color: #2d3436;
    background: #f8f9fa;
}

.modal-form {
    gap: 0.5rem;
    margin-top: 0.5rem;
}

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

.modal-form button {
    color: #0a0a0a;
    background-color: #ffd976;
}

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

.modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
}
.login-form {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
}

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

.modal-input {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    background: #ffffff;
    color: #2d3436;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.modal-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.modal-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: #0066cc;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-button:hover {
    background: #004499;
    transform: translateY(-1px);
}

.modal-link {
    color: #0066cc;
    font-size: 0.95rem;
    text-align: center;
    transition: color 0.2s;
}

.modal-link:hover {
    color: #004499;
}

/* Checkbox Styling */
input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: #0066cc;
}

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

.checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #2d3436;
    cursor: pointer;
    user-select: none;
}

.checkbox-label a {
    color: #0066cc;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #004499;
}

/* My Account Page */
.my-account-page {
    max-width: 800px;
    margin: 0 auto;
    background-repeat: repeat;
    height: 100%;
}

.my-account-form {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    display: flex;
    flex-direction: column;
}

.my-account-links {
    display: flex;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 0.5rem;
    border-bottom: 1px solid black;
}

.my-account-links-link {
    flex-direction: row;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 1.4rem;
    margin: 0.6rem 0.5rem;
    cursor: pointer;
}

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

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3436;
    text-align: center;
}

.section-vip {
    display: flex;
    font-weight: normal;
    font-size: 2.5rem;
    background-color: rgba(255, 235, 127, 0.6);
    justify-content: left;
    gap: 0.5rem;
    padding-left: 0.5rem;
    font-variant: all-small-caps;
}

.section-vip-icon {
    border-radius: 50%;
    border: 14px solid rgba(0, 0, 0, 0.4);
    width: 7.5rem;
    height: auto;
    margin-top: -14px;
    margin-bottom: -14px;
}

.section-vip-name {
    font-family: "Manrope", sans-serif;
    font-weight: normal;
    font-size: 3.3rem;
}

.section-reveal {
    display: flex;
    background-color: #ffeb84;
    color: #f1622c;
    font-size: 1.2rem;
    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: #fffdd1;
    color: #f69049;
    font-size: 1.5rem;
    margin: auto;
    border-radius: 20px;
    padding: 0.2rem 1rem;
    align-items: center;
    cursor: pointer;
    text-align: center;
    width: 80%;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-weight: normal;
    margin-top: 1rem;
}

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

.viplevel-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.viplevel-header-text {
    display: flex;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    color: #f69049;
    font-size: 2rem;
    background-color: rgba(243, 235, 182, 0.9);
    text-align: center;
}
.viplevel-header-title {
    color: black;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-size: 2rem;

}
.viplevel-header-title-vip {
    display: flex;
    justify-content: center;
    margin-left: 0.5rem;
    padding-left: 0.1rem;
    margin-top: -1.5rem;
}
.viplevel-header-vip-level {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    font-variant: all-small-caps;
    font-size: 3rem;
}
.viplevel-header-image {
    border-radius: 50%;
    border: 14px solid rgba(0, 0, 0, 0.4);
    margin-top: -0.6rem;
    margin-bottom: -0.6rem;
    z-index: 10;
    margin-left: 1rem;
}

.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: 'Bricolage Grotesque Condensed', sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
}

.draw-seeall {
    background-color: #fae79a;
    padding: 0.5rem;
    text-align: center;
    border-radius: 16px;
    margin: 1rem 0.5rem;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
}

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

.account-section .viplevel-header-text {
    background-color: rgba(255, 249, 225, 0.9);
}

.account-section .viplevel-header-title-vip {
    margin: -0.6rem 0.5rem;
}

.account-section .viplevel-header-title {
    display: flex;
    flex-direction: column-reverse;
}

.section-content-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    color: #f69049;
    font-size: 2.5rem;
}

.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 {
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    color: #f69049;
    font-size: 1rem;
    font-weight: normal !important;
    border: none;
    border-collapse: collapse;
}

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

.section-content-table th {
    font-weight: normal;
    font-size: 1rem;
}

.section-content-table td {
    font-size: 1.3rem;
}

.section-content-table tr:nth-col(2) {
    text-align: left;
    width: 20%;
}

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

.section-content-table .col2 {
    width: 20%;
    color: #0a0a0a;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
}

.section-content-table .col3, .section-content-table .col4, .section-content-table .col5 {
    text-align: center;
    width: auto;
    border-right: #ff8963 1px solid;
}

.section-reveal-table-newbie {
    background-color: #e9fff2;
}

.section-reveal-table-super {
    background-color: #ffefef;
}

.section-reveal-table-gold {
    background-color: #ffe9c5;
}

.section-reveal-table-platinum {
    background-color: #f0f0f0;
}

.section-reveal-table-diamond {
    background-color: #ffffff;
}

.section-reveal-table-star {
    background-color: #fffdd1;
}

.section-content-footer {
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    color: #f69049;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

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

.my-account-menu-section ul {
    list-style: none;
    padding-left: 0;
}

.my-account-menu-section li {
    display: flex;
    align-items: center;
    background-color: rgb(255,255,255,0.8);
    border-radius: 16px;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.my-account-menu-section li::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-color: #ff9668;
    flex-shrink: 0;
}

.my-account-menu-section li a {
    color: black;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    font-size: 2rem;
    font-weight: normal;
    transition: all 0.2s ease;
    padding-left: 1rem;
    justify-content: center;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-label {
    font-weight: 600;
    color: #2d3436;
    min-width: 120px;
}

.info-value {
    color: #636e72;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    flex: 1;
    border: 1px solid #e1e8ed;
}

.password-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.change-password-btn {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.change-password-btn:hover {
    background: #004499;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3436;
    font-size: 0.95rem;
}

.form-input {
    background: #ffffff;
    color: #2d3436;
    border: 2px solid #e1e8ed;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

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

.submit-btn {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #004499;
}

/* Orders Page */
.orders-page {
    max-width: 1200px;
    margin: 0 auto;
}

.orders-summary {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
}

.orders-summary p {
    color: #2d3436;
    font-size: 1.1rem;
    font-weight: 500;
}

.no-orders {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e1e8ed;
}

.no-orders p {
    color: #2d3436;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.browse-link {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.browse-link:hover {
    background: #004499;
    transform: translateY(-1px);
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.order-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.order-card:hover {
    border-color: #0066cc;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

.order-id {
    font-weight: 700;
    color: #2d3436;
    font-size: 1.2rem;
}

.order-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-processing {
    background: #fff3cd;
    color: #856404;
}

.status-pending {
    background: #e2e3e5;
    color: #383d41;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-date {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.order-items-summary {
    margin-bottom: 1.5rem;
}

.order-item-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.order-item-summary:last-child {
    border-bottom: none;
}

.item-name {
    color: #2d3436;
    font-weight: 500;
    flex: 1;
}

.item-tickets {
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
    background: #e6f3ff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.order-total {
    color: #0066cc;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: right;
    padding-top: 1rem;
    border-top: 2px solid #f1f3f4;
}

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

.pagination-btn {
    background: #ffffff;
    color: #0066cc;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0066cc;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-1px);
}

.pagination-info {
    color: #2d3436;
    font-weight: 600;
    padding: 0 1rem;
}

/* Order Details Page */
.order-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #2d3436;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e1e8ed;
}

.order-header h1 {
    font-size: 2.5rem;
    color: #2d3436;
    font-weight: 700;
}

.order-items {
    margin-bottom: 3rem;
}

.order-items h2 {
    color: #2d3436;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

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

.order-item {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.order-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.item-details {
    margin-bottom: 2rem;
}

.item-name {
    color: #2d3436;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.item-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.item-tickets-count {
    background: #e6f3ff;
    color: #0066cc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.item-tickets {
    border-top: 1px solid #e1e8ed;
    padding-top: 2rem;
}

.item-tickets h4 {
    color: #636e72;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.ticket-card {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s;
}

.ticket-card:hover {
    background: #e6f3ff;
    border-color: #0066cc;
}

.ticket-number {
    font-weight: 700;
    color: #0066cc;
    font-size: 1.1rem;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e1e8ed;
}

.cart-header {
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 2px solid #f1f3f4;
    color: #2d3436;
    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;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

.cart-item-img {
    width: 40%;
    aspect-ratio: 1/1;
    object-fit: scale-down;
    border-radius: 12px;
    background: transparent;
    object-position: top;
}

.cart-item-details {
    flex: 1;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
}
.cart-item-title {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: #000000;
    font-size: 1.8rem;
    font-weight: bold;
}

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

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

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


.cart-footer {
    border-top: 2px solid #f1f3f4;
    padding: 0.25rem;
    margin-top: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.cart-total-row {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3436;
}

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

.cart-checkout-btn {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    background: #ffd976;
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-checkout-btn.disabled {
    background-color: #636e72;
    color: #ffffff;
    cursor: not-allowed;
}

.cart-total-row.swish-coin-discount {
    color: #ff8963;
}

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

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

.draw-main-section {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    background-color: #ffecec;
    display: flex;
    flex-direction: column;
}

.draw-images {
}

.main-image {
    width: 100%;
    object-fit: cover;
    border-radius: 2rem;
    padding: 1rem;
}

.draw-page-name {
    font-size: 1.5rem;
    color: #2d3436;
    text-align: center;
    font-weight: bold;
    margin: 0.5rem 0;
}
.buycard-name {
    color: #2d3436;
    text-align: center;
    font-weight: bold;
    margin: 0.5rem 0;
}
.draw-page-money {
    text-align: center;
    font-size: 1.3rem;
    padding-bottom: 1rem;
}
.draw-page-money-value {
    color: #ff8963;
}

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

.draw-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
}

.draw-info-live {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.7rem;
    color: #f2622d;
}
.draw-info-live .draw-timer .timer-item-count {
    font-size: 1.9rem;
    font-weight: bold;
}
.draw-info-live .draw-timer .timer-item-label {
    font-size: 0.9rem;
}
.draw-info-live .draw-timer .timer-separator {
    font-size: 1.9rem;
    padding: 0 0.5rem;
}

.draw-info-date {
    color: #000000;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.discounted-price {
    font-size: 1.2rem;
    color: #636e72;
    text-decoration: line-through;
}

.buy-btn {
    padding: 1.2rem 2rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

.instant-win {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    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: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.instant-desc {
    color: #2d3436;
    font-size: 1rem;
    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: 30px; /* Space for tooltip */
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    appearance: none;
    background: linear-gradient(to right, #f1622c var(--progress, 0%), #e1e8ed var(--progress, 0%));
    outline: none;
    cursor: pointer;
}

/* Slider track */
.slider::-webkit-slider-track {
    width: 100%;
    height: 8px;
    background: transparent;
    border-radius: 4px;
}

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

/* Progress fill for Firefox */
.slider::-moz-range-progress {
    height: 8px;
    background: #f1622c;
    border-radius: 4px;
}

/* Slider thumb (pug) - white inner with border */
.slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #f1622c;
    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: #ffffff;
    border: 4px solid #f1622c;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    background: radial-gradient(circle, #ffffff 40%, #f1622c 40%, #f1622c 70%, transparent 70%);
}

/* Min and max labels container */
.slider-min-max {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    width: 100%;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
}

/* Min and max labels */
.slider-min,
.slider-max {
    font-size: 1.4rem;
    color: #000000;
}

/* Tooltip above slider */
.slider-tooltip {
    position: absolute;
    top: -20px;
    left: 0;
    transform: translateX(-50%);
    background: #ff9668;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Tooltip arrow */
.slider-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #ff9668;
}

.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;
}


/* Animations */
@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), var(--cart-y)) 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 */
.button__badge {
    background-color: #dc3545;
    border-radius: 12px;
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    right: -7px;
}

/* Error Styles */
.outlined-input-container {
    display: flex;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 0.5rem 0.75rem 0.25rem 0.75rem;
    transition: border-color 0.2s;
    position: relative;
    background: #ffffff;
}

.outlined-input-container.error {
    border-color: #dc3545;
}

.outlined-input-label {
    background-color: #ffffff;
    color: #636e72;
    padding: 0 0.25rem;
    font-size: 0.9rem;
    transition: color 0.2s, transform 0.2s;
}

.outlined-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #2d3436;
    padding: 0.25rem 0;
    width: 100%;
}

.outlined-input:disabled {
    background: #f5f5f5;
    color: #636e72;
}

.outlined-input-error-message {
    color: #dc3545;
    font-size: 0.85rem;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    background-color: #ffffff;
    padding: 0 0.5rem;
    font-weight: 500;
}

/* Invalid Number Message for Phone Input */
.react-tel-input .invalid-number-message {
    position: absolute;
    z-index: 1;
    font-size: 0.85rem;
    left: 3rem;
    top: -0.5rem;
    background: #ffffff;
    padding: 0 0.5rem;
    color: #dc3545;
    font-weight: 500;
}

.react-tel-input .special-label {
    display: none;
    position: absolute;
    z-index: 1;
    font-size: 0.85rem;
    left: 3rem;
    top: -0.5rem;
    background: #ffffff;
    padding: 0 0.5rem;
    color: #636e72;
    white-space: nowrap;
}

/* Phone Input Styling */
.react-tel-input {
    font-family: inherit;
}

.react-tel-input .form-control {
    background: #ffffff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    color: #2d3436;
    font-size: 1rem;
    padding: 1rem 1rem 1rem 3rem;
    transition: all 0.2s ease;
}

.react-tel-input .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.react-tel-input .form-control.invalid-number {
    border: 2px solid #dc3545;
    background-color: #ffffff;
}

.react-tel-input .form-control.invalid-number:focus {
    border: 2px solid #dc3545;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.react-tel-input .flag-dropdown {
    background-color: #ffffff;
    border: 2px solid #e1e8ed;
    border-right: none;
    border-radius: 12px 0 0 12px;
}

.react-tel-input .selected-flag {
    background: #ffffff;
}

.react-tel-input .selected-flag:hover {
    background: #f8f9fa;
}

.react-tel-input .country-list {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    color: #2d3436;
}

.react-tel-input .country-list .country {
    color: #2d3436;
    background: #ffffff;
}

.react-tel-input .country-list .country:hover {
    background: #f8f9fa;
    color: #2d3436;
}

.react-tel-input .country-list .search {
    background: #ffffff;
    color: #2d3436;
}

.react-tel-input .country-list .search-box {
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background: #ffffff;
    color: #2d3436;
}

.react-tel-input .country-list .no-entries-message {
    color: #636e72;
    background: #ffffff;
}

@media (max-width: 768px) {
    .header-container {
    }

    .nav-left {
        display: none;
    }

    /* We need this z-index because we are using absolute positioning for the logo */
    .burger-menu {
        display: flex;
        z-index: 10;
    }

    .header-right {
        margin-left: auto;
        z-index: 10;
    }

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

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

    .featured-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prize-draw-list {
        grid-template-columns: 1fr;
    }

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

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

    .orders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

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

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

    .info-label {
        min-width: auto;
    }

    .info-value {
        width: 100%;
    }

    .cart-overlay {
        width: 100%;
        right: 0;
    }

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

    .tickets-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }

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

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

    .price {
        font-size: 1.5rem;
    }
}

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

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

    .account-bar-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

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

    .featured-title {
        font-size: 1.5rem;
    }
}

/* Info Dropdown */
.info-dropdown {
    width: 95%;
    align-self: center;
    margin: 0.5rem 0;
}

.info-dropdown-header {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    cursor: pointer;
    color: #000000;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.info-dropdown-header:hover {
    background-color: #fafafa;
}

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

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

.info-dropdown-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    color: #2d3436;
    line-height: 1.6;
}
/* Bottom Sheet */
.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;
}

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

.bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(90vh, 90dvh);
    background: #ffffff;
    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;
    /* iOS fixes */
    -webkit-transform: translateY(100%);
    will-change: transform;
}

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

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

.bottom-sheet-handle-bar {
    width: 40px;
    height: 4px;
    background: #e1e8ed;
    border-radius: 2px;
}

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

/* iOS-specific fixes for Safari interface behavior */
@supports (-webkit-touch-callout: none) {
    .bottom-sheet {
        height: min(95dvh, 95vh);
        max-height: 95dvh;
        -webkit-text-size-adjust: 100%;
        /* Ensure proper layering - appear behind Safari interface */
        z-index: 999;
    }

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

/* Panel Section Tabs */
.panel-section {
    display: flex;
    flex-direction: column;
}

.panel-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e1e8ed;
    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: "Bricolage Grotesque Condensed", sans-serif;
    font-style: normal;
    flex: 1;
    padding: 0.5rem;
    background: #f7f6f3;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1.2rem;
    color: #ababa8;
    transition: all 0.2s ease;
    position: relative;
    bottom: -2px;
}

.panel-tab:hover {
    color: #2d3436;
    background: #f8f9fa;
}

.panel-tab.selected {
    background: #ffeb66;
    color: #050502;
    border-bottom: 1px solid #000000;
}

.panel {
    padding: 0.5rem 0;
}

.skillgame-question-title {
    font-size: 1rem;
    font-weight: normal;
    color: #f38156;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
}

.skillgame-questions {
    background: #fffce9;
    border-radius: 12px;
    position: relative;
}

.skillgame-question-question {
    width: 100%;
    text-align: center;
    color: #b08b1b;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    font-size: 1.5rem;
}

.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: "Bricolage Grotesque Condensed", sans-serif;
    font-size: 1.5rem;
}

/* Radio button styling for skill game questions */
.skillgame-question-response input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e1e8ed; /* Grey when not selected */
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

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


.skillgame-question-response .outlined-input-container {
    border: none;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center; /* Vertically centers radio button with label */
    justify-content: flex-start; /* Aligns content to the left */
    text-align: left;
}

.skillgame-question-response .outlined-input-container .outlined-input-label{
    color: #b08b1b;
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    font-size: 1.6rem;
}

.draw-main-section-small {
    font-family: "Bricolage Grotesque Condensed", sans-serif;
    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.8rem;
    font-weight: bold;
}

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

.draw-buy-quantity {
    display: flex;
    flex-direction: column;
    width: 13%;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-size: 1.2rem;
}

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

.draw-buy-quantity-value input[type='text'] {
    text-align: center;
}

.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;
    display: block;
    padding: 0 0.6rem;
    font-size: 2.3rem;
    font-weight: bold;
    color: #ff9668;
    margin: 15px 0 15px 0;
    user-select: none;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    width: 2rem;
}

/* We need to disable the margins in the cart, they are only used in the buycard */
.cart-item-details .draw-buy-slider {
    margin-top: 0;
    margin-bottom: 0;
    gap: 0.2rem;
}
.cart-item-details .draw-buy-slider .slider-label-left, .cart-item-details .draw-buy-slider .slider-label-right {
    margin-top: 0;
    margin-bottom: 0;
}

.cart-item-details .draw-buy-slider .slider-count {
    font-size: 1.2rem;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    margin-left: 0.2rem;
    width: 3rem;
    border-radius: 0;
    margin-top: 0.5rem;
}

.cart-item-details .draw-buy-slider .slider-count .outlined-input-container {
    border-radius: 0;
}

.cart-item-response {
    display: flex;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-size: 1.2rem;
    column-gap: 0.5rem;
}

.cart-item-response-label {
    color: #f06925;
}

.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: 'Bricolage Grotesque Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    display: flex;
}

.draw-buy-total-value {
    text-align: right;
    margin-left: auto;
}

.draw-buy-section .large-prize-draw-buy-btn {
    background-color: #ffd976;
    color: #282418;
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-weight: bold;
    font-size: 2.2rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem auto;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 95%;
    align-self: center;
}

.draw-buy-section .large-prize-draw-buy-btn-disabled {
    font-family: 'Bricolage Grotesque Condensed', sans-serif;
    font-weight: bold;
    font-size: 2.2rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem auto;
    border-radius: 20px;
    border: none;
    transition: all 0.2s ease;
    width: 95%;
    align-self: center;
    background-color: #e1e8ed;
    color: #ababa8;
}

.tickets {
    width: 100%;
}

/* Simple Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 2px solid #34495e;
}

.footer p {
    margin: 10px 0;
    color: #bdc3c7;
    font-size: 0.9em;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #5dade2;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 25px 15px;
    }

    .footer-links a {
        display: block;
        margin: 8px 0;
    }
}