/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.header-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #f9fafb;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.header-logo a:hover {
    color: #fbbf24;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

/* Desktop Navigation */
.header-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fbbf24;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 1px;
}

.nav-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    text-align: center;
    white-space: nowrap;
}

.nav-button:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #d1d5db;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover .hamburger-line {
    background: #fbbf24;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: rgba(17, 24, 39, 0.98);
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 1rem 0;
}

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

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fbbf24;
    background: rgba(75, 85, 99, 0.1);
    border-left-color: #fbbf24;
}

.mobile-nav-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    margin: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    text-align: center;
    display: block;
}

.mobile-nav-button:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .header-nav {
        display: block;
    }

    .mobile-menu-button {
        display: none;
    }

    .header-content {
        height: 80px;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .logo-text {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }

    .nav-list {
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

/* Body padding to compensate for fixed header */
body {
    padding-top: 70px;
    background-color: #111827;
    color: #f9fafb;
    font-family: 'Sarabun', sans-serif;
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.nav-button:focus,
.mobile-nav-link:focus,
.mobile-nav-button:focus,
.mobile-menu-button:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* ===== MAIN CONTENT STYLES ===== */

/* Content Container */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .content-container {
        padding: 0 2rem;
    }
}

/* Section Spacing */
section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

/* Typography */
.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.subsection-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d1d5db;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.section-intro {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.hero-cta,
.section-cta,
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    text-align: center;
}

.hero-cta:hover,
.section-cta:hover,
.cta-button:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.inline-link {
    color: #fbbf24;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #f59e0b;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
    padding: 4rem 0;
}

.hero-section .content-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 968px) {
    .hero-section .content-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

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

.hero-cta {
    margin-top: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===== BACCARAT SECTION ===== */
.baccarat-section {
    background: rgba(31, 41, 55, 0.5);
}

.baccarat-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 968px) {
    .baccarat-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.baccarat-content p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.baccarat-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ===== SLOT DEMO SECTION ===== */
.slot-demo-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    text-align: center;
}

.slot-machine {
    max-width: 600px;
    margin: 3rem auto;
    background: rgba(17, 24, 39, 0.9);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid #fbbf24;
}

.slot-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slot-reel {
    width: 100px;
    height: 100px;
    background: rgba(31, 41, 55, 0.8);
    border: 3px solid #fbbf24;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.3s ease;
}

.slot-reel.spinning {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.slot-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slot-balance {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    color: #fbbf24;
}

.balance-amount {
    font-weight: 700;
    color: #ffffff;
    margin: 0 0.5rem;
}

.slot-spin-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.slot-spin-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.slot-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-result {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    min-height: 2rem;
    color: #fbbf24;
}

.demo-note {
    margin-top: 2rem;
    color: #9ca3af;
    font-style: italic;
    font-size: 0.875rem;
}

/* ===== SLOTS SECTION ===== */
.slots-section {
    background: rgba(17, 24, 39, 0.5);
}

.slots-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 968px) {
    .slots-layout {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 3rem;
        align-items: start;
    }
}

.slots-content p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.slots-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.feature-list,
.games-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li,
.games-list li {
    color: #d1d5db;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.feature-list li::before,
.games-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 700;
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    background: rgba(31, 41, 55, 0.5);
}

.payment-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 968px) {
    .payment-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.payment-methods p,
.payment-benefits p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(17, 24, 39, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.payment-list i {
    color: #fbbf24;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.payment-list div {
    flex: 1;
}

.payment-list strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-family: 'Prompt', sans-serif;
}

.payment-list span {
    color: #9ca3af;
    font-size: 0.9375rem;
}

/* ===== GAMES SECTION ===== */
.games-section {
    background: rgba(17, 24, 39, 0.5);
}

.games-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .games-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.games-column p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.live-casino-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.live-casino-box p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.live-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .live-features {
        grid-template-columns: 1fr 1fr;
    }
}

.live-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    padding: 0.5rem 0;
}

.live-features i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.games-showcase-image {
    margin-top: 3rem;
}

.games-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ===== SECURITY SECTION ===== */
.security-section {
    background: rgba(31, 41, 55, 0.5);
}

.security-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 968px) {
    .security-layout {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.security-content p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.security-list,
.security-steps {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.security-list li,
.security-steps li {
    color: #d1d5db;
    padding: 0.75rem 0;
    line-height: 1.7;
}

.security-list i {
    color: #10b981;
    margin-right: 0.75rem;
}

.security-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.responsible-gaming {
    background: rgba(17, 24, 39, 0.5);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.responsible-gaming p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.responsible-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .responsible-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .responsible-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.responsible-item {
    background: rgba(31, 41, 55, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.responsible-item:hover {
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.responsible-item i {
    color: #fbbf24;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.responsible-item strong {
    display: block;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.responsible-item span {
    color: #9ca3af;
    font-size: 0.9375rem;
    display: block;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background: rgba(17, 24, 39, 0.9);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: #fbbf24;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

.bonus-card-highlight {
    border-color: #fbbf24;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(17, 24, 39, 0.9));
}

.bonus-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-icon i {
    font-size: 3rem;
    color: #fbbf24;
}

.bonus-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-card p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bonus-list,
.vip-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.bonus-list li,
.vip-list li {
    color: #d1d5db;
    padding: 0.75rem 0;
    line-height: 1.7;
}

.vip-list {
    padding-left: 1.5rem;
}

.bonus-note {
    color: #9ca3af;
    font-size: 0.9375rem;
    margin: 2rem 0;
    font-style: italic;
}

.bonus-image-container {
    margin: 2rem 0;
}

.bonus-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ===== MOBILE SECTION ===== */
.mobile-section {
    background: rgba(17, 24, 39, 0.5);
}

.mobile-content p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mobile-features,
.app-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.mobile-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d1d5db;
    padding: 0.75rem 0;
    line-height: 1.7;
}

.mobile-features i {
    color: #fbbf24;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.app-features li {
    color: #d1d5db;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
    background: rgba(31, 41, 55, 0.5);
}

.support-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

@media (min-width: 968px) {
    .support-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.support-channels p,
.support-benefits p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(17, 24, 39, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.contact-item i {
    color: #fbbf24;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-family: 'Prompt', sans-serif;
}

.contact-item span {
    color: #9ca3af;
    font-size: 0.9375rem;
}

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

.support-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    padding: 0.75rem 0;
    line-height: 1.7;
}

.support-list i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.support-image-container {
    margin-top: 3rem;
}

.support-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: rgba(17, 24, 39, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: rgba(31, 41, 55, 0.5);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fbbf24;
}

.faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #d1d5db;
    line-height: 1.8;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(185, 28, 28, 0.15));
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    background: rgba(17, 24, 39, 0.7);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #fbbf24;
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.cta-section p {
    color: #d1d5db;
    line-height: 1.8;
    margin: 1.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-image-container {
    margin: 3rem 0;
}

.cta-image-container img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cta-button {
    font-size: 1.375rem;
    padding: 1.25rem 3rem;
    margin-top: 2rem;
}

/* ===== FOOTER NOTE SECTION ===== */
.footer-note {
    background: rgba(17, 24, 39, 0.9);
    padding: 3rem 0;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
}

.warning-note {
    color: #fbbf24;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.contact-info {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 8px;
}

.contact-info h3 {
    font-family: 'Prompt', sans-serif;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    color: #d1d5db;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info i {
    color: #fbbf24;
    width: 20px;
}

.update-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 2rem;
    text-align: center;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: rgba(17, 24, 39, 0.98);
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 2rem 0;
    margin-bottom: 80px;
}

.footer-legal-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer-legal-nav {
        flex-direction: row;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .footer-legal-nav {
        gap: 3rem;
    }
}

.footer-legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    text-align: center;
}

.footer-legal-link:hover {
    color: #fbbf24;
}

.footer-legal-link:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* ===== STICKY BUTTONS STYLES ===== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 100%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .sticky-buttons {
        padding: 1.25rem;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .sticky-buttons {
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        max-width: 1280px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px 12px 0 0;
    }
}

.sticky-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.875rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .sticky-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

@media (min-width: 768px) {
    .sticky-button {
        font-size: 1.125rem;
        padding: 1.125rem 1.5rem;
    }
}

.sticky-button-login {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #ffffff;
    border: 1px solid #4b5563;
}

.sticky-button-login:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sticky-button-register {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
}

.sticky-button-register:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.sticky-button-credit {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
}

.sticky-button-credit:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.sticky-button:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Ensure body has bottom padding to prevent content from being hidden by sticky buttons */
body {
    padding-bottom: 0;
}

/* ===== RESPONSIVE IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
}

/* ===== RESET & DEFAULTS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

/* ===== PROMOTION PAGE STYLES ===== */

/* Promo Hero Section */
.promo-hero-section {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 55, 0.98));
    padding: 4rem 0;
    text-align: center;
}

.promo-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

@media (min-width: 768px) {
    .promo-hero-title {
        font-size: 2.5rem;
    }
}

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

.promo-hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    margin-top: 1rem;
}

.promo-hero-cta:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Promo Sections */
.promo-section {
    padding: 3rem 0;
    background: rgba(17, 24, 39, 0.5);
}

.promo-section-alt {
    background: rgba(31, 41, 55, 0.5);
}

@media (min-width: 768px) {
    .promo-section {
        padding: 4rem 0;
    }
}

.promo-section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .promo-section-title {
        font-size: 2.25rem;
    }
}

.promo-subsection-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1.5rem 0 1rem;
    line-height: 1.4;
}

/* Promo Content Layouts */
.promo-grid,
.promo-grid-reverse,
.promo-flex-layout,
.promo-columns,
.promo-full-content,
.promo-vip-layout,
.promo-refer-grid,
.promo-daily-layout,
.promo-weekend-grid,
.promo-live-layout,
.promo-fishing-grid,
.promo-tournament-layout,
.promo-festival-grid,
.promo-terms-layout,
.promo-summary-layout,
.promo-benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-content,
.promo-content-wide,
.promo-flex-content,
.promo-column-content,
.promo-refer-content,
.promo-daily-content,
.promo-weekend-content,
.promo-fishing-content,
.promo-tournament-content,
.promo-festival-content {
    width: 100%;
}

.promo-section p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Promo Lists */
.promo-feature-list,
.promo-vip-list,
.promo-festival-list,
.promo-terms-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.promo-feature-list li,
.promo-vip-list li,
.promo-festival-list li,
.promo-terms-list li {
    color: #d1d5db;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.promo-feature-list li::before,
.promo-vip-list li::before,
.promo-festival-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 700;
}

.promo-terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Promo Links */
.promo-inline-link {
    color: #fbbf24;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.promo-inline-link:hover {
    color: #f59e0b;
}

/* Promo CTA Buttons */
.promo-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    margin-top: 1rem;
}

.promo-cta-button:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.promo-cta-large {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

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

/* Promo Steps Grid */
.promo-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .promo-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.promo-step-card {
    background: rgba(31, 41, 55, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.promo-step-card:hover {
    border-color: #fbbf24;
    transform: translateY(-4px);
}

.promo-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.promo-step-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

/* FAQ Section */
.promo-faq-section {
    background: rgba(17, 24, 39, 0.5);
}

.promo-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .promo-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.promo-faq-item {
    background: rgba(31, 41, 55, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.promo-faq-item:hover {
    border-color: #fbbf24;
}

.promo-faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.promo-faq-answer {
    color: #d1d5db;
    line-height: 1.8;
    margin: 0;
}

/* Benefits Grid */
.promo-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .promo-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .promo-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .promo-benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.promo-benefit-card {
    background: rgba(31, 41, 55, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.promo-benefit-card:hover {
    border-color: #fbbf24;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.promo-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promo-benefit-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.promo-benefit-card p {
    color: #9ca3af;
    font-size: 0.9375rem;
    margin: 0;
}

/* Summary Section */
.promo-divider {
    border: none;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    margin: 2rem 0;
}

.promo-contact-box {
    background: rgba(17, 24, 39, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.promo-contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.promo-contact-list li {
    color: #d1d5db;
    padding: 0.5rem 0;
    line-height: 1.6;
}

.promo-disclaimer {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 2rem;
    text-align: center;
}

/* ===== LOGIN PAGE STYLES ===== */
.login-section {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
}

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

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

@media (min-width: 768px) {
    .login-title {
        font-size: 2.25rem;
    }
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(31, 41, 55, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .login-form {
        padding: 3rem;
    }
}

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

.form-label {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.form-input {
    width: 100%;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.form-input::placeholder {
    color: #6b7280;
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.login-button:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

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

.login-button i {
    font-size: 1.25rem;
}

.register-button {
    width: 100%;
    background: transparent;
    color: #fbbf24;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.register-button:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-2px);
}

.register-button i {
    font-size: 1.25rem;
}

.register-button:focus,
.login-button:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-policy-container {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.privacy-policy-container .content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-policy-container h1 {
    color: #fbbf24;
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.privacy-policy-container section {
    margin-bottom: 3rem;
}

.privacy-policy-container h2 {
    color: #fbbf24;
    font-family: 'Prompt', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
}

.privacy-policy-container h3 {
    color: #f9fafb;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.privacy-policy-container p {
    color: #d1d5db;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-policy-container p strong {
    color: #f9fafb;
    font-weight: 700;
}

.privacy-policy-container ul,
.privacy-policy-container ol {
    color: #d1d5db;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-policy-container ul li,
.privacy-policy-container ol li {
    margin-bottom: 0.75rem;
}

.privacy-policy-container ul ul,
.privacy-policy-container ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.privacy-policy-container a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-container a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .privacy-policy-container {
        padding: 140px 0 80px;
    }

    .privacy-policy-container h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .privacy-policy-container h2 {
        font-size: 2.25rem;
        margin: 2.5rem 0 1.5rem;
    }

    .privacy-policy-container h3 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem;
    }

    .privacy-policy-container .content-container {
        padding: 0 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .privacy-policy-container {
        padding: 150px 0 100px;
    }

    .privacy-policy-container h1 {
        font-size: 3.5rem;
    }

    .privacy-policy-container h2 {
        font-size: 2.5rem;
    }

    .privacy-policy-container h3 {
        font-size: 2rem;
    }

    .privacy-policy-container p,
    .privacy-policy-container ul,
    .privacy-policy-container ol {
        font-size: 1.25rem;
    }
}
