*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { overflow-x: hidden; max-width: 100vw; font-family: var(--font-body); color: var(--clr-text-light); background-color: var(--clr-background); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, a, span, li { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }

:root {
    --clr-primary: #1A1A1A;
    --clr-secondary: #333333;
    --clr-accent: #E0B500; /* Gold */
    --clr-background: #0D0D0D;
    --clr-text-light: #F0F0F0;
    --clr-text-dark: #1A1A1A;
    --clr-border: #444444;
    --clr-success: #28a745;
    --clr-error: #dc3545;
    --clr-push: #ffc107;

    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'Montserrat', sans-serif;

    --hh: 80px; /* header height */
    --br-sm: 4px;
    --br-md: 8px;
    --br-lg: 12px;
    --container-max-width: 1200px;
}

.w6rf {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--clr-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    height: var(--hh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p9zx {
    max-width: var(--container-max-width);
    width: 100%;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.k7sd {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--clr-text-light);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 1px;
}

.b3fg {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.k7sd:hover .b3fg {
    transform: rotate(10deg) scale(1.05);
}

.j2op {
    white-space: nowrap;
}

.c8gf {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.m0lk {
    width: 100%;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
    transition: all 0.3s ease;
}

.e1fg {
    display: flex;
    gap: 30px;
}

.h4rt {
    color: var(--clr-text-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.h4rt::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}

.h4rt:hover {
    color: var(--clr-accent);
}

.h4rt:hover::after {
    width: 100%;
}

.z3yu {
    padding-top: var(--hh);
}

/* Hero Section (Option B) */
.g1hj {
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: center;
    min-height: calc(100vh - var(--hh));
    background-color: var(--clr-primary);
    padding: 0;
    color: var(--clr-text-light);
}

.d2vb {
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.f7gh {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--clr-accent);
    text-shadow: 0 0 15px rgba(224, 181, 0, 0.4);
}

.l1mn {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.9;
}

.r4ty {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.o8we {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--clr-accent);
    color: var(--clr-text-dark);
    text-decoration: none;
    border-radius: var(--br-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: 2px solid var(--clr-accent);
    white-space: nowrap;
}

.o8we:hover {
    background-color: darken(var(--clr-accent), 10%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(224, 181, 0, 0.4);
}

.d7bn {
    background-color: transparent;
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
}

.d7bn:hover {
    background-color: var(--clr-accent);
    color: var(--clr-text-dark);
    box-shadow: 0 8px 15px rgba(224, 181, 0, 0.4);
}

.a3sc {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q2pl {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.i0mn {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Common Section Styles */
.q9ed {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.q9ed.visible {
    opacity: 1;
    transform: translateY(0);
}

.j1lk {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.j1lk::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
}

/* Features Section */
.x7cv {
    background-color: var(--clr-background);
}

.v4ui {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.c5tr {
    background-color: var(--clr-secondary);
    border-radius: var(--br-lg);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--clr-border);
}

.c5tr:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--clr-accent);
}

.e2ws {
    height: 200px; /* Fixed height for image container */
    margin-bottom: 20px;
    border-radius: var(--br-md);
    overflow: hidden;
}

.a1re {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.c5tr:hover .a1re {
    transform: scale(1.05);
}

.p3op {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--clr-accent);
    margin-bottom: 15px;
}

.g8fd {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--clr-text-light);
    opacity: 0.8;
}

/* Stats Section */
.m2bn {
    background-color: var(--clr-primary);
    text-align: center;
}

.r5ts {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.r5ts::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
}

.x1za {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.w0po {
    background-color: var(--clr-secondary);
    border-radius: var(--br-lg);
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--clr-border);
}

.w0po:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--clr-accent);
}

.t6ui {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--clr-accent);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(224, 181, 0, 0.5);
}

.h3jk {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--clr-text-light);
    opacity: 0.8;
}

/* Testimonials Section */
.y8nm {
    background-color: var(--clr-background);
}

.k0ld {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.k0ld::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
}

.o1pe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.j5qw {
    background-color: var(--clr-secondary);
    border-radius: var(--br-lg);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--clr-border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.j5qw::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--clr-accent);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    line-height: 1;
}

.j5qw:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 18px var(--clr-accent);
}

.c7rt {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clr-text-light);
    margin-bottom: 20px;
    font-style: italic;
    padding-top: 20px;
}

.f9ds {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-accent);
    font-weight: 600;
}

/* FAQ Section */
.v3sf {
    background-color: var(--clr-primary);
}

.q1we {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.q1we::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
}

.p0hg {
    max-width: 800px;
    margin: 0 auto;
}

.z2xc {
    margin-bottom: 15px;
    border: 1px solid var(--clr-border);
    border-radius: var(--br-md);
    overflow: hidden;
    background-color: var(--clr-secondary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.y1uj {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background-color: var(--clr-secondary);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.y1uj:hover {
    background-color: var(--clr-border);
    color: var(--clr-accent);
}

.y1uj::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.z2xc.is-open .y1uj::after {
    transform: rotate(45deg);
}

.w4re {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #222;
}

.w4re p {
    padding: 20px 25px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    opacity: 0.8;
}

/* Blog Section */
.g5tf {
    background-color: var(--clr-background);
}

.e7ws {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.e7ws::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
}

.b0xc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.m3nv {
    background-color: var(--clr-secondary);
    border-radius: var(--br-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--clr-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m3nv:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--clr-accent);
}

.r1tg {
    height: 250px;
    overflow: hidden;
}

.y6ui {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.m3nv:hover .y6ui {
    transform: scale(1.05);
}

.p8jk {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--clr-accent);
    padding: 20px;
    margin-bottom: 5px;
}

.d5op {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text-light);
    padding: 0 20px 20px;
    line-height: 1.7;
    opacity: 0.8;
}

.f8jl {
    margin: 0 20px 20px;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* CTA Banner */
.z9xw {
    background-color: var(--clr-primary);
    padding: 0;
}

.s1cv {
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--br-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 300px; /* Ensure visibility */
}

.w3er {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.x2ty {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.d4gh {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px;
    color: var(--clr-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}

.k7mn {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: var(--clr-accent);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(224, 181, 0, 0.5);
}

.l2qa {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.m1nb {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Game Section */
.c1mn {
    background-color: var(--clr-secondary);
    text-align: center;
    padding-bottom: 80px;
}

.e4fd {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.p6jk {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--clr-accent);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(224, 181, 0, 0.4);
}

.h2zx {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text-light);
    opacity: 0.7;
    margin-bottom: 30px;
    text-align: center;
}

.w0rt {
    background-color: var(--clr-primary);
    border: 2px solid var(--clr-accent);
    border-radius: var(--br-lg);
    padding: 15px 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text-light);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.z8xc {
    color: var(--clr-text-light);
    margin-right: 10px;
}

.q4we {
    color: var(--clr-accent);
}

.u2lk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.f7yu {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--clr-text-light);
    font-weight: 600;
}

.j9ui {
    padding: 10px 15px;
    border: 2px solid var(--clr-border);
    border-radius: var(--br-md);
    background-color: var(--clr-primary);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 120px;
    text-align: center;
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield;
}

.j9ui::-webkit-outer-spin-button,
.j9ui::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.j9ui:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 8px rgba(224, 181, 0, 0.6);
}

.l3df {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
}

.r6tg {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 20px;
    height: 30px; /* Placeholder height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.r6tg.win {
    color: var(--clr-success);
    background-color: rgba(40, 167, 69, 0.2);
    border-radius: var(--br-md);
    padding: 5px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.r6tg.loss {
    color: var(--clr-error);
    background-color: rgba(220, 53, 69, 0.2);
    border-radius: var(--br-md);
    padding: 5px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.t0re {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    background-color: var(--clr-primary);
    padding: 30px;
    border-radius: var(--br-lg);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--clr-border);
}

.f2gh {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: var(--br-md);
    border: 1px solid var(--clr-border);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.g3jk, .s2bn {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--clr-accent);
    margin-bottom: 20px;
    text-align: center;
}

.h7ui {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.p0lk {
    padding: 12px 15px;
    border: 2px solid var(--clr-border);
    border-radius: var(--br-md);
    background-color: var(--clr-secondary);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.p0lk:hover {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-text-dark);
    transform: translateY(-2px);
}

.p0lk.is-selected {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-text-dark);
    box-shadow: 0 0 10px rgba(224, 181, 0, 0.7);
}

.k8jh {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for numbers */
    gap: 5px;
    margin-bottom: 25px;
    background-color: var(--clr-primary);
    padding: 10px;
    border-radius: var(--br-md);
    border: 1px solid var(--clr-border);
    box-shadow: inset 0 0 8px rgba(0,0,0,0.5);
}

.m4nc {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circular cells */
    background-color: #2a2a2a;
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    margin: auto; /* Center individual cells */
}

.m4nc:hover:not(.is-disabled) {
    background-color: var(--clr-border);
    border-color: var(--clr-accent);
    transform: scale(1.05);
}

.m4nc.is-selected:not(.is-disabled) {
    border-color: var(--clr-accent);
    box-shadow: 0 0 10px rgba(224, 181, 0, 0.7), inset 0 0 5px rgba(224, 181, 0, 0.7);
    background-color: #4a4a4a;
}

.m4nc.is-green {
    background-color: #28a745; /* Green for 0 */
    color: white;
}
.m4nc.is-red {
    background-color: #dc3545; /* Red numbers */
    color: white;
}
.m4nc.is-black {
    background-color: #333333; /* Black numbers */
    color: white;
}
.m4nc.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#spin-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.y4ty {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: var(--br-md);
    border: 1px solid var(--clr-border);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.g0hj {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--clr-primary);
    border: 5px solid var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(224, 181, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.h1jk {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-text-light);
    transition: color 0.3s ease;
    z-index: 2;
    position: relative;
}

.h1jk.is-green {
    color: #28a745;
}
.h1jk.is-red {
    color: #dc3545;
}
.h1jk.is-black {
    color: #333333;
}

#game-message {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-top: 20px;
    min-height: 20px;
}

#game-message.win {
    color: var(--clr-success);
    font-weight: 700;
}

#game-message.loss {
    color: var(--clr-error);
    font-weight: 700;
}

#refill-button {
    margin-top: 20px;
    font-size: 1rem;
    padding: 10px 20px;
}

.g4hn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--clr-text-light);
    opacity: 0.6;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

/* Footer */
.s8we {
    background-color: var(--clr-primary);
    color: var(--clr-text-light);
    padding: 60px 20px 20px;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.q1we {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.p2oi .k7sd {
    margin-bottom: 15px;
}

.p2oi .l1mn {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.t5ui {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
    position: relative;
}

.t5ui::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
}

.r3nm a, .u6lk a, .v7re p, .v7re a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--clr-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.r3nm a:hover, .u6lk a:hover, .v7re a:hover {
    color: var(--clr-accent);
    opacity: 1;
}

.z9xc {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
    text-align: center;
}

.m1lk {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--clr-text-light);
    opacity: 0.7;
}

/* Legal Page Specific Styles */
.p9qw {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background-color: var(--clr-primary);
    text-align: center;
    padding: 60px 20px;
}

.r2ty {
    max-width: 800px;
}

.p9qw .f7gh {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--clr-accent);
    text-shadow: 0 0 15px rgba(224, 181, 0, 0.4);
}

.p9qw .l1mn {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0;
    opacity: 0.9;
}

.e0xp {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-color: var(--clr-background);
    color: var(--clr-text-light);
}

.e0xp.visible {
    opacity: 1;
    transform: translateY(0);
}

.e0xp:nth-of-type(odd) {
    background-color: var(--clr-primary);
}

.e0xp .j1lk {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.e0xp .j1lk::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--clr-accent);
    border-radius: var(--br-sm);
}

.u1cv {
    margin-bottom: 40px;
}

.u1cv .p3op {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--clr-accent);
    margin-bottom: 15px;
    text-align: left;
}

.u1cv .g8fd {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-text-light);
    margin-bottom: 15px;
    opacity: 0.9;
    text-align: left;
}

.l0mn {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--clr-border), transparent);
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .c8gf {
        display: flex;
    }

    .e1fg {
        display: none;
        position: fixed;
        top: var(--hh);
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--clr-primary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        z-index: 999;
        border-top: 1px solid var(--clr-border);
        padding-bottom: 20px; /* Add some padding for better look */
    }

    .e1fg.is-open {
        max-height: 100vh; /* Adjust as needed */
    }

    .e1fg .h4rt {
        padding: 15px 30px;
        border-bottom: 1px solid var(--clr-border);
        text-align: center;
        font-size: 1.1rem;
    }

    .e1fg .h4rt:last-child {
        border-bottom: none;
    }

    .g1hj {
        grid-template-columns: 1fr !important;
        min-height: auto;
    }

    .d2vb {
        padding: 40px 20px;
        order: 2; /* Content below image on mobile */
    }

    .a3sc {
        min-height: 320px;
        order: 1;
    }

    .q9ed {
        padding: 60px 20px;
    }

    .v4ui, .x1za, .o1pe, .b0xc, .q1we, .t0re {
        grid-template-columns: 1fr !important;
    }

    .r4ty {
        justify-content: center;
    }

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

    .j1lk, .r5ts, .k0ld, .q1we, .e7ws {
        margin-bottom: 40px;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .p3op {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }

    .g8fd {
        hyphens: auto;
    }

    .c5tr, .w0po, .j5qw, .m3nv {
        margin-bottom: 20px;
    }

    .s1cv {
        border-radius: 0;
        box-shadow: none;
    }

    .d4gh {
        padding: 60px 20px;
    }

    .k7mn {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .l2qa {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .q1we {
        text-align: center;
    }

    .t5ui {
        text-align: center;
        margin-top: 30px;
    }

    .t5ui::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .p2oi .k7sd {
        justify-content: center;
    }

    .e0xp {
        padding: 60px 20px;
    }

    .u1cv .p3op {
        text-align: center;
    }

    .u1cv .g8fd {
        text-align: justify;
        hyphens: auto;
    }

    .h7ui {
        grid-template-columns: 1fr;
    }

    .k8jh {
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    }
    .m4nc {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .q9ed {
        padding: 40px 16px;
    }

    .d2vb {
        padding: 30px 16px;
    }

    .o8we {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .f7gh {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .l1mn {
        font-size: 0.9rem;
    }

    .j1lk, .r5ts, .k0ld, .q1we, .e7ws {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }

    .p3op {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }

    .d4gh {
        padding: 40px 16px;
    }

    .k7mn {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .m1nb {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .u2lk {
        flex-direction: column;
    }

    .j9ui {
        width: 100%;
        max-width: 150px;
    }

    .l3df {
        width: 100%;
        max-width: 200px;
    }

    .t0re {
        gap: 20px;
        padding: 20px;
    }

    .m4nc {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }

    .s8we {
        padding: 40px 16px 16px;
    }

    .q1we {
        gap: 20px;
        margin-bottom: 30px;
    }

    .e0xp {
        padding: 40px 16px;
    }

    .u1cv .p3op {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    .u1cv .g8fd {
        font-size: 0.9rem;
    }
}
