/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link:hover::after {
    transform: translateX(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

/* CTA Button */
.nav-button {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4a, #ffd700);
}

.nav-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.nav-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: 400px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.mobile-nav-button {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: block;
    text-align: center;
    margin-top: 10px;
}

.mobile-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4a, #ffd700);
}

/* Body padding to account for fixed header */
body {
    padding-top: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 32px;
    }

    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .mobile-nav-menu {
        padding: 15px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }

    .mobile-nav-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active .mobile-nav-item {
    animation: fadeInDown 0.3s ease forwards;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }
/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    color: #e0e0e0;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta-text {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.section-image {
    margin-top: 3rem;
    text-align: center;
}

.section-image img {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffed4a;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
    padding: 100px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

/* Login Section */
.login-section {
    background: rgba(20, 20, 20, 0.5);
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.step-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.login-features, .features-title {
    margin-top: 3rem;
}

.features-title, .subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.features-list, .win-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.features-list li, .win-features-list li {
    padding: 15px 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

/* Trust Section */
.trust-section {
    background: rgba(15, 15, 15, 0.8);
}

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

.trust-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.trust-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.testimonials {
    margin: 4rem 0;
}

.testimonials-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffd700;
}

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

.testimonial {
    background: rgba(30, 30, 30, 0.6);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    font-style: italic;
    color: #d0d0d0;
}

.trust-evidence {
    margin-top: 3rem;
}

.evidence-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.evidence-list {
    padding-left: 20px;
}

.evidence-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Lottery Demo Section */
.lottery-demo {
    background: linear-gradient(135deg, rgba(40, 20, 60, 0.6), rgba(20, 10, 30, 0.8));
    padding: 80px 0;
}

.lottery-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 3rem 0;
}

.lottery-board, .lottery-result {
    background: rgba(30, 30, 30, 0.9);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.lottery-board-title, .result-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffd700;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}

.number-btn {
    aspect-ratio: 1;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(50, 50, 50, 0.8);
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.number-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: scale(1.05);
}

.number-btn.selected {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border-color: #ffd700;
}

.selected-numbers {
    text-align: center;
    margin: 2rem 0;
}

.selected-label {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.selected-display {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 1rem;
}

.lottery-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-reset, .btn-random, .btn-check {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset {
    background: rgba(255, 100, 100, 0.8);
    color: #ffffff;
}

.btn-reset:hover {
    background: rgba(255, 100, 100, 1);
}

.btn-random {
    background: rgba(100, 150, 255, 0.8);
    color: #ffffff;
}

.btn-random:hover {
    background: rgba(100, 150, 255, 1);
}

.btn-check {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
}

.btn-check:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.winning-numbers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

.winning-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.result-message {
    text-align: center;
    padding: 20px;
    font-size: 1.125rem;
    color: #d0d0d0;
}

.result-message.win {
    color: #4caf50;
    font-weight: 700;
}

.result-message.lose {
    color: #ff6b6b;
}

.demo-notice {
    text-align: center;
    font-style: italic;
    color: #a0a0a0;
    margin-top: 2rem;
}

/* Lottery Section */
.lottery-section {
    background: rgba(20, 20, 20, 0.5);
}

.lottery-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 3rem 0;
}

.lottery-type-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.lottery-type-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.lottery-type-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.lottery-features {
    margin: 4rem 0;
}

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

.feature-item {
    background: rgba(30, 30, 30, 0.8);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffd700;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.lottery-tips {
    margin: 3rem 0;
}

.tips-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.tips-list {
    padding-left: 20px;
}

.tips-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Casino Section */
.casino-section {
    background: rgba(15, 15, 15, 0.8);
}

.casino-games, .slots-providers, .sports-games {
    margin: 3rem 0;
}

.game-card, .sport-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
}

.game-title, .sport-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.game-description, .sport-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.provider-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.provider-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.provider-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Payment Section */
.payment-section {
    background: rgba(20, 20, 20, 0.5);
}

.payment-methods, .withdrawal-info {
    margin: 3rem 0;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.method-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.method-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.method-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.method-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.withdrawal-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 2rem;
}

.withdrawal-feature {
    background: rgba(30, 30, 30, 0.8);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.withdrawal-times {
    list-style: none;
    padding-left: 0;
}

.withdrawal-times li {
    padding: 10px 15px;
    background: rgba(40, 40, 40, 0.6);
    border-radius: 8px;
    margin-bottom: 10px;
}

.payment-security, .payment-features-list {
    margin: 3rem 0;
}

.numbered-features {
    padding-left: 20px;
}

.numbered-features li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, rgba(40, 20, 60, 0.6), rgba(20, 10, 30, 0.8));
    padding: 100px 0;
}

.register-steps {
    margin: 3rem 0;
}

.steps-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.simple-steps {
    padding-left: 20px;
}

.simple-steps li {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.125rem;
    color: #d0d0d0;
}

.contact-info {
    margin: 3rem 0;
    text-align: center;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.final-message {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: #d0d0d0;
}

.brand-statement {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0;
    color: #ffd700;
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.disclaimer-text {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .lottery-game {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .login-steps {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .number-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

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

    .hero-title {
        font-size: 1.625rem;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .number-btn {
        font-size: 1.25rem;
    }

    .selected-display {
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
    }

    .winning-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* Footer Styles */
.site-footer {
    background: rgba(20, 20, 20, 0.95);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding: 30px 0;
    margin-bottom: 80px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

.footer-link:hover::after {
    width: 100%;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-buttons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.03));
    pointer-events: none;
}

.sticky-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
}

.sticky-btn {
    flex: 1;
    max-width: 400px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.sticky-btn:hover::before {
    width: 300px;
    height: 300px;
}

.sticky-btn-login {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.sticky-btn-login:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border: 2px solid transparent;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #ffed4a, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #ffffff;
    border: 2px solid transparent;
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 25px 0;
        margin-bottom: 70px;
    }

    .footer-nav {
        gap: 25px;
        flex-direction: column;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

/* Responsive Sticky Buttons */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 10px 15px;
        gap: 8px;
    }

    .sticky-btn {
        font-size: 0.875rem;
        padding: 12px 15px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        margin-bottom: 65px;
    }

    .sticky-buttons {
        padding: 8px 10px;
        gap: 6px;
    }

    .sticky-btn {
        font-size: 0.75rem;
        padding: 10px 8px;
        border-radius: 8px;
        font-weight: 600;
    }
}

/* Promotion Page Styles */
.promo-hero {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
    padding: 80px 0;
}

.promo-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-hero-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.promo-hero-actions {
    margin: 2rem 0;
}

.promo-hero-note {
    font-size: 1rem;
    color: #d0d0d0;
    margin-top: 1rem;
}

.promo-new-member, .promo-lottery, .promo-casino, .promo-slots, .promo-sports,
.promo-deposit, .promo-vip, .promo-referral, .promo-cashback-daily,
.promo-daily-special, .promo-birthday, .promo-festival, .promo-how-to,
.promo-terms, .promo-faq, .promo-contact, .promo-summary {
    padding: 80px 0;
}

.promo-new-member {
    background: rgba(20, 20, 20, 0.5);
}

.promo-lottery {
    background: rgba(15, 15, 15, 0.8);
}

.promo-casino {
    background: rgba(20, 20, 20, 0.5);
}

.promo-slots {
    background: rgba(15, 15, 15, 0.8);
}

.promo-sports {
    background: rgba(20, 20, 20, 0.5);
}

.promo-deposit {
    background: rgba(15, 15, 15, 0.8);
}

.promo-vip {
    background: rgba(20, 20, 20, 0.5);
}

.promo-referral {
    background: rgba(15, 15, 15, 0.8);
}

.promo-cashback-daily {
    background: rgba(20, 20, 20, 0.5);
}

.promo-daily-special {
    background: rgba(15, 15, 15, 0.8);
}

.promo-birthday {
    background: rgba(20, 20, 20, 0.5);
}

.promo-festival {
    background: rgba(15, 15, 15, 0.8);
}

.promo-how-to {
    background: rgba(20, 20, 20, 0.5);
}

.promo-terms {
    background: rgba(15, 15, 15, 0.8);
}

.promo-faq {
    background: rgba(20, 20, 20, 0.5);
}

.promo-contact {
    background: rgba(15, 15, 15, 0.8);
}

.promo-summary {
    background: linear-gradient(135deg, rgba(40, 20, 60, 0.6), rgba(20, 10, 30, 0.8));
}

.promo-disclaimer {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.disclaimer-text {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.promo-details, .lottery-promo-types, .lottery-cashback, .casino-promo-grid,
.fishing-promo, .slots-promo-content, .slots-providers, .sports-promo-section,
.deposit-promo-grid, .vip-levels, .referral-details, .cashback-types,
.daily-promo-schedule, .birthday-promo-content, .festival-promos,
.how-to-steps, .promo-tips, .terms-sections, .terms-games, .terms-note,
.faq-content, .contact-channels, .contact-services, .summary-highlights,
.summary-reasons {
    margin: 3rem 0;
}

.promo-list, .lottery-features, .casino-features, .slots-features,
.sports-features, .deposit-features, .vip-benefits, .referral-features,
.cashback-features, .daily-promo-features, .birthday-benefits,
.festival-features, .fishing-features, .providers-list, .cashback-list,
.terms-list, .turnover-games, .note-list, .contact-list, .services-list,
.highlights-list, .reasons-list, .tips-list, .faq-list {
    list-style: none;
    padding: 0;
}

.promo-list li, .lottery-features li, .casino-features li, .slots-features li,
.sports-features li, .deposit-features li, .vip-benefits li, .referral-features li,
.cashback-features li, .daily-promo-features li, .birthday-benefits li,
.festival-features li, .fishing-features li, .providers-list li, .cashback-list li,
.terms-list li, .turnover-games li, .note-list li, .contact-list li,
.services-list li, .highlights-list li, .reasons-list li, .tips-list li {
    padding: 10px 0;
    line-height: 1.7;
    color: #d0d0d0;
}

.promo-cta {
    text-align: center;
    margin: 2rem 0;
}

.promo-cta-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: #d0d0d0;
}

.promo-steps {
    margin-top: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.step-item {
    background: rgba(30, 30, 30, 0.6);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.step-text {
    font-size: 0.95rem;
    color: #d0d0d0;
}

.promo-note {
    margin-top: 1.5rem;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid #ffd700;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.lottery-card, .casino-promo-card, .slots-card, .sports-promo-item,
.deposit-card, .vip-tier-card, .referral-benefit-card, .cashback-type-card,
.daily-promo-card, .birthday-tier-card, .festival-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
}

.lottery-card-title, .casino-card-title, .slots-card-title, .sports-item-title,
.deposit-card-title, .vip-tier-title, .referral-benefit-title,
.cashback-type-title, .daily-promo-title, .birthday-tier-title,
.festival-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.casino-cta {
    margin-top: 1.5rem;
}

.casino-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.casino-extra {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.95rem;
    color: #d0d0d0;
}

.casino-link {
    color: #ffd700;
    text-decoration: underline;
}

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

.sports-promo-list, .deposit-withdraw-section, .vip-tiers,
.referral-benefits-grid, .cashback-grid, .daily-schedule,
.birthday-tiers, .festival-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-to-step {
    background: rgba(30, 30, 30, 0.8);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid #ffd700;
}

.how-to-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.how-to-list {
    padding-left: 20px;
    margin: 1rem 0;
}

.how-to-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #d0d0d0;
}

.how-to-cta {
    margin-top: 1.5rem;
}

.how-to-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.terms-section {
    background: rgba(30, 30, 30, 0.6);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
}

.terms-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.games-turnover {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.turnover-category {
    background: rgba(30, 30, 30, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.turnover-category-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.faq-item {
    background: rgba(30, 30, 30, 0.6);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

.faq-list {
    list-style: disc;
    padding-left: 20px;
}

.faq-list li {
    margin-bottom: 8px;
}

.summary-final {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-top: 2rem;
    color: #e0e0e0;
}

@media (max-width: 1024px) {
    .promo-hero-title {
        font-size: 2rem;
    }

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

    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .promo-hero, .promo-new-member, .promo-lottery, .promo-casino, .promo-slots,
    .promo-sports, .promo-deposit, .promo-vip, .promo-referral,
    .promo-cashback-daily, .promo-daily-special, .promo-birthday,
    .promo-festival, .promo-how-to, .promo-terms, .promo-faq,
    .promo-contact, .promo-summary {
        padding: 60px 0;
    }

    .promo-hero-title {
        font-size: 1.75rem;
    }

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

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

    .games-turnover {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .promo-hero, .promo-new-member, .promo-lottery, .promo-casino, .promo-slots,
    .promo-sports, .promo-deposit, .promo-vip, .promo-referral,
    .promo-cashback-daily, .promo-daily-special, .promo-birthday,
    .promo-festival, .promo-how-to, .promo-terms, .promo-faq,
    .promo-contact, .promo-summary {
        padding: 50px 0;
    }

    .promo-hero-title {
        font-size: 1.5rem;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-heading {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.875rem;
    }
}

/* Login Page Styles */
.login-page-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
}

.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.login-form {
    width: 100%;
    background: rgba(30, 30, 30, 0.8);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    background: rgba(50, 50, 50, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(50, 50, 50, 0.95);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
    color: #a0a0a0;
}

.btn-login {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    margin-top: 10px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4a, #ffd700);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-register {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffd700;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.btn-register:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffed4a;
    transform: translateY(-2px);
}

/* Responsive Login Page */
@media (max-width: 768px) {
    .login-page-section {
        padding: 60px 20px;
        min-height: calc(100vh - 120px);
    }

    .login-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .login-form {
        padding: 30px 25px;
    }

    .btn-login,
    .btn-register {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-page-section {
        padding: 50px 15px;
        min-height: calc(100vh - 125px);
    }

    .login-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .login-form {
        padding: 25px 20px;
        gap: 20px;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .btn-login,
    .btn-register {
        padding: 13px 18px;
        font-size: 0.95rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
}

.privacy-policy-content {
    max-width: 1280px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.6);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.privacy-policy-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.privacy-policy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.4;
}

.privacy-policy-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #ffed4a;
    line-height: 1.4;
}

.privacy-policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-policy-content ul li,
.privacy-policy-content ol li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #d0d0d0;
}

.privacy-policy-content hr {
    border: none;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin: 2.5rem 0;
}

.privacy-policy-content strong {
    color: #ffd700;
    font-weight: 700;
}

.privacy-policy-content a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
    color: #ffed4a;
}

/* Responsive Privacy Policy */
@media (max-width: 1024px) {
    .privacy-policy-content {
        padding: 50px;
    }

    .privacy-policy-content h1 {
        font-size: 2rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-content h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 60px 0;
    }

    .privacy-policy-content {
        padding: 40px 30px;
    }

    .privacy-policy-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.375rem;
        margin-top: 2rem;
        margin-bottom: 1.25rem;
    }

    .privacy-policy-content h3 {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .privacy-policy-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        padding-left: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .privacy-policy-content ul li,
    .privacy-policy-content ol li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .privacy-policy-content hr {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 50px 0;
    }

    .privacy-policy-content {
        padding: 30px 20px;
    }

    .privacy-policy-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.25rem;
        margin-top: 1.75rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-content h3 {
        font-size: 0.95rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .privacy-policy-content p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-content ul,
    .privacy-policy-content ol {
        padding-left: 1.25rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-content ul li,
    .privacy-policy-content ol li {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }

    .privacy-policy-content hr {
        margin: 1.5rem 0;
    }
}
