/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Brand/Logo */
.navbar-brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    gap: 12px;
}

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

.brand-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.nav-link.active,
.mobile-nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.15);
    font-weight: 600;
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c5a, #ffe066);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #333;
}

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

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

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

.mobile-cta-btn {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 1rem 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #ff8c5a, #ffe066);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-nav {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }

    .cta-btn {
        font-size: 0.95rem;
        padding: 0.65rem 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.1rem;
    }

    .logo {
        width: 36px;
        height: 36px;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.9rem 15px;
    }

    .mobile-cta-btn {
        font-size: 1rem;
        margin: 1rem 15px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

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

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 20%);
    padding: 1rem 0 1.5rem;
    backdrop-filter: blur(10px);
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sticky-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn-login {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: #ffffff;
    border: 2px solid #ffd700;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #3a3a3a, #2c2c2c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: #000;
}

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

.sticky-btn-bonus {
    background: linear-gradient(135deg, #ffd700, #ffe066);
    color: #000;
}

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ffe066, #fff199);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Add padding to body to prevent content from being hidden by sticky buttons */
body {
    padding-bottom: 6rem;
}

/* Responsive Design for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-nav {
        gap: 1rem;
    }

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

    .sticky-buttons-container {
        gap: 0.75rem;
    }

    .sticky-btn {
        font-size: 0.9rem;
        padding: 0.8rem 0.75rem;
    }

    body {
        padding-bottom: 5.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.25rem 0;
        margin-top: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

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

    .sticky-buttons {
        padding: 0.75rem 0 1.25rem;
    }

    .sticky-buttons-container {
        padding: 0 15px;
        gap: 0.5rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
        border-radius: 10px;
    }

    body {
        padding-bottom: 5rem;
    }
}

/* Login Page Styles */
.login-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

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

.login-container h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
}

.login-form {
    width: 100%;
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-label i {
    color: #ffd700;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    background-color: #0a0a0a;
    color: #ffffff;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c5a, #ffe066);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary i {
    font-size: 1.2rem;
}

.btn-outline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: transparent;
    color: #ffd700;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border: 2px solid #ffd700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-outline i {
    font-size: 1.2rem;
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-section {
        padding: 3rem 0;
        min-height: calc(100vh - 150px);
    }

    .login-container h1 {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }

    .login-form {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }

    .form-label {
        font-size: 0.95rem;
    }

    .form-input {
        padding: 0.9rem 1.1rem;
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-outline {
        font-size: 1rem;
        padding: 0.9rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 2rem 0;
    }

    .login-container h1 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .login-form {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-label i {
        font-size: 1rem;
    }

    .form-input {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .form-actions {
        gap: 0.85rem;
        margin-top: 1.75rem;
    }

    .btn-primary,
    .btn-outline {
        font-size: 0.95rem;
        padding: 0.85rem 1.1rem;
    }

    .btn-primary i,
    .btn-outline i {
        font-size: 1.1rem;
    }
}

/* Promotion Page Styles */
.promo-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0;
    border-bottom: 2px solid #ffd700;
}

.promo-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.promo-hero-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

.promo-section {
    padding: 4rem 0;
}

.promo-section-alt {
    background-color: #1a1a1a;
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.4;
}

.section-intro {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.promo-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.promo-section-alt .promo-card {
    background-color: #0a0a0a;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
}

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

.promo-list {
    list-style: none;
    margin-bottom: 2rem;
}

.promo-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.promo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.2rem;
}

.promo-btn {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    text-decoration: none;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-top: 1.5rem;
}

.promo-btn:hover {
    background: linear-gradient(135deg, #ff8c5a, #ffe066);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.promo-btn-outline {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.promo-btn-outline:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.promo-btn-large {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

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

.comparison-item {
    background-color: #0a0a0a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.promo-section-alt .comparison-item {
    background-color: #1a1a1a;
}

.comparison-item:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
}

.comparison-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.comparison-text {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.promo-features {
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #333;
}

.promo-section-alt .promo-features {
    background-color: #0a0a0a;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #000;
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

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

.seasonal-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.seasonal-card:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
}

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

.seasonal-list {
    list-style: none;
}

.seasonal-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.seasonal-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 1.1rem;
}

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

.step-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.step-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
}

.step-list {
    list-style: none;
}

.step-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.step-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

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

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

.terms-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
}

.promo-section-alt .terms-card {
    background-color: #0a0a0a;
}

.terms-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.terms-intro {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.terms-list {
    list-style: none;
}

.terms-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.terms-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 1.5rem;
}

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

.faq-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

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

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

.faq-answer {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.final-cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    max-width: 800px;
    margin: 2rem auto 0;
}

.disclaimer-section {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    margin-top: 3rem;
}

.disclaimer-text {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 1rem;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .promo-hero {
        padding: 3rem 0;
    }

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

    .promo-hero-description {
        font-size: 1rem;
    }

    .promo-section {
        padding: 3rem 0;
    }

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

    .section-intro {
        font-size: 1rem;
    }

    .promo-card {
        padding: 2rem;
    }

    .promo-card-title {
        font-size: 1.3rem;
    }

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

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

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

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

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

    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }

    .final-cta-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .promo-hero {
        padding: 2rem 0;
    }

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

    .promo-hero-description {
        font-size: 0.95rem;
    }

    .promo-section {
        padding: 2rem 0;
    }

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

    .section-intro {
        font-size: 0.95rem;
    }

    .promo-card {
        padding: 1.5rem;
    }

    .promo-card-title {
        font-size: 1.2rem;
    }

    .promo-list li,
    .seasonal-list li,
    .terms-list li {
        font-size: 0.9rem;
    }

    .promo-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .promo-btn-large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .step-header {
        gap: 0.75rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-list li {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .final-cta-card {
        padding: 1.5rem;
    }

    .disclaimer-section {
        padding: 1.5rem;
    }

    .disclaimer-text {
        font-size: 0.85rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 4rem 0;
}

.privacy-policy-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.privacy-policy-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.privacy-policy-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.privacy-policy-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.privacy-policy-content ul,
.privacy-policy-content ol {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

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

.privacy-policy-content hr {
    border: none;
    border-top: 1px solid #333;
    margin: 2.5rem 0;
}

.privacy-policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.privacy-policy-content table th {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffd700;
    background-color: #0a0a0a;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #333;
}

.privacy-policy-content table td {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    color: #e0e0e0;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.privacy-policy-content table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 3rem 0;
    }

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

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

    .privacy-policy-content h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul,
    .privacy-policy-content ol {
        font-size: 0.95rem;
    }

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

    .privacy-policy-content table th,
    .privacy-policy-content table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

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

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

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

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

    .privacy-policy-content p,
    .privacy-policy-content ul,
    .privacy-policy-content ol {
        font-size: 0.9rem;
    }

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

    .privacy-policy-content table {
        font-size: 0.85rem;
    }

    .privacy-policy-content table th,
    .privacy-policy-content table td {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}