/* Header Styles */
#site-header {
    background: #0a0a0a;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px 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 Styles */
.header-brand {
    flex-shrink: 0;
}

.logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

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

.nav-item {
    position: relative;
}

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

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

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
    border-radius: 1px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.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 {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    background: #111;
    border-top: 1px solid #333;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 400px;
}

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

.mobile-nav-link,
.mobile-cta-button {
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
    display: block;
}

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

.mobile-cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    border-bottom: none;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

    .logo {
        height: 50px;
    }

    .header-nav {
        display: block;
    }

    .cta-button {
        display: inline-block;
        font-size: 15px;
        padding: 14px 28px;
    }

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

    .mobile-nav {
        display: none;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-container {
        padding: 0 60px;
    }

    .nav-list {
        gap: 40px;
    }

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

    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1280px) {
    .header-container {
        padding: 0 80px;
    }
}

/* Global Styles for Main Content */
body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Sarabun', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

main {
    min-height: 100vh;
}

/* Container Base */
.hero-container,
.demo-container,
.features-container,
.access-container,
.promotion-container,
.platform-container,
.support-container,
.security-container,
.registration-container,
.faq-container,
.summary-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

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

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

.hero-content p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 30px;
}

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

.hero-cta-primary,
.hero-cta-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.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 {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

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

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

/* Demo Section */
.demo-section {
    background: #111;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.demo-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 15px;
}

.demo-container > p {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Slot Machine */
.slot-machine {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.slot-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    background: #000;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #333;
}

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

.symbol {
    font-size: 2.5rem;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    transition: transform 0.1s ease;
}

.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

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

.slot-info {
    display: flex;
    gap: 30px;
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
}

/* Features Section */
.features-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.features-container h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.game-types,
.payment-methods {
    margin-top: 25px;
}

.game-types h4,
.payment-methods h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.game-types ul,
.payment-methods ul {
    list-style: none;
    padding: 0;
}

.game-types li,
.payment-methods li {
    background: #0a0a0a;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* Access Section */
.access-section {
    background: #111;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.access-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.access-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.access-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin: 30px 0 20px 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.method-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.method-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.security-features ul {
    list-style: none;
    padding: 0;
}

.security-features li {
    background: #0a0a0a;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.access-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Promotion Section */
.promotion-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

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

.promotion-container > p {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.promo-main img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

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

.promo-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.promo-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.promo-item.highlight {
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.promo-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 0.9rem;
}

.promo-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin: 10px 0;
}

.promotion-terms h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.term-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.term-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.term-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Platform Section */
.platform-section {
    background: #111;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.platform-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.platform-content p {
    color: #c0c0c0;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.system-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #0a0a0a;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.highlight-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

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

.ui-feature {
    background: #0a0a0a;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

/* Support Section */
.support-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.support-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.support-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.contact-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Security Section */
.security-section {
    background: #111;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.security-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.security-content h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.security-content h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin: 30px 0 20px 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.standard-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.standard-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.standard-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.financial-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

.control-item {
    background: #0a0a0a;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.security-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Registration Section */
.registration-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

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

.registration-container > p {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    gap: 25px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
}

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

.step-content h3 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content ul,
.step-content ol {
    padding-left: 20px;
}

.step-content li {
    margin-bottom: 8px;
    color: #c0c0c0;
}

.gaming-tips h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.gaming-tips > p {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.tip-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
}

.tip-card h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.tip-card li {
    background: #0a0a0a;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.registration-cta {
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
}

.registration-cta a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
}

.registration-cta a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: #111;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

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

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

.faq-category h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h4 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

.faq-item ul,
.faq-item ol {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-item li {
    margin-bottom: 8px;
    color: #c0c0c0;
}

.faq-image {
    text-align: center;
    margin-bottom: 30px;
}

.faq-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.faq-footer {
    text-align: center;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 10px;
}

.faq-footer a {
    color: #ffd700;
    text-decoration: none;
}

.faq-footer a:hover {
    text-decoration: underline;
}

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

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

.summary-container p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

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

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

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

.final-cta p {
    color: #ffd700;
    font-weight: 600;
    margin: 0;
}

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

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

    .hero-actions {
        flex-direction: row;
        gap: 20px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        flex: 1;
    }

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

    .access-container {
        grid-template-columns: 1.2fr 1fr;
    }

    .promotions-showcase {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

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

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

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

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

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

    .slot-display {
        gap: 30px;
    }

    .reel {
        width: 100px;
        height: 150px;
    }

    .symbol {
        font-size: 3rem;
    }

    .system-highlights {
        grid-template-columns: 1fr 1fr;
    }

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

/* Desktop Responsive */
@media (min-width: 1024px) {
    .hero-container,
    .demo-container,
    .features-container,
    .access-container,
    .promotion-container,
    .platform-container,
    .support-container,
    .security-container,
    .registration-container,
    .faq-container,
    .summary-container {
        padding: 0 40px;
    }

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

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

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

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

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

    .platform-features {
        flex-direction: row;
        gap: 60px;
    }

    .platform-feature {
        flex: 1;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .hero-container,
    .demo-container,
    .features-container,
    .access-container,
    .promotion-container,
    .platform-container,
    .support-container,
    .security-container,
    .registration-container,
    .faq-container,
    .summary-container {
        padding: 0 60px;
    }

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

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

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

/* Footer Styles */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 40px 0;
    margin-top: 40px;
}

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

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

.footer-nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(to top, #0a0a0a 0%, rgba(10, 10, 10, 0.95) 100%);
    border-top: 1px solid #333;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-buttons-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.sticky-button {
    flex: 1;
    max-width: 180px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    line-height: 1.2;
}

.sticky-button-login {
    background: linear-gradient(135deg, #333, #444);
    color: #e0e0e0;
    border-color: #555;
}

.sticky-button-login:hover {
    background: linear-gradient(135deg, #444, #555);
    color: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sticky-button-register {
    background: linear-gradient(135deg, #1a5490, #2563eb);
    color: #ffffff;
    border-color: #3b82f6;
}

.sticky-button-register:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

/* Add bottom padding to body to prevent sticky buttons from obscuring content */
body {
    padding-bottom: 70px;
}

/* Tablet Responsive for Footer and Sticky Buttons */
@media (min-width: 768px) {
    .footer-container {
        padding: 0 40px;
    }

    .footer-nav-list {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

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

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

    .sticky-button {
        font-size: 14px;
        padding: 14px 12px;
        max-width: 200px;
    }

    body {
        padding-bottom: 75px;
    }
}

/* Desktop Responsive for Footer and Sticky Buttons */
@media (min-width: 1024px) {
    .footer-container {
        padding: 0 60px;
    }

    .footer-nav-list {
        gap: 60px;
    }

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

    .sticky-buttons-container {
        padding: 0 60px;
        gap: 15px;
    }

    .sticky-button {
        font-size: 15px;
        padding: 15px 16px;
        max-width: 220px;
    }

    body {
        padding-bottom: 80px;
    }
}

/* Large Desktop Responsive for Footer and Sticky Buttons */
@media (min-width: 1280px) {
    .footer-container {
        padding: 0 80px;
    }

    .sticky-buttons-container {
        padding: 0 80px;
        gap: 20px;
    }

    .sticky-button {
        font-size: 16px;
        padding: 16px 20px;
        max-width: 240px;
    }
}

/* Login Page Styles */
.login-section {
    min-height: calc(100vh - 140px);
    padding: 60px 20px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-section h1 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 40px 0;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.login-form-container {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-input {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    padding: 14px 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    background: rgba(40, 40, 40, 0.9);
}

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

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

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

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

.login-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.register-button {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.register-button:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

/* Login Page Responsive Styles */
@media (min-width: 480px) {
    .login-section h1 {
        font-size: 32px;
    }

    .login-form-container {
        max-width: 450px;
        padding: 50px;
    }
}

@media (min-width: 768px) {
    .login-section {
        padding: 80px 40px;
    }

    .login-section h1 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .login-form-container {
        max-width: 500px;
        padding: 60px;
    }

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

    .login-button,
    .register-button {
        flex: 1;
        font-size: 17px;
        padding: 16px 20px;
    }
}

@media (min-width: 1024px) {
    .login-section {
        padding: 100px 60px;
    }

    .login-section h1 {
        font-size: 40px;
        margin-bottom: 60px;
    }
}

@media (min-width: 1280px) {
    .login-section {
        padding: 120px 80px;
    }

    .login-section h1 {
        font-size: 44px;
    }
}

/* Privacy Policy Styles */
.privacy-policy-section {
    background: #0a0a0a;
    color: #ffffff;
    padding: 40px 20px;
    min-height: 100vh;
}

.privacy-policy-container {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.privacy-policy-container h2 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
}

.privacy-policy-container h3 {
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.privacy-policy-container p {
    color: #e0e0e0;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

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

.privacy-policy-container ul,
.privacy-policy-container ol {
    color: #e0e0e0;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.privacy-policy-container hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 40px 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .privacy-policy-section {
        padding: 60px 40px;
    }

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

    .privacy-policy-container h2 {
        font-size: 24px;
        margin: 50px 0 25px 0;
    }

    .privacy-policy-container h3 {
        font-size: 20px;
        margin: 35px 0 20px 0;
    }

    .privacy-policy-container p,
    .privacy-policy-container ul,
    .privacy-policy-container ol {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .privacy-policy-section {
        padding: 80px 60px;
    }

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

    .privacy-policy-container h2 {
        font-size: 26px;
        margin: 60px 0 30px 0;
    }

    .privacy-policy-container h3 {
        font-size: 22px;
        margin: 40px 0 25px 0;
    }

    .privacy-policy-container p,
    .privacy-policy-container ul,
    .privacy-policy-container ol {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .privacy-policy-section {
        padding: 100px 80px;
    }

    .privacy-policy-container h1 {
        font-size: 40px;
        margin-bottom: 60px;
    }

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

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

/* Responsible Gambling Policy Styles */
.responsible-gambling-policy-section {
    background: #0a0a0a;
    color: #ffffff;
    padding: 40px 20px;
    min-height: 100vh;
}

.responsible-gambling-policy-container {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.responsible-gambling-policy-container h2 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 45px 0 20px 0;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
}

.responsible-gambling-policy-container h3 {
    color: #e0e0e0;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.responsible-gambling-policy-container h4 {
    color: #cccccc;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 25px 0 12px 0;
}

.responsible-gambling-policy-container p,
.responsible-gambling-policy-container ul,
.responsible-gambling-policy-container ol {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
}

.responsible-gambling-policy-container ul,
.responsible-gambling-policy-container ol {
    padding-left: 20px;
}

.responsible-gambling-policy-container li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.responsible-gambling-policy-container hr {
    border: none;
    height: 1px;
    background: #333;
    margin: 40px 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .responsible-gambling-policy-section {
        padding: 60px 40px;
    }

    .responsible-gambling-policy-container h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .responsible-gambling-policy-container h2 {
        font-size: 24px;
        margin: 50px 0 25px 0;
    }

    .responsible-gambling-policy-container h3 {
        font-size: 20px;
        margin: 35px 0 20px 0;
    }

    .responsible-gambling-policy-container h4 {
        font-size: 18px;
        margin: 30px 0 15px 0;
    }

    .responsible-gambling-policy-container p,
    .responsible-gambling-policy-container ul,
    .responsible-gambling-policy-container ol {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .responsible-gambling-policy-section {
        padding: 80px 60px;
    }

    .responsible-gambling-policy-container h1 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .responsible-gambling-policy-container h2 {
        font-size: 26px;
        margin: 60px 0 30px 0;
    }

    .responsible-gambling-policy-container h3 {
        font-size: 22px;
        margin: 40px 0 25px 0;
    }

    .responsible-gambling-policy-container h4 {
        font-size: 20px;
        margin: 35px 0 20px 0;
    }

    .responsible-gambling-policy-container p,
    .responsible-gambling-policy-container ul,
    .responsible-gambling-policy-container ol {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .responsible-gambling-policy-section {
        padding: 100px 80px;
    }

    .responsible-gambling-policy-container h1 {
        font-size: 40px;
        margin-bottom: 60px;
    }

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

    .responsible-gambling-policy-container h3 {
        font-size: 24px;
    }

    .responsible-gambling-policy-container h4 {
        font-size: 22px;
    }
}

/* Terms and Conditions Styles */
.terms-conditions-section {
    background: #0a0a0a;
    color: #ffffff;
    padding: 40px 20px;
    min-height: 100vh;
}

.terms-conditions-container {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    line-height: 1.6;
}

.terms-conditions-container h1 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 15px;
}

.terms-conditions-container h2 {
    color: #ffd700;
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
}

.terms-conditions-container h3 {
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.terms-conditions-container p {
    color: #e0e0e0;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.terms-conditions-container strong {
    color: #ffd700;
    font-weight: 700;
}

.terms-conditions-container ul,
.terms-conditions-container ol {
    color: #e0e0e0;
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 30px;
}

.terms-conditions-container li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-conditions-container hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 40px 0;
}

/* Responsive Design for Terms and Conditions */
@media (min-width: 768px) {
    .terms-conditions-section {
        padding: 60px 40px;
    }

    .terms-conditions-container h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .terms-conditions-container h2 {
        font-size: 24px;
        margin: 50px 0 25px 0;
    }

    .terms-conditions-container h3 {
        font-size: 20px;
        margin: 35px 0 20px 0;
    }

    .terms-conditions-container p,
    .terms-conditions-container ul,
    .terms-conditions-container ol {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .terms-conditions-section {
        padding: 80px 60px;
    }

    .terms-conditions-container h1 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .terms-conditions-container h2 {
        font-size: 26px;
        margin: 60px 0 30px 0;
    }

    .terms-conditions-container h3 {
        font-size: 22px;
        margin: 40px 0 25px 0;
    }

    .terms-conditions-container p,
    .terms-conditions-container ul,
    .terms-conditions-container ol {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .terms-conditions-section {
        padding: 100px 80px;
    }

    .terms-conditions-container h1 {
        font-size: 40px;
        margin-bottom: 60px;
    }

    .terms-conditions-container h2 {
        font-size: 28px;
    }

    .terms-conditions-container h3 {
        font-size: 24px;
    }
}