*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { overflow-x: hidden; max-width: 100vw; }
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 {
    --c1: #3A0F03; /* Deep Umber - Dark background */
    --c2: #5D2305; /* Burnt Sienna - Secondary dark */
    --c3: #9F4B18; /* Rust - Main accent */
    --c4: #D98D53; /* Terracotta - Secondary accent */
    --c5: #F5E8D2; /* Cream - Light background/text contrast */
    --c6: #FFFFFF; /* White for clear contrast */
    --c7: #000000; /* Black for very high contrast */
    --c8: #2A0A01; /* Even darker for some elements */
    --c9: #A00000; /* Error/Loss red */
    --c10: #1B5E20; /* Success/Win green */

    --f1: 'Cinzel', serif;
    --f2: 'Montserrat', sans-serif;

    --hh: 80px;
    --br1: 8px;
    --br2: 12px;
}

body {
    font-family: var(--f2);
    color: var(--c5);
    background-color: var(--c1);
    line-height: 1.6;
    padding-top: var(--hh);
}

/* Base styles for fade-in effect */
.fading-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fading-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.c1, .c2, .c3, .c4, .c5, .c6 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.h1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--c8);
    color: var(--c5);
    height: var(--hh);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.h1 .c1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l1 {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--c5);
    font-family: var(--f1);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.s1 {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    stroke: var(--c4);
}

.t1 {
    /* Text for logo */
}

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

.a1 {
    text-decoration: none;
    color: var(--c5);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

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

.a1:hover {
    color: var(--c4);
}

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

.b2 {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1001;
}

.s2 {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--c5);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.b2.is-active .s2:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.b2.is-active .s2:nth-child(2) {
    opacity: 0;
}
.b2.is-active .s2:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.n2 {
    display: none;
    position: fixed;
    top: var(--hh);
    left: 0;
    width: 100%;
    background-color: var(--c8);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 999;
    align-items: center;
    padding-bottom: 20px;
}

.n2.is-open {
    max-height: 100vh;
}

.a2 {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--c5);
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.a2:hover {
    background-color: var(--c2);
    color: var(--c4);
}

/* Hero Section */
.se1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('img/pic-9.jpg');
    background-size: cover;
    background-position: center;
}

.se1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(58, 15, 3, 0.7), rgba(58, 15, 3, 0.9));
}

.c2 {
    text-align: center;
    z-index: 10;
    padding: 40px;
    background-color: rgba(42, 10, 1, 0.85);
    border-radius: var(--br2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--c2);
}

.h2 {
    font-family: var(--f1);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--c4);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.p1 {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--c5);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.d1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.a3, .a4, .a5, .a6, .a7 {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--br1);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--f2);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    letter-spacing: 0.03em;
}

.a3 {
    background-color: var(--c3);
    color: var(--c6);
    border: 2px solid var(--c3);
}

.a3:hover {
    background-color: var(--c4);
    border-color: var(--c4);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.a4 {
    background-color: transparent;
    color: var(--c4);
    border: 2px solid var(--c4);
}

.a4:hover {
    background-color: var(--c4);
    color: var(--c1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Split 55/45 grid section (se2) */
.se2 {
    padding: 100px 0;
    background-color: var(--c2);
    border-bottom: 1px solid var(--c1);
    border-top: 1px solid var(--c1);
}

.c3 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.d2 {
    padding-right: 40px;
}

.h3 {
    font-family: var(--f1);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--c4);
    margin-bottom: 25px;
    line-height: 1.2;
}

.p2 {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: var(--c5);
    margin-bottom: 30px;
}

.d3 {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    border-radius: var(--br2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.i1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.d3:hover .i1 {
    transform: scale(1.05);
}

.a5 {
    background-color: var(--c3);
    color: var(--c6);
    border: 2px solid var(--c3);
}

.a5:hover {
    background-color: var(--c4);
    border-color: var(--c4);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Feature Grid Section (se3) */
.se3 {
    padding: 100px 0;
    background-color: var(--c1);
    text-align: center;
}

.h4 {
    font-family: var(--f1);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--c4);
    margin-bottom: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.d5 {
    background-color: var(--c2);
    border-radius: var(--br2);
    padding: 30px;
    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(--c3);
    overflow: hidden;
}

.d5:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.d6 {
    height: 200px;
    margin-bottom: 25px;
    border-radius: var(--br1);
    overflow: hidden;
    border: 1px solid var(--c4);
}

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

.d5:hover .i2 {
    transform: scale(1.08);
}

.h5 {
    font-family: var(--f1);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--c4);
    margin-bottom: 15px;
}

.p3 {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--c5);
}

/* Stats Section (se4) */
.se4 {
    padding: 100px 0;
    background-color: var(--c8);
    text-align: center;
    border-top: 1px solid var(--c2);
    border-bottom: 1px solid var(--c2);
}

.h6 {
    font-family: var(--f1);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--c4);
    margin-bottom: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.d7 {
    background-color: var(--c2);
    border-radius: var(--br2);
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--c3);
}

.s3 {
    font-family: var(--f1);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--c3);
    display: block;
    margin-bottom: 10px;
}

.p4 {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--c5);
}

/* Testimonials Section (se5) */
.se5 {
    padding: 100px 0;
    background-color: var(--c1);
    text-align: center;
}

.h7 {
    font-family: var(--f1);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--c4);
    margin-bottom: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.d8 {
    background-color: var(--c2);
    border-radius: var(--br2);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--c3);
    text-align: left;
    position: relative;
}

.d8::before {
    content: '"';
    font-family: var(--f1);
    font-size: 8rem;
    color: rgba(217, 141, 83, 0.2);
    position: absolute;
    top: -40px;
    left: 10px;
    z-index: 0;
    line-height: 1;
}

.p5 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--c5);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.s4 {
    display: block;
    font-weight: 600;
    color: var(--c4);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
}

/* FAQ Section (se6) */
.se6 {
    padding: 100px 0;
    background-color: var(--c8);
    border-top: 1px solid var(--c2);
    border-bottom: 1px solid var(--c2);
    text-align: center;
}

.h8 {
    font-family: var(--f1);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--c4);
    margin-bottom: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.d9 {
    max-width: 900px;
    margin: 0 auto;
}

.d10 {
    margin-bottom: 15px;
    border: 1px solid var(--c3);
    border-radius: var(--br1);
    overflow: hidden;
}

.b3 {
    width: 100%;
    background-color: var(--c2);
    color: var(--c5);
    padding: 20px 25px;
    border: none;
    text-align: left;
    font-family: var(--f2);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.b3:hover, .b3.is-active {
    background-color: var(--c3);
    color: var(--c6);
}

.s5 {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.b3.is-active .s5 {
    transform: rotate(45deg);
}

.d11 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: var(--c1);
    padding: 0 25px;
}

.d11 p {
    padding: 20px 0;
    color: var(--c5);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

/* Blog/Card Section (se7) */
.se7 {
    padding: 100px 0;
    background-color: var(--c1);
    text-align: center;
}

.h9 {
    font-family: var(--f1);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--c4);
    margin-bottom: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.d12 {
    background-color: var(--c2);
    border-radius: var(--br2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--c3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.d12:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.d13 {
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--c4);
}

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

.d12:hover .i3 {
    transform: scale(1.08);
}

.h10 {
    font-family: var(--f1);
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    color: var(--c4);
    margin: 25px 25px 15px 25px;
}

.p7 {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--c5);
    margin: 0 25px 20px 25px;
}

.a6 {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--c3);
    color: var(--c6);
    text-decoration: none;
    border-radius: var(--br1);
    font-weight: 600;
    margin: 0 25px 25px 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.a6:hover {
    background-color: var(--c4);
    transform: translateY(-2px);
}

/* CTA Banner (se8) */
.se8 {
    padding: 80px 0;
    background-image: url('img/pic-10.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    z-index: 0;
    border-top: 1px solid var(--c2);
    border-bottom: 1px solid var(--c2);
}

.se8::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 15, 3, 0.8);
    z-index: -1;
}

.d14 {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(42, 10, 1, 0.85);
    padding: 40px;
    border-radius: var(--br2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--c3);
}

.h11 {
    font-family: var(--f1);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--c4);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.p8 {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--c5);
    margin-bottom: 30px;
}

.a7 {
    background-color: var(--c3);
    color: var(--c6);
    border: 2px solid var(--c3);
}

.a7:hover {
    background-color: var(--c4);
    border-color: var(--c4);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Game Section (se9) */
.se9 {
    padding: 100px 0;
    background-color: var(--c1);
    text-align: center;
    border-top: 1px solid var(--c2);
}

.h12 {
    font-family: var(--f1);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--c4);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.p9 {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--c5);
    margin-bottom: 40px;
    font-style: italic;
}

.d15 {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--c2);
    border-radius: var(--br2);
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--c3);
}

.d16 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 30px;
    background-color: var(--c8);
    padding: 15px 25px;
    border-radius: var(--br1);
    border: 1px solid var(--c4);
}

.s6 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 600;
    color: var(--c5);
    margin-right: 10px;
}

.s7 {
    font-family: var(--f1);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--c3);
}

.d17 {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.l2 {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--c5);
    font-weight: 600;
}

.i4 {
    flex-grow: 1;
    padding: 12px 15px;
    border-radius: var(--br1);
    border: 1px solid var(--c4);
    background-color: var(--c1);
    color: var(--c5);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    text-align: center;
    -moz-appearance: textfield;
}

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

.b4, .b5 {
    padding: 12px 25px;
    border-radius: var(--br1);
    border: none;
    background-color: var(--c3);
    color: var(--c6);
    font-weight: 700;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.b4:hover:not(:disabled), .b5:hover:not(:disabled) {
    background-color: var(--c4);
    transform: translateY(-2px);
}

.b4:disabled, .b5:disabled {
    background-color: var(--c2);
    color: var(--c5);
    cursor: not-allowed;
    opacity: 0.7;
}

.d18 {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: var(--br1);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-weight: 600;
    color: var(--c5);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.d18.win-flash {
    background-color: var(--c10);
    color: var(--c6);
}

.d18.lose-flash {
    background-color: var(--c9);
    color: var(--c6);
}

.d19 {
    position: relative;
    border: 5px solid var(--c8);
    background-color: var(--c1);
    border-radius: var(--br2);
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.d20 {
    display: flex;
    gap: 10px;
}

.d21 {
    width: 100px;
    height: 120px;
    background-color: var(--c2);
    border: 3px solid var(--c4);
    border-radius: var(--br1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--c5);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.d21.win-flash {
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5), 0 0 20px var(--c10);
}

.d21.lose-flash {
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5), 0 0 20px var(--c9);
}

.d21::before, .d21::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(58, 15, 3, 0), var(--c1));
    opacity: 0.8;
}
.d21::after {
    bottom: 0;
    background: linear-gradient(to bottom, rgba(58, 15, 3, 0), var(--c1));
}

.s9 {
    font-size: 3rem;
    line-height: 1;
    color: var(--c5);
    display: block;
}

.d22 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: var(--br2);
}

.d23, .d24 {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 5px;
    background-color: var(--c3);
    transform: translateY(-50%);
    z-index: 5;
}

.d23 {
    left: -5px;
}

.d24 {
    right: -5px;
}


.p10 {
    font-size: 0.8rem;
    color: var(--c5);
    opacity: 0.7;
    margin-top: 40px;
    font-style: italic;
}

/* Footer (f1) */
.f1 {
    background-color: var(--c8);
    color: var(--c5);
    padding: 60px 0 20px 0;
    border-top: 1px solid var(--c2);
}

.f1 .c4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid var(--c2);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.d25 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.l3 {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--c5);
    font-family: var(--f1);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.s8 {
    width: 35px;
    height: 35px;
    margin-right: 12px;
    stroke: var(--c4);
}

.t2 {
    /* Text for footer logo */
}

.p11 {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--c4);
    font-style: italic;
}

.d26 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.h13 {
    font-family: var(--f1);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: var(--c4);
    margin-bottom: 15px;
    font-weight: 600;
}

.a8 {
    text-decoration: none;
    color: var(--c5);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    transition: color 0.3s ease;
}

.a8:hover {
    color: var(--c4);
}

.p12 {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--c5);
}

.a9 {
    color: var(--c4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.a9:hover {
    color: var(--c5);
}

.d27 {
    text-align: center;
}

.p13 {
    font-size: 0.85rem;
    color: var(--c5);
    opacity: 0.8;
}

/* Legal Page Specific Styles */
.m2 {
    background-color: var(--c1);
    color: var(--c5);
}

.se10 {
    padding: 80px 0 60px 0;
    background-color: var(--c2);
    color: var(--c5);
    text-align: center;
    border-bottom: 1px solid var(--c3);
}

.h14 {
    font-family: var(--f1);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--c4);
    margin-bottom: 20px;
}

.p14 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--c5);
    max-width: 800px;
    margin: 0 auto;
}

.se11, .se12, .se13 {
    padding: 80px 0;
    background-color: var(--c1);
    color: var(--c5);
}

.c6 {
    background-color: var(--c2);
    padding: 40px;
    border-radius: var(--br2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--c3);
}

.h15 {
    font-family: var(--f1);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--c4);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.h15::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--c3);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

.d28 {
    margin-bottom: 40px;
}

.h16 {
    font-family: var(--f1);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--c3);
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--c4);
    padding-bottom: 5px;
}

.p15 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--c5);
    margin-bottom: 15px;
}

.d29 {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--c4), transparent);
    margin: 40px 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .n1 {
        display: none;
    }

    .b2 {
        display: flex;
    }

    .n2 {
        display: flex;
    }

    .c3 {
        grid-template-columns: 1fr !important;
    }

    .d2 {
        padding-right: 0;
        text-align: center;
    }

    .d1 {
        flex-direction: column;
        gap: 15px;
    }

    .a3, .a4, .a5, .a6, .a7 {
        width: 100%;
        display: block;
        text-align: center;
    }

    .d3 {
        min-height: 320px;
    }

    .g1, .g2, .g3, .g4 {
        grid-template-columns: 1fr !important;
    }

    .d5, .d7, .d8, .d12 {
        padding: 25px;
    }

    .d10 {
        margin-bottom: 10px;
    }

    .b3 {
        padding: 15px 20px;
    }

    .d11 p {
        padding: 15px 0;
    }

    .f1 .c4 {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .d25, .d26 {
        align-items: center;
    }
    .d19 {
        flex-direction: column;
        gap: 20px;
    }
    .d20 {
        flex-direction: row;
        gap: 8px;
    }
    .d21 {
        width: 80px;
        height: 100px;
        font-size: 2.5rem;
    }
    .s9 {
        font-size: 2.5rem;
    }
}

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

    .c1, .c2, .c3, .c4, .c5, .c6 {
        padding: 0 16px;
    }

    .se1, .se2, .se3, .se4, .se5, .se6, .se7, .se8, .se9, .se10, .se11, .se12, .se13 {
        padding: 40px 16px;
    }

    .h2, .h3, .h4, .h6, .h7, .h8, .h9, .h11, .h12, .h14, .h15 {
        margin-bottom: 30px;
    }

    .h5, .h10, .h13, .h16 {
        margin-bottom: 10px;
    }

    .d16 {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }

    .d17 {
        flex-direction: column;
        gap: 10px;
    }
    .l2 {
        text-align: center;
        width: 100%;
    }
    .i4 {
        width: 100%;
    }
    .b4, .b5 {
        width: 100%;
        display: block;
    }
    .d21 {
        width: 70px;
        height: 90px;
        font-size: 2rem;
    }
    .s9 {
        font-size: 2rem;
    }
}
