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

.navbar {
    width: 100%;
}

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

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    margin: 0;
}

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

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

.nav-link:hover:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 1px;
}

/* CTA Button Styles */
.cta-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

.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 {
    display: none;
    background: #1a1a1a;
    border-top: 1px solid #333;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

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

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

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

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

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: #2a2a2a;
    border-left: 3px solid #ffd700;
    color: #ffd700;
}

.mobile-nav-btn {
    display: block;
    margin: 1rem 1.5rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
        padding: 0 0.75rem;
    }

    .logo-img {
        height: 30px;
    }

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

    .mobile-nav-btn {
        margin: 1rem;
        font-size: 13px;
        padding: 0.625rem 1.25rem;
    }
}

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

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

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

.section-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 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(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

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

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
}

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

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

.hero-btn.secondary:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

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

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #111111;
}

.about-content {
    text-align: center;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #d0d0d0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    color: #d0d0d0;
    line-height: 1.6;
}

.banking-list ul,
.contact-methods ol {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.banking-list li,
.contact-methods li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

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

.demo-game {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slot-machine {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
}

.slot-display {
    background: #000;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.reels {
    display: flex;
    gap: 10px;
    justify-content: center;
}

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

.symbol {
    font-size: 2rem;
    padding: 0.5rem 0;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.reel.spinning .symbol {
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 700;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bet-btn {
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-btn:hover {
    background: #ffed4e;
    transform: scale(1.1);
}

.bet-amount {
    color: #ffd700;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.spin-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spin-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #fff700);
    transform: translateY(-2px);
}

.spin-btn:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.demo-info {
    text-align: center;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* Promotion Section */
.promotion-section {
    padding: 4rem 0;
    background: #111111;
}

.promotion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.promotion-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.promotion-content p {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.promotion-details h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bonus-conditions,
.bonus-steps {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
}

.bonus-conditions h4,
.bonus-steps h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.bonus-conditions ul,
.bonus-steps ol {
    padding-left: 1.5rem;
}

.bonus-conditions li,
.bonus-steps li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

.other-promotions h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

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

.promo-card ul {
    padding-left: 1.5rem;
}

.promo-card li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

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

.experience-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.experience-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.experience-content p {
    color: #d0d0d0;
    line-height: 1.7;
}

.games-showcase h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-category {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.game-category h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.game-category ol,
.game-category ul {
    padding-left: 1.5rem;
}

.game-category li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

.game-system {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.game-system h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-system p {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.system-features h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.system-features ul {
    padding-left: 1.5rem;
}

.system-features li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

/* Access Section */
.access-section {
    padding: 4rem 0;
    background: #111111;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.access-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.access-text p {
    color: #d0d0d0;
    line-height: 1.7;
}

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

.access-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

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

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

.main-access,
.social-access,
.mobile-features,
.troubleshooting {
    margin-bottom: 1.5rem;
}

.main-access p,
.social-access p,
.mobile-features p,
.troubleshooting p {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
}

.main-access ul,
.social-access ol,
.mobile-features ul,
.troubleshooting ol {
    padding-left: 1.5rem;
}

.main-access li,
.social-access li,
.mobile-features li,
.troubleshooting li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

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

.premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-header p {
    color: #d0d0d0;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.premium-header img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    display: block;
}

.premium-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-section {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.feature-section h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.ai-features,
.vip-services,
.tech-innovation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.ai-card,
.vip-experience,
.vip-benefits,
.server-tech,
.development {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.ai-card h4,
.vip-experience h4,
.vip-benefits h4,
.server-tech h4,
.development h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.ai-card ul,
.ai-card ol,
.vip-experience ul,
.vip-benefits ul,
.server-tech ul,
.development ul {
    padding-left: 1.5rem;
}

.ai-card li,
.vip-experience li,
.vip-benefits li,
.server-tech li,
.development li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

/* Registration Section */
.registration-section {
    padding: 4rem 0;
    background: #111111;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.registration-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.registration-text p {
    color: #d0d0d0;
    line-height: 1.7;
}

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

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

.step-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.step-section h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.preparation,
.steps-process,
.deposit-channels,
.deposit-limits,
.game-selection,
.profit-tips {
    margin-bottom: 1.5rem;
}

.preparation h4,
.steps-process h4,
.deposit-channels h4,
.deposit-limits h4,
.game-selection h4,
.profit-tips h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.preparation ul,
.steps-process ol,
.deposit-channels ul,
.deposit-limits ul,
.game-selection ol,
.profit-tips ul {
    padding-left: 1.5rem;
}

.preparation li,
.steps-process li,
.deposit-channels li,
.deposit-limits li,
.game-selection li,
.profit-tips li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

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

.security-header {
    text-align: center;
    margin-bottom: 3rem;
}

.security-header p {
    color: #d0d0d0;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.security-header img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    display: block;
}

.security-technologies {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-section {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.tech-section h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.tech-section > p {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.encryption-tech,
.protection-systems,
.privacy-policy,
.access-control,
.control-tools,
.support-services {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    margin-bottom: 1.5rem;
}

.encryption-tech h4,
.protection-systems h4,
.privacy-policy h4,
.access-control h4,
.control-tools h4,
.support-services h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.encryption-tech ul,
.protection-systems ol,
.privacy-policy ul,
.access-control ul,
.control-tools ul,
.support-services ol {
    padding-left: 1.5rem;
}

.encryption-tech li,
.protection-systems li,
.privacy-policy li,
.access-control li,
.control-tools li,
.support-services li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 2rem auto 0;
    display: block;
}

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

.faq-category {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.faq-category h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #d0d0d0;
    line-height: 1.7;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
}

.contact-info h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d0d0d0;
}

.contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

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

.cta-content h2 {
    color: #1a1a1a;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: #ffd700;
    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 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-container,
    .promotion-grid,
    .experience-header,
    .access-content,
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .access-methods,
    .registration-steps {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .slot-machine {
        padding: 1.5rem;
    }

    .reels {
        gap: 5px;
    }

    .reel {
        width: 60px;
        height: 90px;
    }

    .symbol {
        font-size: 1.5rem;
    }

    .slot-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .promotion-content h2,
    .experience-content h2,
    .access-text h2,
    .registration-text h2 {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-methods {
        align-items: flex-start;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

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

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

    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .promo-card,
    .method-card,
    .step-section,
    .faq-category {
        padding: 1.5rem;
    }

    .slot-machine {
        padding: 1rem;
    }

    .reels {
        gap: 3px;
    }

    .reel {
        width: 50px;
        height: 75px;
    }

    .symbol {
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

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

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

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

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

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 1rem 0;
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.sticky-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 48px;
}

.sticky-btn-login {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: #ffffff;
    border: 1px solid #357abd;
}

.sticky-btn-login:hover {
    background: linear-gradient(135deg, #357abd, #2c6ba0);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.sticky-btn-register {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: #ffffff;
    border: 1px solid #229954;
}

.sticky-btn-register:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

.sticky-btn-bonus:hover {
    background: linear-gradient(135deg, #ffed4e, #fff700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive Styles for Footer and Sticky Buttons */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .sticky-btn {
        flex: 1;
        max-width: none;
        padding: 0.75rem 0.5rem;
        font-size: 12px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 0.75rem;
    }

    .footer-link {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
    }

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

    .sticky-btn {
        padding: 0.625rem 0.375rem;
        font-size: 11px;
        min-height: 44px;
    }
}

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

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

.login-container {
    max-width: 400px;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-container h1 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    color: #d0d0d0;
    font-family: 'Sarabun', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.form-group input {
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    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: #888;
}

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

.login-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.register-btn.outline {
    background: transparent;
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 1rem 1.5rem;
    border: 2px solid #ffd700;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Login Page Media Queries */
@media (max-width: 768px) {
    .login-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .login-container h1 {
        font-size: 1.5rem;
    }
}

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

    .login-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .login-container h1 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .form-group input {
        padding: 0.875rem;
        font-size: 16px;
    }

    .login-btn.primary,
    .register-btn.outline {
        padding: 0.875rem 1rem;
        font-size: 15px;
    }
}

/* Register Page Styles */
.register-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    min-height: calc(100vh - 70px);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.register-container {
    max-width: 400px;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.register-container h1 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.login-btn.outline {
    background: transparent;
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 1rem 1.5rem;
    border: 2px solid #ffd700;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Register Page Media Queries */
@media (max-width: 768px) {
    .register-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .register-container h1 {
        font-size: 1.5rem;
    }
}

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

    .register-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .register-container h1 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .register-btn.primary,
    .login-btn.outline {
        padding: 0.875rem 1rem;
        font-size: 15px;
    }
}

/* Promotion Page Specific Styles */

/* Promotion Hero Section */
.promotion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 4rem 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.promotion-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.promotion-hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-content h1 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    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 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Main Promotion Section */
.promotion-main {
    padding: 4rem 0;
    background: #111111;
}

.promotion-main h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.promotion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promotion-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

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

.promotion-card.main-offer {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #ffd700;
}

.promotion-card h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.promotion-card p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-details {
    margin-bottom: 2rem;
}

.offer-details h4, .bonus-section h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-list, .bonus-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li, .bonus-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    color: #d0d0d0;
}

.offer-list li:last-child, .bonus-section li:last-child {
    border-bottom: none;
}

.bonus-section {
    margin-bottom: 1.5rem;
}

.promotion-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.promotion-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
}

.promotion-btn.primary:hover {
    background: linear-gradient(135deg, #ffed4e, #fff700);
    transform: translateY(-2px);
}

.promotion-btn.secondary {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.promotion-btn.secondary:hover {
    background: #ffd700;
    color: #1a1a1a;
}

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

.promotion-btn.extra-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* How to Section */
.how-to-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.how-to-section h2, .how-to-section h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

.how-to-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.how-to-section h3 {
    font-size: 2rem;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.step-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

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

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

.step-card h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-card li {
    padding: 0.3rem 0;
    color: #d0d0d0;
}

.cta-center {
    text-align: center;
}

/* Slot Games Section */
.slot-games-section {
    padding: 4rem 0;
    background: #111111;
}

.slot-games-section h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.slot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.slot-main, .slot-promotions {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.slot-main h3, .slot-promotions h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.slot-main p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.slot-main h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.game-features, .promo-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item, .promo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #333;
    border-radius: 10px;
    color: #d0d0d0;
}

.feature-item i, .promo-item i {
    color: #ffd700;
    font-size: 1.2rem;
    min-width: 20px;
}

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

.benefits-section h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-card li {
    padding: 0.5rem 0;
    color: #d0d0d0;
    border-bottom: 1px solid #333;
}

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

/* Terms Section */
.terms-section {
    padding: 4rem 0;
    background: #111111;
}

.terms-section h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.terms-card.wide {
    grid-column: 1 / -1;
}

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

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

.terms-card li {
    padding: 0.7rem 0;
    color: #d0d0d0;
    border-bottom: 1px solid #333;
}

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

/* Additional Promotions Section */
.additional-promos {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.additional-promos h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-category {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.promo-category.vip-section {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #ffd700;
}

.promo-category h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.promo-category p {
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.promo-items, .vip-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.promo-detail, .vip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #333;
    border-radius: 10px;
    color: #d0d0d0;
}

.promo-detail i, .vip-item i {
    color: #ffd700;
    font-size: 1.2rem;
    min-width: 20px;
}

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

.faq-section h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

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

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

.faq-item p {
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0;
}

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

.contact-section h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.contact-info, .service-hours {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.contact-info h3, .service-hours h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-items, .hours-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item, .hours-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #333;
    border-radius: 10px;
    color: #d0d0d0;
}

.contact-item i, .hours-item i {
    color: #ffd700;
    font-size: 1.2rem;
    min-width: 20px;
}

.final-cta {
    text-align: center;
    margin: 3rem 0;
}

.cta-content h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.disclaimer p {
    color: #888;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Design for Promotion Page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .promotion-main h2,
    .how-to-section h2,
    .slot-games-section h2,
    .benefits-section h2,
    .terms-section h2,
    .additional-promos h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .promotion-grid,
    .benefits-grid,
    .terms-grid,
    .additional-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slot-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .promotion-card,
    .step-card,
    .benefit-card,
    .terms-card,
    .promo-category,
    .faq-item,
    .contact-info,
    .service-hours {
        padding: 1.5rem;
    }

    .how-to-section h3 {
        font-size: 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }

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

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

    .promotion-main h2,
    .how-to-section h2,
    .slot-games-section h2,
    .benefits-section h2,
    .terms-section h2,
    .additional-promos h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .promotion-card,
    .step-card,
    .benefit-card,
    .terms-card,
    .promo-category,
    .faq-item,
    .contact-info,
    .service-hours {
        padding: 1rem;
    }

    .hero-cta,
    .promotion-btn.large,
    .promotion-btn.extra-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

/* Privacy Policy Styles */
.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #1a1a1a;
    color: #e0e0e0;
    min-height: calc(100vh - 140px);
}

.privacy-policy-container h1 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.privacy-policy-container h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffd700;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid #ffd700;
    padding-left: 1rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

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

.privacy-policy-container p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-policy-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-policy-container ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-policy-container li {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

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

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

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .privacy-policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .privacy-policy-container h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.75rem 0;
        padding: 0.5rem 0.75rem;
    }

    .privacy-policy-container h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem 0;
    }

    .privacy-policy-container p {
        font-size: 0.95rem;
        text-align: left;
    }

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

    .privacy-policy-container li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 1rem 0.75rem;
    }

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

    .privacy-policy-container h2 {
        font-size: 1.3rem;
        padding: 0.4rem 0.6rem;
    }

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

    .privacy-policy-container p,
    .privacy-policy-container li {
        font-size: 0.9rem;
    }

    .privacy-policy-container ul,
    .privacy-policy-container ol {
        padding-left: 1.2rem;
    }
}
