/* Dark Mode Header Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b47 100%);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

/* Brand Styles */
.header-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.brand-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none;
    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);
    transform: translateY(-2px);
}

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

.nav-link:hover::after {
    width: 80%;
}

/* CTA Button */
.nav-cta-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.nav-cta-btn:hover::before {
    left: 100%;
}

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

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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 Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d1b47 100%);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.nav-mobile.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.mobile-brand-logo {
    width: 35px;
    height: 35px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

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

.mobile-nav-item {
    width: 100%;
}

.mobile-nav-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    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);
    transform: translateX(10px);
}

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

.mobile-nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

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

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

    .nav-cta-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
        height: 65px;
    }

    .brand-logo {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .brand-text {
        font-size: 20px;
    }

    .nav-desktop {
        display: none;
    }

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

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
        height: 60px;
    }

    .brand-logo {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .brand-text {
        font-size: 18px;
    }

    .mobile-menu-content {
        width: 280px;
    }

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

    .mobile-nav-cta-btn {
        font-size: 16px;
        padding: 15px 16px;
    }
}

/* Main Content Styles */
main {
    min-height: 100vh;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b47 50%, #1a1a1a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

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

.cta-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.cta-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

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

/* Content Sections */
.content-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

.content-section:nth-child(even) {
    background: #121212;
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 40px;
    text-align: center;
}

.content-grid {
    display: grid;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.grid-text-image {
    grid-template-columns: 1fr 1fr;
}

.grid-image-text {
    grid-template-columns: 1fr 1fr;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-text h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 30px;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

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

.content-text a:hover {
    color: #ff6b35;
}

.content-image {
    position: relative;
}

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

.section-image {
    margin-top: 60px;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Payout List */
.payout-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.payout-list li {
    font-size: 18px;
    color: #e0e0e0;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
}

.payout-list li strong {
    color: #ffd700;
}

/* Lottery Demo Section */
.demo-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b47 100%);
    padding: 80px 20px;
}

.demo-intro {
    text-align: center;
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 50px;
}

.lottery-demo {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.lottery-type-selector {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lottery-type-btn {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lottery-type-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.lottery-type-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    color: #fff;
    border-color: #ffd700;
}

.number-selector {
    margin-bottom: 30px;
}

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

.number-btn {
    aspect-ratio: 1;
    font-size: 20px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.number-btn.selected {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    color: #fff;
    border-color: #ffd700;
}

.selected-numbers {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.selected-numbers h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 15px;
}

.selected-display {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.empty-message {
    color: #888;
    font-size: 16px;
}

.selected-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #ffd700;
}

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

.bet-amount label {
    font-size: 16px;
    color: #e0e0e0;
}

.bet-amount input {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #fff;
}

.bet-amount input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
}

.demo-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn-random {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
}

.demo-btn-random:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.demo-btn-clear {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.demo-btn-clear:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.demo-btn-calculate {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    color: #fff;
}

.demo-btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.result-display {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #ffd700;
}

.result-display h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 15px;
}

.result-content {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
}

/* Lottery Types Grid */
.intro-text {
    text-align: center;
    margin-bottom: 50px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

.lottery-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

.lottery-type-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.lottery-type-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.lottery-type-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
}

.additional-types {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.additional-types h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.additional-types p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.additional-types a {
    color: #ffd700;
    text-decoration: underline;
}

.additional-types a:hover {
    color: #ff6b35;
}

/* Trust Section */
.trust-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.trust-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.trust-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
}

.trust-feature h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.trust-feature p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.trust-cta {
    text-align: center;
    margin-bottom: 50px;
}

.trust-cta p {
    font-size: 18px;
    color: #e0e0e0;
}

.trust-cta a {
    color: #ffd700;
    text-decoration: underline;
}

.trust-cta a:hover {
    color: #ff6b35;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
}

.faq-item a {
    color: #ffd700;
    text-decoration: underline;
}

.faq-item a:hover {
    color: #ff6b35;
}

/* CTA Final Section */
.cta-final-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.cta-final-content a {
    color: #ffd700;
    text-decoration: underline;
}

.cta-final-content a:hover {
    color: #ff6b35;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* Responsible Section */
.responsible-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsible-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    color: #e0e0e0;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.brand-statement {
    text-align: center;
}

.brand-statement p {
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
}

.brand-statement p:first-child {
    font-size: 20px;
    color: #ffd700;
}

.comparison-content {
    margin-top: 40px;
}

.comparison-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.comparison-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.comparison-content a {
    color: #ffd700;
    text-decoration: underline;
}

.comparison-content a:hover {
    color: #ff6b35;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid #333;
    padding: 30px 20px 100px;
    margin-top: 0;
}

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

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

.footer-link {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

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

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

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

.sticky-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.sticky-btn:hover::before {
    left: 100%;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.sticky-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.sticky-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.sticky-btn-credit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lottery-types-grid {
        grid-template-columns: 1fr;
    }

    .trust-features {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .content-text h3 {
        font-size: 24px;
    }

    .content-text p {
        font-size: 16px;
    }

    .lottery-demo {
        padding: 30px 20px;
    }

    .number-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .number-btn {
        font-size: 18px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 14px 28px;
    }

    .demo-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    /* Footer Responsive */
    .footer {
        padding: 25px 20px 100px;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-link {
        font-size: 13px;
    }

    /* Sticky Buttons Responsive */
    .sticky-btn {
        font-size: 15px;
        padding: 12px 16px;
    }

    .sticky-buttons-container {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .content-text h3 {
        font-size: 22px;
    }

    .lottery-type-selector {
        flex-direction: column;
    }

    .lottery-type-btn {
        width: 100%;
    }

    .number-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .number-btn {
        font-size: 16px;
    }

    .demo-actions {
        flex-direction: column;
    }

    .demo-btn {
        width: 100%;
    }

    .lottery-demo {
        padding: 20px 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .cta-btn {
        width: 100%;
    }

    /* Footer Responsive */
    .footer {
        padding: 20px 15px 100px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-link {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Sticky Buttons Responsive */
    .sticky-buttons {
        padding: 12px 0 15px;
    }

    .sticky-buttons-container {
        padding: 0 12px;
        gap: 8px;
    }

    .sticky-btn {
        font-size: 14px;
        padding: 12px 10px;
    }
}

/* Login Page Styles */
.login-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b47 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1), transparent 50%);
    pointer-events: none;
}

.login-container {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-label {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
}

.form-input {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.btn-login {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    margin-top: 10px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

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

.btn-register {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    background: transparent;
    color: #ffd700;
    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.1);
    transform: translateY(-2px);
}

/* Login Page Responsive */
@media (max-width: 768px) {
    .login-section {
        padding: 80px 20px;
    }

    .login-container {
        padding: 40px 30px;
    }

    .login-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-input {
        font-size: 15px;
        padding: 14px 18px;
    }

    .btn-login,
    .btn-register {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 70px 15px;
    }

    .login-container {
        padding: 35px 25px;
    }

    .login-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .form-label {
        font-size: 14px;
    }

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

    .btn-login,
    .btn-register {
        font-size: 15px;
        padding: 12px 24px;
    }
}
/* ===== PROMOTION PAGE STYLES ===== */

/* Promotion Hero Section */
.promo-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promo-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.promo-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
}

/* Promotion Sections */
.promo-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

.promo-section-alt {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.promo-section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #ffd700;
}

.promo-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 25px;
}

/* Promotion Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

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

.promo-card-title {
    font-family: 'Prompt', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.promo-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
}

/* Promotion Highlight */
.promo-highlight {
    background: linear-gradient(135deg, #2d1b47 0%, #1a1a2e 100%);
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.promo-highlight-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd700;
}

/* Promotion Link */
.promo-link {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Promotion Features */
.promo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-feature-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    padding: 35px;
}

.promo-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;
}

.promo-feature-title {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.promo-feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
}

/* Promotion Details */
.promo-details {
    margin: 40px 0;
}

.promo-details-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd700;
}

/* Promotion List */
.promo-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.promo-list-item {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.promo-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
    font-size: 18px;
}

/* Dual Column Layout */
.promo-dual-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-col-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    padding: 35px;
}

/* Reward List */
.promo-reward-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.promo-reward-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.promo-reward-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* Seasonal Promotions */
.promo-seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-seasonal-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.promo-seasonal-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.promo-seasonal-title {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.promo-seasonal-text {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.promo-seasonal-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.promo-seasonal-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.promo-seasonal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* VIP Tiers */
.promo-vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.promo-vip-tier {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-vip-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.promo-vip-tier-header {
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.promo-vip-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
}

.promo-vip-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.promo-vip-platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #B0B0B0 100%);
}

.promo-vip-diamond {
    background: linear-gradient(135deg, #B9F2FF 0%, #7DD3FC 100%);
}

.promo-vip-tier-header i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

.promo-vip-tier-name {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.promo-vip-tier-req {
    font-size: 14px;
    color: #2d2d3a;
    font-weight: 600;
}

.promo-vip-benefits {
    list-style: none;
    padding: 25px 20px;
}

.promo-vip-benefits li {
    font-size: 15px;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.promo-vip-benefits li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 16px;
}

/* VIP Details */
.promo-vip-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-vip-detail-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    padding: 30px;
}

/* Steps Grid */
.promo-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-step-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.promo-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.promo-step-title {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.promo-step-text {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.promo-step-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
    counter-reset: step-counter;
}

.promo-step-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    counter-increment: step-counter;
}

.promo-step-list li::before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* Terms & Conditions */
.promo-terms-section {
    margin: 40px 0;
}

.promo-terms-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd700;
}

.promo-terms-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
    counter-reset: terms-counter;
}

.promo-terms-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    counter-increment: terms-counter;
}

.promo-terms-list li::before {
    content: counter(terms-counter) ".";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
    font-size: 18px;
}

.promo-formula-box {
    background: linear-gradient(135deg, #2d1b47 0%, #1a1a2e 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
}

.promo-formula {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
}

.promo-example-box {
    background: #16213e;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.promo-example-title {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.promo-example-text {
    font-size: 16px;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 10px;
}

/* Restrictions */
.promo-restrictions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.promo-restriction-col {
    background: #16213e;
    border-radius: 12px;
    padding: 25px;
}

.promo-restriction-title {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.promo-restriction-list {
    list-style: none;
    padding-left: 0;
}

.promo-restriction-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.promo-restriction-list li::before {
    content: '⊗';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

/* Withdrawal Info */
.promo-withdrawal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.promo-withdrawal-case {
    background: #16213e;
    border-radius: 12px;
    padding: 25px;
}

.promo-withdrawal-title {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-withdrawal-title i {
    font-size: 20px;
}

/* FAQ Section */
.promo-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #2d2d3a;
    border-radius: 16px;
    padding: 30px;
}

.promo-faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.promo-faq-answer {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
}

/* Final CTA Section */
.promo-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b47 50%, #16213e 100%);
    padding: 80px 20px;
    position: relative;
}

.promo-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.promo-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-cta-title {
    font-family: 'Prompt', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 25px;
    text-align: center;
}

.promo-cta-link {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.promo-cta-link:hover {
    color: #ff6b35;
}

.promo-contact-info {
    background: linear-gradient(135deg, #2d1b47 0%, #1a1a2e 100%);
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.promo-contact-title {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    text-align: center;
}

.promo-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.promo-contact-item {
    font-size: 18px;
    color: #c0c0c0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-contact-item i {
    font-size: 24px;
    color: #ff6b35;
}

.promo-cta-footer {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 30px 0;
    text-align: center;
}

.promo-brand-footer {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin: 25px 0;
}

.promo-copyright {
    font-size: 14px;
    color: #808080;
    text-align: center;
    margin-top: 20px;
}

/* ===== RESPONSIVE STYLES ===== */

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

    .promo-section-title {
        font-size: 32px;
    }

    .promo-grid,
    .promo-features,
    .promo-dual-col {
        grid-template-columns: 1fr;
    }

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

    .promo-vip-tiers {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .promo-hero {
        padding: 60px 20px;
    }

    .promo-hero-title {
        font-size: 28px;
    }

    .promo-hero-desc {
        font-size: 16px;
    }

    .promo-section {
        padding: 60px 20px;
    }

    .promo-section-title {
        font-size: 26px;
    }

    .promo-text {
        font-size: 16px;
    }

    .promo-card,
    .promo-feature-card,
    .promo-col-card {
        padding: 25px;
    }

    .promo-card-title {
        font-size: 22px;
    }

    .promo-highlight {
        padding: 30px 20px;
    }

    .promo-seasonal-grid,
    .promo-vip-tiers,
    .promo-steps-grid {
        grid-template-columns: 1fr;
    }

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

    .promo-restrictions,
    .promo-withdrawal-info {
        grid-template-columns: 1fr;
    }

    .promo-vip-details {
        grid-template-columns: 1fr;
    }

    .promo-cta-section {
        padding: 60px 20px;
    }

    .promo-cta-title {
        font-size: 28px;
    }

    .promo-cta-text {
        font-size: 16px;
    }

    .promo-contact-info {
        padding: 30px 20px;
    }

    .promo-contact-list {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .promo-hero-title {
        font-size: 24px;
    }

    .promo-hero-desc {
        font-size: 15px;
    }

    .promo-section-title {
        font-size: 22px;
    }

    .promo-text {
        font-size: 15px;
    }

    .promo-card,
    .promo-feature-card {
        padding: 20px;
    }

    .promo-card-title {
        font-size: 20px;
    }

    .promo-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .promo-feature-title {
        font-size: 20px;
    }

    .promo-cta-title {
        font-size: 24px;
    }

    .promo-contact-item {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */

.privacy-policy-section {
    background: #0a0a0a;
    padding: 100px 20px 80px;
    min-height: 100vh;
}

.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.privacy-policy-container h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 50px;
    margin-bottom: 25px;
}

.privacy-policy-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.privacy-policy-container p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.privacy-policy-container ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-policy-container ul li {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.privacy-policy-container ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
    font-size: 24px;
}

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

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

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

    .privacy-policy-container h1 {
        font-size: 36px;
    }

    .privacy-policy-container h2 {
        font-size: 28px;
    }

    .privacy-policy-container h3 {
        font-size: 22px;
    }
}

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

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

    .privacy-policy-container h1 {
        font-size: 32px;
    }

    .privacy-policy-container h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .privacy-policy-container h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .privacy-policy-container p {
        font-size: 16px;
    }

    .privacy-policy-container ul li {
        font-size: 16px;
        padding-left: 25px;
    }
}

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

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

    .privacy-policy-container h1 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .privacy-policy-container h2 {
        font-size: 24px;
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .privacy-policy-container h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .privacy-policy-container p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .privacy-policy-container ul {
        margin: 15px 0;
    }

    .privacy-policy-container ul li {
        font-size: 15px;
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .privacy-policy-container ul li::before {
        font-size: 20px;
    }

    .privacy-policy-container hr {
        margin: 30px 0;
    }
}
