/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header Styles */
.main-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333333;
    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;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

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

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

.logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
}

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

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

.nav-item {
    position: relative;
}

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

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

.nav-link.active {
    color: #ffd700;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button: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: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

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

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
    animation: slideDown 0.3s ease;
}

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

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-nav-item {
    margin-bottom: 12px;
}

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

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

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

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

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

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

/* Tablet and Desktop Breakpoints */
@media screen and (min-width: 768px) {
    .header-container {
        padding: 0 40px;
        height: 80px;
    }

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

    .logo-text {
        font-size: 26px;
    }

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

    .desktop-nav {
        display: block;
    }
}

@media screen and (min-width: 1024px) {
    .nav-menu {
        gap: 40px;
    }

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

    .cta-button {
        font-size: 18px;
        padding: 14px 28px;
    }
}

@media screen and (min-width: 1280px) {
    .header-container {
        padding: 0 20px;
    }
}

/* Focus States for Accessibility */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

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

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

/* Section Titles */
.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.hero-cta-primary {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

.hero-cta-secondary {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta-secondary:hover {
    background-color: #ffd700;
    color: #000000;
}

.hero-image {
    text-align: center;
}

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

/* Demo Section */
.demo-section {
    background-color: #111111;
    padding: 80px 0;
}

.demo-game-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.demo-game {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    max-width: 500px;
    width: 100%;
}

.slot-machine {
    background-color: #0a0a0a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #333333;
}

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

.slot-balance {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.slot-balance span {
    color: #ffd700;
    font-weight: 600;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.reel {
    background-color: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 8px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.reel.spinning {
    animation: spin 1s ease-in-out;
}

.symbol {
    font-size: 48px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.slot-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.bet-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bet-section label {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #cccccc;
}

.bet-select {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #ffd700;
    border-radius: 6px;
    padding: 8px 12px;
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
}

.spin-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.win-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #cccccc;
}

.win-display span {
    color: #ffd700;
    font-weight: 600;
}

.demo-info {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
}

.demo-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 16px;
    text-align: center;
}

.game-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333333;
}

.stat:last-child {
    border-bottom: none;
}

.stat-label {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #cccccc;
}

.stat-value {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffd700;
}

/* Features Section */
.features-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

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

.feature-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

.game-list h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.popular-games {
    list-style: none;
    padding: 0;
}

.popular-games li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    padding: 12px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.feature-image {
    margin-top: 24px;
    text-align: center;
}

.feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Technology Section */
.technology-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.tech-feature {
    margin-bottom: 32px;
}

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

.tech-feature-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tech-features-list h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.features-list {
    padding-left: 20px;
}

.features-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.6;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.device-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.device-screen {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.device span {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #cccccc;
    font-weight: 600;
}

/* Security Section */
.security-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

.security-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

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

.security-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

.security-features h4,
.payment-methods h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.security-list,
.payment-list {
    list-style: none;
    padding: 0;
}

.security-list li,
.payment-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    padding: 12px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.security-image {
    margin-top: 24px;
    text-align: center;
}

.security-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Bonus Section */
.bonus-section {
    background-color: #111111;
    padding: 80px 0;
}

.bonus-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.bonus-content {
    text-align: center;
}

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

.bonus-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 32px;
}

.bonus-cta {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

.bonus-image {
    text-align: center;
}

.bonus-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.promotion-card,
.vip-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

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

.promotion-intro,
.vip-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

.promotion-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.promo-category h5,
.vip-level h5,
.vip-perks h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 12px;
}

.promo-list,
.vip-benefits,
.vip-perks-list {
    list-style: none;
    padding: 0;
}

.promo-list li,
.vip-benefits li,
.vip-perks-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    padding: 12px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.vip-levels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Advanced Features Section */
.advanced-features-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

.advanced-feature {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

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

.advanced-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ai-features h4,
.social-features h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.ai-list,
.social-list {
    list-style: none;
    padding: 0;
}

.ai-list li,
.social-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    padding: 12px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.social-image {
    margin-top: 24px;
    text-align: center;
}

.social-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Support Section */
.support-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.support-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: center;
}

.contact-methods h3,
.support-schedule h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.contact-list,
.schedule-list {
    list-style: none;
    padding: 0;
}

.contact-list li,
.schedule-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    padding: 12px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

/* FAQ Section */
.faq-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

.faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 12px;
}

.faq-answer {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-bottom: 40px;
}

.faq-cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

.mobile-compatibility {
    text-align: center;
}

.mobile-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.responsible-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

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

.responsible-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

.guidelines h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.guidelines-list {
    padding-left: 20px;
}

.guidelines-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 80px 0;
}

.final-cta-content {
    text-align: center;
    margin-bottom: 40px;
}

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

.final-description,
.final-sub-description {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

.steps-section {
    margin: 32px 0;
}

.steps-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.steps-list {
    text-align: left;
    display: inline-block;
    padding-left: 20px;
}

.steps-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.6;
}

.final-cta-buttons {
    margin: 32px 0;
}

.final-cta-primary {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

.partner-info {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    margin-top: 24px;
}

.partner-info a {
    color: #ffd700;
    text-decoration: none;
}

.partner-info a:hover {
    text-decoration: underline;
}

.final-image {
    text-align: center;
}

.final-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Contact Footer Section */
.contact-footer-section {
    background-color: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid #333333;
}

.contact-footer-content {
    text-align: center;
}

.brand-tagline {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
}

.contact-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

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

.contact-details li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

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

    .hero-content {
        text-align: left;
    }

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

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

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

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

    .tech-grid {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }

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

    .bonus-hero {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .bonus-content {
        text-align: left;
    }

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

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

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

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

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

    .contact-details {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

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

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

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

    .device-showcase {
        gap: 48px;
    }

    .promotion-categories {
        flex-direction: row;
    }

    .vip-levels {
        flex-direction: row;
    }

    .final-title {
        font-size: 42px;
    }
}

@media screen and (min-width: 1280px) {
    .container {
        padding: 0 20px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
    padding: 40px 0;
    margin-bottom: 80px; /* Space for sticky buttons */
}

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

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

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

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

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.sticky-btn {
    font-family: 'Prompt', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-login {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #ffd700;
}

.sticky-login:hover {
    background-color: #ffd700;
    color: #000000;
}

.sticky-register {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #666666;
}

.sticky-register:hover {
    background-color: #555555;
    border-color: #ffd700;
}

.sticky-credit {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border: 1px solid #ffd700;
}

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

.sticky-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Footer Responsive Design */
@media screen and (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        gap: 32px;
    }

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

    .sticky-container {
        padding: 16px 40px;
        gap: 12px;
    }

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

@media screen and (min-width: 1024px) {
    .footer-links {
        gap: 48px;
    }

    .sticky-container {
        gap: 16px;
    }
}

@media screen and (min-width: 1280px) {
    .footer-container {
        padding: 0 20px;
    }

    .sticky-container {
        padding: 16px 20px;
    }
}

/* Login Page Styles */
.login-section {
    min-height: calc(100vh - 140px);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.login-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 16px;
}

.login-form {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.form-label {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

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

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

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

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.login-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

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

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

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

.register-btn:hover {
    background-color: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Login Page Responsive Design */
@media screen and (min-width: 768px) {
    .login-section {
        padding: 60px 20px;
    }

    .login-title {
        font-size: 36px;
    }

    .login-form {
        padding: 40px;
    }

    .form-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .login-btn,
    .register-btn {
        flex: 1;
    }
}

@media screen and (min-width: 1024px) {
    .login-container {
        max-width: 600px;
    }

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

    .login-form {
        padding: 48px;
    }
}

/* Register Page Styles */
.register-section {
    min-height: calc(100vh - 140px);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.register-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 16px;
}

.register-form {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.register-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    border-radius: 12px;
    color: #000000;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

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

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

.login-link-btn {
    width: 100%;
    padding: 16px 20px;
    background-color: transparent;
    border: 2px solid #ffd700;
    border-radius: 12px;
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.login-link-btn:hover {
    background-color: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Register Page Responsive Design */
@media screen and (min-width: 768px) {
    .register-section {
        padding: 60px 20px;
    }

    .register-title {
        font-size: 36px;
    }

    .register-form {
        padding: 40px;
    }

    .form-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .register-btn,
    .login-link-btn {
        flex: 1;
    }
}

@media screen and (min-width: 1024px) {
    .register-container {
        max-width: 600px;
    }

    .register-title {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .register-form {
        padding: 48px;
    }
}

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

/* Promotion Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.promotion-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.promotion-hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promotion-hero-subtitle h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.promotion-hero-subtitle p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.promotion-highlights {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.promotion-highlights h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 24px;
    text-align: center;
}

.promotion-highlights-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.promotion-highlights-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 16px 20px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.promotion-highlights-list li:hover {
    background-color: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.promotion-cta {
    margin-top: 40px;
}

.promotion-cta-button {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.promotion-cta-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Osaka Slot Section */
.osaka-slot-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.osaka-slot-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
}

.osaka-slot-info h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.osaka-slot-info p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.osaka-slot-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin: 30px 0 20px;
}

.osaka-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.osaka-features-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 16px 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.osaka-slot-cta {
    text-align: center;
    margin-top: 40px;
}

.osaka-slot-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* PG Soft Section */
.pg-soft-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

.pg-soft-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
}

.pg-soft-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.pg-soft-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.pg-soft-content h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    margin: 40px 0 30px;
}

.daily-promotions {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    border: 1px solid #333333;
}

.daily-promotions h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 24px;
    text-align: center;
}

.daily-promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.daily-promo-item {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 16px 20px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.daily-promo-item:hover {
    background-color: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.pg-soft-cta {
    text-align: center;
    margin-top: 40px;
}

.pg-soft-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Why Choose Section */
.why-choose-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.why-choose-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.why-choose-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.why-choose-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
}

.why-choose-card ul {
    list-style: none;
    padding: 0;
}

.why-choose-card li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    position: relative;
    padding-left: 20px;
}

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

.why-choose-card li:last-child {
    border-bottom: none;
}

.why-choose-cta {
    text-align: center;
    margin-top: 40px;
}

.why-choose-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Osaka 888 Section */
.osaka-888-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

.osaka-888-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.osaka-888-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.osaka-888-container p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

.osaka-888-container h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin: 40px 0 30px;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.package-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.package-card.gold::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.package-card.silver::before {
    background: linear-gradient(90deg, #c0c0c0, #e5e5e5);
}

.package-card.bronze::before {
    background: linear-gradient(90deg, #cd7f32, #daa520);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.package-card h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 24px;
    text-align: center;
}

.package-card ul {
    list-style: none;
    padding: 0;
}

.package-card li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    position: relative;
    padding-left: 20px;
}

.package-card li:before {
    content: '★';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-card li:last-child {
    border-bottom: none;
}

.osaka-888-cta {
    text-align: center;
    margin-top: 40px;
}

.osaka-888-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Tips Section */
.tips-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.tips-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.tips-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.tip-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.tip-card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.tip-item {
    margin-bottom: 30px;
    padding: 24px;
    background-color: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
}

.tip-item h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 16px;
}

.tip-item ul {
    list-style: none;
    padding: 0;
}

.tip-item li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.tip-item li:before {
    content: '•';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tips-cta {
    text-align: center;
    margin-top: 40px;
}

.tips-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Welcome Bonus Section */
.welcome-bonus-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

.welcome-bonus-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.welcome-bonus-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.welcome-steps h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.step-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    position: relative;
    padding-left: 24px;
}

.step-card li:before {
    content: '✓';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 12px;
}

.step-card li:last-child {
    border-bottom: none;
}

.welcome-bonus-cta {
    text-align: center;
    margin-top: 40px;
}

.welcome-bonus-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Mobile Gaming Section */
.mobile-gaming-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.mobile-gaming-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-gaming-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.mobile-gaming-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-features h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-content {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.mobile-exclusive h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    margin: 40px 0 20px;
    text-align: center;
}

.mobile-promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.mobile-promo-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 16px 20px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.mobile-promo-list li:hover {
    background-color: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.mobile-gaming-cta {
    text-align: center;
    margin-top: 40px;
}

.mobile-gaming-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Big Win Section */
.big-win-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

.big-win-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.big-win-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.winners-section h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.winners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.winner-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.winner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.winner-card h5 {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 16px;
}

.winner-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.winner-card li {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #cccccc;
    padding: 6px 0;
    border-bottom: 1px solid #333333;
}

.winner-card li:last-child {
    border-bottom: none;
}

.big-win-bonus h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffd700;
    margin: 40px 0 20px;
    text-align: center;
}

.big-win-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.big-win-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 16px 20px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.big-win-list li:hover {
    background-color: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.big-win-cta {
    text-align: center;
    margin-top: 40px;
}

.big-win-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Security Section (Reusing existing styles with customizations) */
.security-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.security-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.security-container h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.security-container p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.security-certifications,
.payment-security {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-info h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
}

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

.contact-list li {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    padding: 8px 0;
    margin-bottom: 8px;
}

.security-cta {
    text-align: center;
    margin-top: 40px;
}

.security-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* FAQ Section */
.faq-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

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

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.faq-item p {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-button {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

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

/* Summary Section */
.summary-section {
    background-color: #111111;
    padding: 80px 0;
}

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

.summary-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
}

.summary-container p {
    font-family: 'Sarabun', sans-serif;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    transform: translateX(5px);
}

.summary-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    flex-shrink: 0;
}

.summary-content {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.special-offer {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    border: 2px solid #ffd700;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.special-offer p {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.summary-cta {
    text-align: center;
    margin-top: 40px;
}

.summary-button {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.summary-button:hover::before {
    left: 100%;
}

.summary-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Footer Note Section */
.footer-note-section {
    background-color: #0a0a0a;
    padding: 60px 0 40px;
    border-top: 1px solid #333333;
}

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

.disclaimer,
.copyright,
.terms {
    margin-bottom: 20px;
}

.disclaimer p,
.copyright p,
.terms p {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

.related-link {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.related-link p {
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.related-link a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-link a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN FOR PROMOTION PAGE ===== */

/* Tablet Breakpoint */
@media screen and (min-width: 768px) {
    .promotion-hero-title {
        font-size: 42px;
    }

    .promotion-hero-subtitle h2 {
        font-size: 28px;
    }

    .promotion-highlights-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .mobile-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .winners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

/* Large Tablet/Small Desktop Breakpoint */
@media screen and (min-width: 1024px) {
    .promotion-hero {
        padding: 80px 0 100px;
    }

    .promotion-hero-title {
        font-size: 48px;
    }

    .promotion-hero-subtitle h2 {
        font-size: 32px;
    }

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

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

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

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

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

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

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

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

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

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

/* Desktop Breakpoint */
@media screen and (min-width: 1280px) {
    .promotion-hero-title {
        font-size: 52px;
    }

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

    .mobile-features-grid {
        grid-template-columns: repeat(5, 1fr);
    }

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

/* Privacy Policy Page Styles */
.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #0a0a0a;
}

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

.privacy-policy-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333333;
}

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

.privacy-policy-container p {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-policy-container ul {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 20px;
}

.privacy-policy-container li {
    margin-bottom: 8px;
}

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

.privacy-policy-container hr {
    border: none;
    height: 1px;
    background-color: #333333;
    margin: 32px 0;
}

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

/* Mobile Styles for Privacy Policy */
@media screen and (max-width: 768px) {
    .privacy-policy-container {
        padding: 20px 16px;
        gap: 20px;
    }

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

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

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

    .privacy-policy-container p,
    .privacy-policy-container ul {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .privacy-policy-container ul {
        padding-left: 16px;
    }

    .privacy-policy-container li {
        margin-bottom: 6px;
    }
}