/* ===== HEADER STYLES ===== */

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

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

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

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

.header-logo img {
    margin-right: 10px;
    border-radius: 4px;
}

.logo-text {
    color: #ff6b35;
}

/* Desktop Navigation */
.main-navigation {
    display: block;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff6b35;
}

/* CTA Button Styles */
.nav-cta-button,
.mobile-nav-cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.nav-cta-button:hover,
.mobile-nav-cta-button:hover {
    background: linear-gradient(45deg, #e55a2e, #e08419);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

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

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

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

.mobile-nav-item {
    margin: 0;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.mobile-nav-cta-button {
    text-align: center;
    margin-top: 10px;
}

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

    .main-navigation {
        display: none;
    }

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

    .header-logo a {
        font-size: 20px;
    }

    .header-logo img {
        width: 35px;
        height: 35px;
    }
}

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

    .header-logo a {
        font-size: 18px;
    }

    .header-logo img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
}
/* ===== GLOBAL STYLES ===== */

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

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

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

/* ===== HERO SECTION ===== */

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

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

.hero-content h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d0d0d0;
}

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

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

.cta-button.primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(45deg, #e55a2e, #e08419);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.cta-button.secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #f7931e;
}

.cta-button.large {
    padding: 20px 48px;
    font-size: 18px;
}

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

/* ===== LOTTERY DEMO SECTION ===== */

.lottery-demo-section {
    background: #161616;
    padding: 80px 0;
}

.lottery-demo-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 50px;
}

.lottery-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.lottery-number-display {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px solid #333;
}

.number-label {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.lottery-numbers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.lottery-digit {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 48px;
    font-weight: 700;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.lottery-round {
    font-size: 16px;
    color: #909090;
    margin-top: 10px;
}

.betting-simulator {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid #333;
}

.betting-simulator h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 25px;
}

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

.number-btn {
    background: #2d2d2d;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.number-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: scale(1.05);
}

.number-btn.selected {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
}

.selected-numbers {
    background: #0d0d0d;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.selected-label {
    font-size: 14px;
    color: #909090;
    margin-bottom: 10px;
}

.selected-display {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    letter-spacing: 10px;
}

.bet-amount-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

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

.bet-input {
    background: #0d0d0d;
    color: #ffffff;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 18px;
    font-family: 'Prompt', sans-serif;
    width: 120px;
}

.currency {
    color: #909090;
    font-size: 16px;
}

.demo-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.demo-bet-btn, .demo-reset-btn {
    flex: 1;
    padding: 15px 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.demo-bet-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
}

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

.demo-reset-btn {
    background: #2d2d2d;
    color: #ffffff;
    border: 2px solid #444;
}

.demo-reset-btn:hover {
    background: #3d3d3d;
}

.demo-result {
    background: #0d0d0d;
    border-radius: 8px;
    padding: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #d0d0d0;
    font-size: 16px;
}

/* ===== SECTION STYLES ===== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

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

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

.section-cta-center {
    text-align: center;
    margin: 50px 0;
}

/* ===== AUTO SYSTEM SECTION ===== */

.auto-system-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.feature-article h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.feature-article p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.payment-methods-list,
.security-list,
.features-list {
    list-style: none;
    margin: 25px 0;
}

.payment-methods-list li,
.security-list li,
.features-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #d0d0d0;
}

.payment-methods-list li:before,
.security-list li:before,
.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 40px;
}

.feature-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.feature-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

/* ===== LOTTERY TYPES SECTION ===== */

.lottery-types-section {
    background: #161616;
    padding: 80px 0;
}

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

.lottery-type-card {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
}

.lottery-type-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.lottery-type-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.lottery-type-card p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.payout-rates,
.hanoi-rounds,
.malaysia-formats,
.yikee-highlights,
.stock-lottery-types {
    margin-top: 25px;
}

.payout-rates h4,
.hanoi-rounds h4,
.malaysia-formats h4,
.yikee-highlights h4,
.stock-lottery-types h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    color: #f7931e;
    margin-bottom: 15px;
}

.payout-rates ul,
.hanoi-rounds ol,
.malaysia-formats ul,
.yikee-highlights ul,
.stock-lottery-types ul {
    list-style-position: inside;
    color: #b0b0b0;
    font-size: 15px;
}

.payout-rates ul li,
.malaysia-formats ul li,
.yikee-highlights ul li,
.stock-lottery-types ul li {
    padding: 8px 0;
}

.hanoi-rounds ol li {
    padding: 8px 0;
}

.stock-lottery-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stock-group h4 {
    margin-bottom: 12px;
}

/* ===== PAYOUT SECTION ===== */

.payout-section {
    background: #0d0d0d;
    padding: 80px 0;
}

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

.payout-content p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.comparison-table {
    margin: 40px 0;
}

.comparison-table h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #f7931e;
    margin-bottom: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #161616;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #2d2d2d;
}

.comparison-table th {
    background: #2d2d2d;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.comparison-table td {
    color: #d0d0d0;
    font-size: 15px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.payout-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.payout-feature {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
}

.payout-feature h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.payout-feature p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.benefits-list,
.payment-proof {
    margin-top: 25px;
}

.benefits-list h4,
.payment-proof h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    color: #f7931e;
    margin-bottom: 15px;
}

.benefits-list ul,
.payment-proof ul {
    list-style: none;
}

.benefits-list ul li,
.payment-proof ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #d0d0d0;
    font-size: 16px;
}

.benefits-list ul li:before,
.payment-proof ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.betting-formats {
    margin: 60px 0;
}

.betting-formats h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.betting-formats p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.betting-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.betting-type {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    padding: 25px;
}

.betting-type h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 12px;
}

.betting-type p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 8px;
}

.betting-type .example {
    color: #b0b0b0;
    font-style: italic;
}

.betting-type .payout {
    color: #f7931e;
    font-weight: 700;
    margin-top: 10px;
}

.betting-tools {
    margin: 60px 0;
}

.betting-tools h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.betting-tools p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.tools-list {
    list-style: none;
    margin: 25px 0;
}

.tools-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #d0d0d0;
}

.tools-list li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 20px;
}

/* ===== DIRECT WEBSITE SECTION ===== */

.direct-website-section {
    background: #161616;
    padding: 80px 0;
}

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

.direct-website-content p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.advantage-card {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    padding: 30px;
}

.advantage-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.advantage-card ul {
    list-style: none;
}

.advantage-card ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #d0d0d0;
    font-size: 16px;
}

.advantage-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

.security-standards {
    margin: 60px 0;
}

.security-standards h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.security-standards p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.security-measures h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #f7931e;
    margin-bottom: 20px;
}

.security-measures ul {
    list-style: none;
}

.security-measures ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #d0d0d0;
    font-size: 17px;
}

.security-measures ul li:before {
    content: "🔒";
    position: absolute;
    left: 0;
    font-size: 18px;
}

.trust-indicators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.trust-indicator {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
}

.trust-indicator h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.trust-indicator p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.statistics h4,
.contact-channels h4,
.team-expertise h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    color: #f7931e;
    margin: 25px 0 15px 0;
}

.statistics ul,
.contact-channels ul,
.team-expertise ul {
    list-style: none;
}

.statistics ul li,
.contact-channels ul li,
.team-expertise ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #d0d0d0;
    font-size: 16px;
}

.statistics ul li:before {
    content: "📊";
    position: absolute;
    left: 0;
    font-size: 18px;
}

.contact-channels ul li:before {
    content: "📞";
    position: absolute;
    left: 0;
    font-size: 18px;
}

.team-expertise ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.testimonials {
    margin: 60px 0;
}

.testimonials h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    padding: 30px;
    border-left: 4px solid #ff6b35;
}

.testimonial p {
    font-size: 17px;
    color: #d0d0d0;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 15px;
    color: #909090;
    font-style: normal;
}

/* ===== GETTING STARTED SECTION ===== */

.getting-started-section {
    background: #0d0d0d;
    padding: 80px 0;
}

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

.step-card {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.step-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ff6b35;
    margin: 20px 0;
    text-align: center;
}

.step-card > p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.step-details h4,
.step-details h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    color: #f7931e;
    margin: 20px 0 12px 0;
}

.step-details ol,
.step-details ul {
    margin: 15px 0;
    padding-left: 25px;
}

.step-details li {
    padding: 8px 0;
    color: #d0d0d0;
    font-size: 16px;
}

.deposit-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 20px 0;
}

.deposit-method h5 {
    font-size: 17px;
    margin-bottom: 10px;
}

.winning-process,
.beginner-tips {
    margin: 60px 0;
}

.winning-process h3,
.beginner-tips h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.winning-process p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.process-flow h4,
.withdrawal-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    color: #f7931e;
    margin: 25px 0 15px 0;
}

.process-flow ol,
.withdrawal-info ul {
    margin: 15px 0;
    padding-left: 25px;
}

.process-flow li,
.withdrawal-info li {
    padding: 10px 0;
    color: #d0d0d0;
    font-size: 17px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.tip {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    padding: 25px;
}

.tip h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.tip ul {
    list-style: none;
}

.tip ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #d0d0d0;
    font-size: 15px;
}

.tip ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* ===== FAQ SECTION ===== */

.faq-section {
    background: #161616;
    padding: 80px 0;
}

.faq-list {
    margin-bottom: 50px;
}

.faq-item {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 25px;
}

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

.faq-item p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 12px;
    line-height: 1.7;
}

.faq-item ul,
.faq-item ol {
    margin: 15px 0 15px 25px;
}

.faq-item li {
    padding: 8px 0;
    color: #d0d0d0;
    font-size: 16px;
}

/* ===== SUMMARY SECTION ===== */

.summary-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.summary-intro {
    text-align: center;
    margin-bottom: 50px;
}

.summary-intro p {
    font-size: 20px;
    color: #d0d0d0;
}

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

.summary-card {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
}

.summary-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.summary-card ul {
    list-style: none;
}

.summary-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #d0d0d0;
    font-size: 16px;
}

.summary-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.easy-start {
    margin: 60px 0;
}

.easy-start h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
    text-align: center;
}

.easy-start p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 20px;
    text-align: center;
}

.easy-steps {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    padding: 30px 40px;
    margin: 30px auto;
    max-width: 800px;
}

.easy-steps li {
    padding: 15px 0;
    color: #d0d0d0;
    font-size: 18px;
}

.contact-info,
.additional-info {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.contact-info h3,
.additional-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 20px;
    text-align: center;
}

.brand-name {
    text-align: center;
    font-size: 20px;
    color: #f7931e;
    margin-bottom: 25px;
}

.contact-details p {
    font-size: 18px;
    color: #d0d0d0;
    margin: 12px 0;
    text-align: center;
}

.service-hours {
    text-align: center;
    font-size: 16px;
    color: #ff6b35;
    margin-top: 20px;
}

.additional-info p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.7;
}

.additional-info a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.additional-info a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.content-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #2d2d2d;
}

.content-footer p {
    font-size: 16px;
    color: #909090;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .hero-section .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .features-grid,
    .payout-features-grid,
    .advantages-grid,
    .trust-indicators-grid {
        grid-template-columns: 1fr;
    }

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

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

    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .content-container {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    .lottery-digit {
        font-size: 36px;
        width: 60px;
        height: 60px;
    }

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

    .number-btn {
        font-size: 20px;
        padding: 12px;
    }

    .selected-display {
        font-size: 24px;
        letter-spacing: 8px;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
    }

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

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

    .lottery-numbers {
        gap: 10px;
    }

    .lottery-digit {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }

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

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

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

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 500px;
    }
}

/* ===== SITE FOOTER ===== */

.site-footer {
    background-color: #0d0d0d;
    border-top: 1px solid #2d2d2d;
    padding: 30px 0;
    margin-top: 80px;
}

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

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

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

/* ===== STICKY BUTTONS ===== */

.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid #2d2d2d;
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    max-width: 400px;
}

.sticky-btn:not(:last-child) {
    margin-right: 10px;
}

.sticky-btn-login {
    background: #2d2d2d;
    color: #ffffff;
    border: 2px solid #444;
}

.sticky-btn-login:hover {
    background: #3d3d3d;
    border-color: #555;
    transform: translateY(-2px);
}

.sticky-btn-register {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.sticky-btn-bonus {
    background: linear-gradient(45deg, #f7931e, #ffb347);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.sticky-btn-bonus:hover {
    background: linear-gradient(45deg, #e08419, #f7a730);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

/* Ensure content doesn't hide behind sticky buttons */
body {
    padding-bottom: 80px;
}

/* ===== RESPONSIVE STICKY BUTTONS & FOOTER ===== */

@media (max-width: 768px) {
    .footer-nav {
        gap: 25px;
    }

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

    .sticky-buttons {
        padding: 10px 15px;
    }

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

    .sticky-btn:not(:last-child) {
        margin-right: 8px;
    }

    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 0;
    }

    .footer-nav {
        gap: 20px;
    }

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

    .sticky-buttons {
        padding: 10px 10px;
    }

    .sticky-btn {
        padding: 12px 10px;
        font-size: 13px;
        border-radius: 6px;
    }

    .sticky-btn:not(:last-child) {
        margin-right: 6px;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ===== LOGIN PAGE STYLES ===== */

.login-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    min-height: calc(100vh - 70px - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.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: 32px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.login-form {
    width: 100%;
    background: #1a1a1a;
    border: 2px solid #2d2d2d;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #d0d0d0;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-label i {
    margin-right: 8px;
    color: #ff6b35;
}

.form-input {
    width: 100%;
    background: #0d0d0d;
    color: #ffffff;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 15px 20px;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.btn-login,
.btn-register {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-login {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-login:hover {
    background: linear-gradient(45deg, #e55a2e, #e08419);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-register {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-register:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #f7931e;
    transform: translateY(-2px);
}

/* ===== LOGIN PAGE RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .login-section {
        min-height: calc(100vh - 60px - 75px);
        padding: 40px 0;
    }

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

    .login-form {
        padding: 30px;
    }

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

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

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

@media (max-width: 480px) {
    .login-section {
        min-height: calc(100vh - 60px - 70px);
        padding: 30px 0;
    }

    .login-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .login-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .login-form {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

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

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

    .form-actions {
        margin-top: 30px;
        gap: 12px;
    }

    .btn-login,
    .btn-register {
        padding: 13px 24px;
        font-size: 14px;
        border-radius: 10px;
    }
}
/* ===== PROMOTION PAGE STYLES ===== */

/* Promo Hero Section */
.promo-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0 60px 0;
}

.promo-hero-section h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 25px;
    line-height: 1.4;
}

.promo-hero-section p {
    font-size: 18px;
    color: #d0d0d0;
    line-height: 1.8;
}

/* Promo Article Layouts */
.promo-article,
.promo-article-single {
    margin-bottom: 40px;
}

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

.promo-article h3,
.promo-article-single h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f7931e;
    margin: 30px 0 15px 0;
}

.promo-article h4,
.promo-article-single h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f7931e;
    margin: 25px 0 12px 0;
}

.promo-article p,
.promo-article-single p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Section Background Colors */
.promo-new-member-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-daily-section {
    background: #161616;
    padding: 80px 0;
}

.promo-cashback-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-referral-section {
    background: #161616;
    padding: 80px 0;
}

.promo-vip-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-government-lottery-section {
    background: #161616;
    padding: 80px 0;
}

.promo-yeekee-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-foreign-lottery-section {
    background: #161616;
    padding: 80px 0;
}

.promo-truewallet-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-freecredit-section {
    background: #161616;
    padding: 80px 0;
}

.promo-formula-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-laolottery-section {
    background: #161616;
    padding: 80px 0;
}

.promo-hanoi1000-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-mindeposit-section {
    background: #161616;
    padding: 80px 0;
}

.promo-terms-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-howto-section {
    background: #161616;
    padding: 80px 0;
}

.promo-whychoose-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-comparison-section {
    background: #161616;
    padding: 80px 0;
}

.promo-faq-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.promo-contact-section {
    background: #161616;
    padding: 80px 0;
}

.promo-summary-section {
    background: #0d0d0d;
    padding: 80px 0;
}

/* Grid Layouts */
.promo-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.promo-detail-card {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
}

.promo-content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.promo-content-column h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.promo-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.promo-column-left,
.promo-column-right {
    padding: 0;
}

.promo-steps-card {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
}

/* Lists */
.promo-features-list {
    list-style: none;
    margin: 20px 0;
}

.promo-features-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #d0d0d0;
}

.promo-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 20px;
}

.promo-steps-list {
    margin: 20px 0;
    padding-left: 25px;
    color: #d0d0d0;
}

.promo-steps-list li {
    padding: 10px 0;
    font-size: 17px;
}

.promo-calculation-list,
.promo-trust-list,
.promo-conditions-list,
.promo-system-list,
.promo-withdrawal-list,
.promo-cancellation-list,
.promo-suitable-list {
    list-style: none;
    margin: 20px 0;
}

.promo-calculation-list li,
.promo-trust-list li,
.promo-conditions-list li,
.promo-system-list li,
.promo-withdrawal-list li,
.promo-cancellation-list li,
.promo-suitable-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #d0d0d0;
}

.promo-calculation-list li:before,
.promo-trust-list li:before,
.promo-conditions-list li:before,
.promo-system-list li:before,
.promo-withdrawal-list li:before,
.promo-cancellation-list li:before,
.promo-suitable-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* Highlight Boxes */
.promo-highlight-box,
.promo-truewallet-box,
.promo-mindeposit-box,
.promo-mong3-highlight {
    background: #161616;
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 35px;
    margin-top: 30px;
}

.promo-cta-center {
    text-align: center;
    margin: 30px 0;
}

/* VIP Section */
.promo-vip-benefits {
    margin: 30px 0;
}

.promo-vip-tiers {
    margin: 40px 0;
}

.promo-vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.promo-vip-tier {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.promo-vip-tier:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.promo-vip-tier h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 12px;
}

.promo-vip-tier p {
    font-size: 15px;
    color: #d0d0d0;
}

/* Foreign Lottery Grid */
.promo-foreign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.promo-foreign-card {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 30px;
}

.promo-foreign-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ff6b35;
    margin-bottom: 20px;
}

/* Layout Flex */
.promo-layout-flex {
    display: flex;
    gap: 40px;
}

.promo-flex-main {
    flex: 2;
}

.promo-flex-sidebar {
    flex: 1;
}

.promo-special-time-box {
    background: #161616;
    border: 2px solid #f7931e;
    border-radius: 15px;
    padding: 30px;
}

/* Grid 2 Layout */
.promo-layout-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.promo-grid-item h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.promo-birthday-card {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

/* Formula Section */
.promo-formula-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.promo-formula-box,
.promo-formula-system {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 30px;
}

.promo-disclaimer {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    border-radius: 5px;
    font-size: 15px;
    color: #b0b0b0;
}

/* Hanoi Layout */
.promo-hanoi-layout {
    display: flex;
    gap: 40px;
}

.promo-hanoi-main {
    flex: 2;
}

.promo-hanoi-sidebar {
    flex: 1;
}

.promo-hanoi-schedule {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 30px;
}

.promo-schedule-list,
.promo-time-special-list {
    list-style: none;
    margin: 15px 0;
}

.promo-schedule-list li,
.promo-time-special-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #d0d0d0;
}

/* Terms Section */
.promo-terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.promo-terms-card {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
}

.promo-terms-list {
    margin: 20px 0;
    padding-left: 25px;
}

.promo-terms-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #d0d0d0;
}

/* How To Section */
.promo-howto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.promo-step {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
}

.promo-step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.promo-step h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    color: #ff6b35;
    margin: 20px 0 15px 0;
}

.promo-step p {
    font-size: 16px;
    color: #d0d0d0;
    margin: 15px 0 10px 0;
}

.promo-signup-channels,
.promo-signup-info,
.promo-deposit-channels,
.promo-receive-list {
    list-style: none;
    margin: 12px 0;
}

.promo-signup-channels li,
.promo-signup-info li,
.promo-deposit-channels li,
.promo-receive-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #d0d0d0;
}

.promo-signup-channels li:before,
.promo-signup-info li:before,
.promo-deposit-channels li:before,
.promo-receive-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* Why Choose Section */
.promo-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.promo-reason-card {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
}

.promo-reason-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.promo-reason-card h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.promo-lottery-types {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.promo-lottery-types li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #d0d0d0;
}

.promo-lottery-types li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
}

/* Comparison Table */
.promo-comparison-table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
}

.promo-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #161616;
    border-radius: 10px;
    overflow: hidden;
}

.promo-comparison-table th,
.promo-comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #2d2d2d;
}

.promo-comparison-table th {
    background: #2d2d2d;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.promo-comparison-table td {
    color: #d0d0d0;
    font-size: 15px;
}

.promo-comparison-table tr:last-child td {
    border-bottom: none;
}

.promo-comparison-table td:first-child {
    font-weight: 700;
    color: #f7931e;
}

.promo-comparison-table td:nth-child(2) {
    color: #4ade80;
    font-weight: 600;
}

/* FAQ Section */
.promo-faq-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 50px;
}

.promo-faq-list {
    margin: 0;
}

.promo-faq-item {
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 25px;
}

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

.promo-faq-item p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.promo-faq-item ul {
    margin: 15px 0 15px 25px;
    list-style-position: inside;
}

.promo-faq-item li {
    padding: 8px 0;
    font-size: 16px;
    color: #d0d0d0;
}

/* Contact Section */
.promo-contact-box {
    background: #0d0d0d;
    border: 2px solid #2d2d2d;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.promo-contact-box h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 35px;
}

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

.promo-contact-item {
    text-align: center;
    background: #161616;
    border: 2px solid #2d2d2d;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.promo-contact-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.promo-contact-item i {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.promo-contact-item h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    color: #f7931e;
    margin: 15px 0 10px 0;
}

.promo-contact-item p {
    font-size: 16px;
    color: #d0d0d0;
    margin: 8px 0;
}

.promo-contact-badge {
    display: inline-block;
    font-size: 13px;
    color: #909090;
    margin-top: 8px;
}

.promo-support-text {
    text-align: center;
    font-size: 16px;
    color: #d0d0d0;
    font-style: italic;
}

/* Summary Section */
.promo-summary-benefits {
    margin: 30px 0;
}

.promo-benefits-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.promo-benefits-checklist li {
    font-size: 18px;
    color: #d0d0d0;
    padding: 15px 20px;
    background: #161616;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
}

.promo-trust-statement {
    font-size: 19px;
    color: #4ade80;
    text-align: center;
    margin: 40px 0;
    padding: 25px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 12px;
}

.promo-cta-text {
    font-size: 20px;
    color: #ff6b35;
    text-align: center;
    margin: 30px 0;
}

.promo-final-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #2d2d2d;
    text-align: center;
}

.promo-final-info p {
    font-size: 16px;
    color: #d0d0d0;
    margin: 15px 0;
    line-height: 1.7;
}

.promo-disclaimer {
    font-size: 14px;
    color: #909090;
}

.promo-related-site {
    margin-top: 20px;
}

.promo-related-site a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.promo-related-site a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-details-grid,
    .promo-content-columns,
    .promo-two-column-layout,
    .promo-formula-content,
    .promo-terms-grid,
    .promo-layout-grid-2 {
        grid-template-columns: 1fr;
    }

    .promo-vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .promo-layout-flex,
    .promo-hanoi-layout {
        flex-direction: column;
    }

    .promo-howto-steps,
    .promo-reasons-grid {
        grid-template-columns: 1fr;
    }

    .promo-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .promo-hero-section h1 {
        font-size: 30px;
    }

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

    .promo-article h2,
    .promo-article-single h2 {
        font-size: 26px;
    }

    .promo-article h3,
    .promo-article-single h3 {
        font-size: 22px;
    }

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

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

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

    .promo-comparison-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .promo-hero-section {
        padding: 60px 0 40px 0;
    }

    .promo-hero-section h1 {
        font-size: 24px;
    }

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

    .promo-article h2,
    .promo-article-single h2 {
        font-size: 22px;
    }

    .promo-article h3,
    .promo-article-single h3 {
        font-size: 20px;
    }

    .promo-detail-card,
    .promo-steps-card,
    .promo-highlight-box,
    .promo-truewallet-box,
    .promo-mindeposit-box,
    .promo-mong3-highlight,
    .promo-contact-box {
        padding: 25px 20px;
    }

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

    .promo-faq-section h2 {
        font-size: 28px;
    }
}

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

.privacy-policy-section {
    background: #0d0d0d;
    min-height: calc(100vh - 70px);
    padding: 60px 0;
}

.privacy-policy-section .content-container {
    display: flex;
    flex-direction: column;
}

.privacy-policy-section article h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
    line-height: 1.3;
}

.privacy-policy-section article h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin: 50px 0 25px 0;
    line-height: 1.4;
}

.privacy-policy-section article h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #f7931e;
    margin: 35px 0 20px 0;
}

.privacy-policy-section article p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-policy-section article ul,
.privacy-policy-section article ol {
    margin: 20px 0 20px 30px;
    color: #d0d0d0;
}

.privacy-policy-section article li {
    font-size: 17px;
    line-height: 1.7;
    padding: 8px 0;
}

.privacy-policy-section article hr {
    border: none;
    border-top: 2px solid #2d2d2d;
    margin: 50px 0;
}

.privacy-policy-section article strong {
    color: #ffffff;
    font-weight: 700;
}

.privacy-policy-section article em {
    color: #b0b0b0;
    font-style: italic;
}

.privacy-policy-section article a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-section article a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.privacy-policy-section article table {
    width: 100%;
    border-collapse: collapse;
    background: #161616;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

.privacy-policy-section article table th,
.privacy-policy-section article table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #2d2d2d;
}

.privacy-policy-section article table th {
    background: #2d2d2d;
    color: #ff6b35;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.privacy-policy-section article table td {
    color: #d0d0d0;
    font-size: 15px;
}

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

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

    .privacy-policy-section article h1 {
        font-size: 28px;
    }

    .privacy-policy-section article h2 {
        font-size: 24px;
        margin: 40px 0 20px 0;
    }

    .privacy-policy-section article h3 {
        font-size: 20px;
        margin: 30px 0 15px 0;
    }

    .content-container article p,
    .privacy-policy-section article li {
        font-size: 16px;
    }

    .privacy-policy-section article table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .content-container article table th,
    .privacy-policy-section article table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

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

    .privacy-policy-section article h1 {
        font-size: 24px;
    }

    .privacy-policy-section article h2 {
        font-size: 22px;
    }

    .privacy-policy-section article h3 {
        font-size: 18px;
    }

    .content-container article p,
    .privacy-policy-section article li {
        font-size: 15px;
    }

    .privacy-policy-section article ul,
    .privacy-policy-section article ol {
        margin-left: 20px;
    }

    .privacy-policy-section article hr {
        margin: 35px 0;
    }

    .content-container article table th,
    .privacy-policy-section article table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}
