/* Header Styles */
.header {
    background-color: #0a0a0a;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

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

.header-nav {
    display: none;
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

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

.nav-cta-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid #333;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.mobile-menu-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

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

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

.mobile-nav-link:hover {
    background-color: #1a1a1a;
    color: #ffd700;
}

.mobile-nav-cta-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

    .mobile-menu {
        display: none;
    }
}

/* Body padding to account for fixed header */
body {
    background-color: #0a0a0a;
    color: #ffffff;
    margin: 0;
    padding: 70px 0 0 0;
    font-family: 'Sarabun', sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
    .header-container {
        padding: 0 1rem;
    }

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

@media (min-width: 1024px) {
    .nav-list {
        gap: 2.5rem;
    }

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.hero-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Why Section */
.why-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.why-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
}

.why-section > .content-container > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
    text-align: center;
}

.feature-article {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-article:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.feature-article h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffed4e;
}

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

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

.feature-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.feature-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.feature-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.feature-image {
    width: 100%;
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
}

.games-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
}

.games-section > .content-container > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.game-card:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.game-card h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #ffed4e;
}

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

.game-card a {
    color: #ffd700;
    text-decoration: underline;
}

.game-card a:hover {
    color: #ffed4e;
}

.game-features, .game-tips, .game-types, .game-providers, .game-selection {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.game-features li, .game-tips li, .game-types li, .game-providers li, .game-selection li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.game-features li::before, .game-providers li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.game-tips li::before, .game-selection li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

.game-types li::before {
    content: '🎮';
    position: absolute;
    left: 0;
}

.game-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.game-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.games-image {
    width: 100%;
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slot Demo Section */
.demo-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.demo-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #ffd700;
    text-align: center;
}

.slot-demo {
    max-width: 600px;
    margin: 0 auto;
}

.slot-machine {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.slot-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #0a0a0a;
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 2px solid #333;
}

.reel {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.reel .symbol {
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    0% { transform: rotateX(0deg); opacity: 1; }
    50% { transform: rotateX(90deg); opacity: 0; }
    100% { transform: rotateX(0deg); opacity: 1; }
}

.slot-controls {
    text-align: center;
}

.balance-display {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.spin-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.spin-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

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

.win-display {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 700;
    min-height: 2rem;
}

.demo-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
}

.payment-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
}

.payment-section > .content-container > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.payment-method {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.payment-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.payment-method h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #ffed4e;
}

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

.payment-steps, .payment-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    counter-reset: step-counter;
}

.payment-steps li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 2rem;
    position: relative;
    counter-increment: step-counter;
}

.payment-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.payment-benefits li, .payment-channels li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.payment-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.payment-channels li::before {
    content: '💳';
    position: absolute;
    left: 0;
}

.payment-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.payment-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.payment-image {
    width: 100%;
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.payment-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Promotions Section */
.promotions-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.promotions-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
}

.promotions-section > .content-container > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.promo-card h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #ffed4e;
}

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

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

.promo-details li, .promo-list li, .vip-tiers li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.promo-details li::before {
    content: '🎁';
    position: absolute;
    left: 0;
}

.promo-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.vip-tiers li::before {
    content: '👑';
    position: absolute;
    left: 0;
}

.promo-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.promo-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.promotions-image {
    width: 100%;
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promotions-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
}

.reviews-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
}

.reviews-section > .content-container > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-section h3 {
    font-size: 1.5rem;
    margin: 3rem 0 2rem;
    color: #ffd700;
    text-align: center;
}

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

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

.review-card:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-header h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin: 0;
}

.review-stars {
    font-size: 1rem;
    color: #ffd700;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-style: italic;
}

.review-summary, .security-guarantee {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.review-summary h3, .security-guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: left;
}

.review-summary p, .security-guarantee p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.summary-list, .guarantee-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    counter-reset: list-counter;
}

.summary-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 2rem;
    position: relative;
    counter-increment: list-counter;
}

.summary-list li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.guarantee-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.guarantee-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.review-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.review-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.reviews-image {
    width: 100%;
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.reviews-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.faq-section h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #ffd700;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.faq-item ol, .faq-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-item ol li, .faq-item ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin: 3rem 0 1.5rem;
    color: #ffd700;
}

.cta-section > .content-container > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits, .cta-steps {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 700px;
    text-align: left;
}

.cta-benefits li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.cta-steps {
    counter-reset: step-counter;
}

.cta-steps li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 2.5rem;
    position: relative;
    counter-increment: step-counter;
}

.cta-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta-urgent {
    font-size: 1.2rem;
    color: #ffd700;
    margin: 2rem 0;
    font-weight: 700;
}

.cta-main-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    margin: 2rem 0;
}

.cta-main-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.cta-contact {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
}

.cta-contact h3 {
    margin-top: 0;
}

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

.contact-list li {
    font-size: 1rem;
    line-height: 2;
    color: #e0e0e0;
}

.cta-brand {
    font-size: 1.3rem;
    color: #ffd700;
    margin: 2rem 0;
}

.cta-disclaimer {
    font-size: 0.9rem;
    color: #999;
    margin: 2rem 0;
    font-style: italic;
}

.cta-image {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-top: 1px solid #333;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
}

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

.sticky-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #333, #444);
    color: #ffffff;
    border: 1px solid #555;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #444, #555);
    border-color: #666;
}

.sticky-btn-register {
    background: linear-gradient(135deg, #1a5f7a, #2980b9);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(41, 128, 185, 0.3);
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(41, 128, 185, 0.4);
}

.sticky-btn-credit {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.sticky-btn-credit:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
}

@media (min-width: 480px) {
    .sticky-btn {
        font-size: 14px;
        padding: 0.875rem 1rem;
    }
}

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

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

@media (min-width: 1024px) {
    .sticky-buttons {
        padding: 1rem 2rem;
    }

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

/* Login Page Styles */
.login-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
    min-height: calc(100vh - 70px - 80px);
    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) 0%, transparent 50%);
    pointer-events: none;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.login-container h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #ffd700;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

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

.form-group label {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

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

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

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 1rem;
}

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

.btn-register {
    display: block;
    width: 100%;
    background: transparent;
    color: #ffd700;
    padding: 1rem;
    border: 2px solid #ffd700;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

@media (min-width: 768px) {
    .login-container h1 {
        font-size: 2rem;
    }

    .login-form {
        padding: 2.5rem;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

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

    .review-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Promotion Page Styles */
.promo-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.promo-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.15) 0%, transparent 60%);
    pointer-events: none;
}

.promo-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promo-hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.promo-hero-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    margin-top: 1rem;
}

.promo-hero-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.promo-welcome-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.promo-free-credit-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
}

.promo-daily-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.promo-cashback-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
}

.promo-vip-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.promo-faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
}

.promo-summary-section {
    background: #0f0f0f;
    padding: 4rem 0;
    text-align: center;
}

.promo-article {
    max-width: 1000px;
    margin: 0 auto;
}

.promo-article h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-align: center;
}

.promo-article h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2.5rem 0 1.5rem;
    color: #ffd700;
}

.promo-article h4 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: #ffed4e;
}

.promo-article h5 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 1.5rem 0 1rem;
    color: #ffd700;
}

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

.promo-example-list,
.promo-terms-list,
.promo-steps-list,
.promo-calculation-list,
.promo-benefits-list,
.promo-highlights-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.promo-example-list li,
.promo-calculation-list li,
.promo-benefits-list li,
.promo-highlights-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 1.8rem;
    position: relative;
}

.promo-example-list li::before,
.promo-calculation-list li::before,
.promo-benefits-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.promo-highlights-list li {
    padding-left: 0;
}

.promo-terms-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 1.8rem;
    position: relative;
}

.promo-terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

.promo-steps-list {
    counter-reset: promo-counter;
}

.promo-steps-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #e0e0e0;
    padding-left: 2.5rem;
    position: relative;
    counter-increment: promo-counter;
}

.promo-steps-list li::before {
    content: counter(promo-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Prompt', sans-serif;
}

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

.promo-credit-type {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.promo-credit-type:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.promo-credit-type h5 {
    margin-top: 0;
}

.promo-credit-type ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
}

.promo-credit-type ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.promo-credit-type ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
}

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

.promo-daily-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.promo-daily-card h5 {
    margin-top: 0;
    font-size: 1.1rem;
}

.promo-daily-card ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
}

.promo-daily-card ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.7rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.promo-daily-card ul li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

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

.promo-cashback-tier {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.promo-cashback-tier:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.promo-cashback-tier h5 {
    margin-top: 0;
}

.promo-cashback-tier ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
}

.promo-cashback-tier ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.7rem;
    color: #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.promo-cashback-tier ul li::before {
    content: '💰';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.promo-vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.promo-vip-tier {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.promo-vip-tier:hover {
    border-color: #ffd700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.promo-vip-tier h4 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.promo-vip-tier ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 0;
}

.promo-vip-tier ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
    padding-left: 1.8rem;
    position: relative;
}

.promo-vip-tier ul li::before {
    content: '👑';
    position: absolute;
    left: 0;
}

.promo-section-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    margin: 2rem 0 0;
}

.promo-section-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.promo-faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #ffd700;
    text-align: center;
}

.promo-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.promo-faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.promo-faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.promo-faq-item h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    color: #ffd700;
    text-align: left;
}

.promo-faq-item p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    color: #e0e0e0;
}

.promo-summary-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.promo-summary-section h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    color: #ffd700;
}

.promo-summary-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-main-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    margin: 2rem 0;
}

.promo-main-cta-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.promo-contact-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem auto;
    max-width: 600px;
}

.promo-contact-box h3 {
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
    color: #ffd700;
    text-align: center;
}

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

.promo-contact-list li {
    font-size: 1rem;
    line-height: 2;
    color: #e0e0e0;
    text-align: center;
}

.promo-brand-text {
    font-size: 1.1rem;
    color: #ffd700;
    margin: 2rem auto 0;
    max-width: 800px;
}

@media (min-width: 768px) {
    .promo-hero-content h1 {
        font-size: 2.2rem;
    }

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

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

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

@media (min-width: 1024px) {
    .promo-hero-content h1 {
        font-size: 2.5rem;
    }

    .promo-credit-types {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

/* Privacy Policy Page Styles */
.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.privacy-policy-container h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-align: center;
}

.privacy-policy-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.privacy-policy-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1.5rem 0 0.75rem 0;
}

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

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

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

.privacy-policy-container li {
    margin-bottom: 0.5rem;
}

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

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

.privacy-policy-container em {
    color: #9ca3af;
    font-style: italic;
}

@media (min-width: 768px) {
    .privacy-policy-container {
        padding: 7rem 2rem 4rem;
    }

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

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

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

@media (min-width: 1024px) {
    .privacy-policy-container {
        padding: 8rem 3rem 4rem;
    }

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

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

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