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

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

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

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

/* Header Styles */
.site-header {
    background-color: #1a1a1a;
    border-bottom: 2px solid #ff6b35;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
    position: relative;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Prompt', sans-serif;
}

.logo img {
    margin-right: 0.5rem;
    border-radius: 8px;
}

.logo-text {
    color: #ff6b35;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:active,
.nav-link.active {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.2);
}

/* CTA Button */
.header-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

.cta-button i {
    font-size: 1rem;
}

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

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

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

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

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

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

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

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

.mobile-nav-list li {
    border-bottom: 1px solid #333;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.mobile-cta-button {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 20px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    transition: all 0.3s ease;
    margin: 0.5rem 20px;
    border-radius: 8px;
    text-align: center;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
}

.mobile-cta-button i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

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

    .header-container {
        padding: 0.8rem 20px;
    }

    .logo a {
        font-size: 1.3rem;
    }

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

@media (max-width: 480px) {
    .header-container {
        padding: 0.7rem 15px;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .mobile-nav-link,
    .mobile-cta-button {
        padding: 0.8rem 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

/* Promotion Page Styles */
.promotion-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0 3rem;
    border-bottom: 2px solid #ff6b35;
    text-align: center;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-button {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-button:hover {
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
}

/* Section Styles */
.promotions-section,
.terms-section,
.games-section,
.advantages-section,
.banking-section,
.registration-section,
.faq-section,
.summary-section,
.contact-section {
    padding: 3rem 0;
    border-bottom: 1px solid #333;
}

.section-title {
    font-size: 2rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Promotion Cards */
.promotion-card,
.terms-card,
.game-card,
.advantage-card,
.banking-card,
.registration-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-card:hover,
.terms-card:hover,
.game-card:hover,
.advantage-card:hover,
.banking-card:hover,
.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.promotion-title,
.terms-title,
.game-title,
.advantage-title,
.banking-title,
.registration-title {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Feature Lists */
.promotion-features,
.game-features ul,
.game-specs ul,
.casino-games ul,
.advantage-features ul,
.banking-features ul,
.usage-guide ul,
.faq-details ul,
.summary-advantages ul,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.promotion-features li,
.game-features ul li,
.game-specs ul li,
.casino-games ul li,
.advantage-features ul li,
.banking-features ul li,
.usage-guide ul li,
.faq-details ul li,
.summary-advantages ul li,
.contact-list li {
    padding: 0.75rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
    font-size: 1rem;
    line-height: 1.5;
}

.promotion-features li:last-child,
.game-features ul li:last-child,
.game-specs ul li:last-child,
.casino-games ul li:last-child,
.advantage-features ul li:last-child,
.banking-features ul li:last-child,
.usage-guide ul li:last-child,
.faq-details ul li:last-child,
.summary-advantages ul li:last-child,
.contact-list li:last-child {
    border-bottom: none;
}

/* Promotion Button */
.promotion-button {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    margin-top: 1rem;
}

.promotion-button:hover {
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* CTA Section */
.promotion-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Grid Layouts */
.terms-grid,
.games-grid,
.advantages-grid,
.banking-grid,
.registration-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

/* Terms Columns */
.terms-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.terms-column h4,
.feature-group h4,
.banking-methods h4,
.banking-timing h4,
.usage-section h4,
.faq-details h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.step-number {
    background: #ff6b35;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

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

.step-content ul li {
    padding: 0.25rem 0;
    color: #cccccc;
}

/* FAQ Styles */
.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.faq-question {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-details {
    margin: 1.5rem 0;
}

/* Summary Section */
.summary-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.summary-grid {
    margin: 2rem 0;
}

.summary-advantages {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.summary-advantages h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.summary-cta {
    margin-top: 3rem;
}

.summary-cta p {
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

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

.disclaimer p {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

/* Registration Steps */
.registration-steps {
    margin: 1.5rem 0;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-details .step-item {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.step-details .step-item strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 0.5rem;
}

/* Daily Promo Grid */
.daily-promo-grid,
.promotion-grid {
    margin: 1.5rem 0;
}

.daily-item ol,
.feature-item ul {
    padding-left: 1rem;
}

.daily-item ol li,
.feature-item ul li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.daily-item ol li:last-child,
.feature-item ul li:last-child {
    border-bottom: none;
}

/* Feature Groups */
.advantage-features,
.banking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.feature-group {
    background: rgba(255, 107, 53, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Usage Guide */
.usage-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.usage-section {
    background: rgba(255, 107, 53, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

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

    .terms-columns,
    .advantage-features,
    .banking-features,
    .usage-guide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .games-grid,
    .advantages-grid,
    .banking-grid,
    .registration-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .promotion-hero {
        padding: 3rem 0 2rem;
    }

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

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

    .hero-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

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

    .promotion-card,
    .terms-card,
    .game-card,
    .advantage-card,
    .banking-card,
    .registration-card,
    .faq-item {
        padding: 1.5rem;
    }

    .promotion-title,
    .terms-title,
    .game-title,
    .advantage-title,
    .banking-title,
    .registration-title,
    .faq-question {
        font-size: 1.3rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .steps-container {
        gap: 1rem;
    }

    .terms-grid,
    .games-grid,
    .advantages-grid,
    .banking-grid,
    .registration-grid,
    .faq-grid {
        gap: 1.5rem;
    }
}

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

    .promotion-hero {
        padding: 2rem 0 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

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

    .hero-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

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

    .promotions-section,
    .terms-section,
    .games-section,
    .advantages-section,
    .banking-section,
    .registration-section,
    .faq-section,
    .summary-section,
    .contact-section {
        padding: 2rem 0;
    }

    .promotion-card,
    .terms-card,
    .game-card,
    .advantage-card,
    .banking-card,
    .registration-card,
    .faq-item {
        padding: 1rem;
    }

    .promotion-title,
    .terms-title,
    .game-title,
    .advantage-title,
    .banking-title,
    .registration-title,
    .faq-question {
        font-size: 1.2rem;
    }

    .feature-group,
    .usage-section {
        padding: 1rem;
    }

    .promotion-features li,
    .game-features ul li,
    .game-specs ul li,
    .casino-games ul li,
    .advantage-features ul li,
    .banking-features ul li,
    .usage-guide ul li,
    .faq-details ul li,
    .summary-advantages ul li,
    .contact-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .step-details .step-item {
        padding: 0.75rem;
    }

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

    .summary-advantages h3 {
        font-size: 1.2rem;
    }
}

/* Responsible Gambling Policy Page Styles */
.responsible-gambling-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 20px;
    display: flex;
    flex-direction: column;
}

.responsible-gambling-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.responsible-gambling-content h1 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.responsible-gambling-content h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.responsible-gambling-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
}

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

.responsible-gambling-content p strong {
    color: #ff6b35;
    font-weight: 700;
}

.responsible-gambling-content ul,
.responsible-gambling-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.responsible-gambling-content li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.responsible-gambling-content li strong {
    color: #ff6b35;
    font-weight: 700;
}

.responsible-gambling-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 3rem 0;
}

.responsible-gambling-content em {
    color: #ff8f65;
    font-style: italic;
    font-size: 1.2rem;
    display: block;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive Design for Responsible Gambling Page */
@media (max-width: 1024px) {
    .responsible-gambling-container {
        padding: 1.5rem 20px;
    }

    .responsible-gambling-content {
        padding: 2.5rem;
    }

    .responsible-gambling-content h1 {
        font-size: 2.2rem;
    }

    .responsible-gambling-content h2 {
        font-size: 1.6rem;
    }

    .responsible-gambling-content h3 {
        font-size: 1.3rem;
    }
}

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

    .responsible-gambling-content {
        padding: 2rem;
        border-radius: 8px;
    }

    .responsible-gambling-content h1 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }

    .responsible-gambling-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1.2rem 0;
    }

    .responsible-gambling-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .responsible-gambling-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .responsible-gambling-content li {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .responsible-gambling-content ul,
    .responsible-gambling-content ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-container {
        padding: 0.8rem 10px;
    }

    .responsible-gambling-content {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .responsible-gambling-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .responsible-gambling-content h2 {
        font-size: 1.3rem;
        margin: 1.8rem 0 1rem 0;
    }

    .responsible-gambling-content h3 {
        font-size: 1.1rem;
        margin: 1.3rem 0 0.6rem 0;
    }

    .responsible-gambling-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .responsible-gambling-content li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .responsible-gambling-content ul,
    .responsible-gambling-content ol {
        padding-left: 1.2rem;
        margin: 1rem 0;
    }

    .responsible-gambling-content em {
        font-size: 1.1rem;
    }
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus,
.mobile-menu-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header {
        position: static;
        box-shadow: none;
    }

    .mobile-menu-btn,
    .mobile-nav {
        display: none !important;
    }
}

/* Homepage Styles */

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

/* Section Styles */
section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 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, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.external-link-info {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 30px;
}

.external-link-info a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

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

.hero-image {
    margin: 40px 0;
}

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

.hero-cta {
    margin-top: 30px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.primary-button i {
    font-size: 1.2rem;
}

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

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

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

.slot-display {
    background-color: #000000;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #333333;
    position: relative;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
}

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

.symbol {
    font-size: 2.5rem;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

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

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

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

.bet-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.bet-display span {
    background-color: #333333;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #555555;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bet-button {
    background-color: #333333;
    color: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-button:hover {
    background-color: #ff6b35;
    transform: scale(1.1);
}

.spin-button {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.spin-button:hover {
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.spin-button:disabled {
    background: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.result-display {
    background-color: #1a1a1a;
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-display.win {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

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

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

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8f65);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.benefit-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

.security-image {
    margin-top: 20px;
}

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

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

/* Promotions Section */
.promotions-section {
    background-color: #161616;
    padding: 80px 0;
}

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

.promotion-article {
    margin-bottom: 40px;
}

.promotion-article h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.promotion-article p {
    color: #cccccc;
    line-height: 1.6;
}

.promotion-list {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #333333;
}

.promotion-list h4 {
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 20px;
    text-align: center;
}

.promotion-items {
    list-style: none;
    padding: 0;
}

.promotion-items li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.promotion-items li:last-child {
    border-bottom: none;
}

.promotion-items li i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

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

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

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

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

.guide-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.guide-number {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.guide-card p {
    color: #cccccc;
    line-height: 1.6;
}

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

.guide-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Access Section */
.access-section {
    background-color: #161616;
    padding: 80px 0;
}

.access-content {
    display: grid;

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

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

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

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

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
}

/* Section Styles */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 1.3;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.promotion-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8f65);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.promotion-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
}

.promotion-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.promotion-features li {
    color: #e0e0e0;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.promotion-grid {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.daily-promo-grid {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

.promotion-cta {
    margin-top: 30px;
    text-align: center;
}

.promotion-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.promotion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background-color: #161616;
}

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

.terms-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.terms-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

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

.terms-column li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Steps Container */
.steps-container {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.step-content li {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.game-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
}

.game-features {
    margin: 25px 0;
}

.game-features h4,
.game-specs h4,
.casino-games h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.game-features ul,
.game-specs ul,
.casino-games ul {
    list-style: none;
    padding: 0;
}

.game-features li,
.game-specs li,
.casino-games li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background-color: #161616;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.advantage-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
}

.advantage-features {
    margin: 25px 0;
}

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

.feature-group h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-group ul {
    list-style: none;
    padding: 0;
}

.feature-group li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Banking Section */
.banking-section {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.banking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.banking-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.banking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.banking-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
}

.banking-features {
    margin: 25px 0;
}

.banking-methods,
.banking-timing,
.withdrawal-limits,
.withdrawal-timing {
    margin-bottom: 25px;
}

.banking-methods h4,
.banking-timing h4,
.withdrawal-limits h4,
.withdrawal-timing h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.banking-methods ul,
.banking-timing ul,
.withdrawal-limits ul,
.withdrawal-timing ul {
    list-style: none;
    padding: 0;
}

.banking-methods li,
.banking-timing li,
.withdrawal-limits li,
.withdrawal-timing li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background-color: #161616;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.registration-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.registration-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
}

.registration-steps {
    margin: 25px 0;
}

.reg-step h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-details .step-item {
    display: block;
}

.step-details .step-item strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.step-details li {
    color: #cccccc;
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.usage-guide {
    margin: 25px 0;
}

.usage-section {
    margin-bottom: 25px;
}

.usage-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.usage-section ul {
    list-style: none;
    padding: 0;
}

.usage-section li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.faq-question {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.faq-answer {
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-details {
    margin: 20px 0;
}

.faq-details h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-details ul {
    list-style: none;
    padding: 0;
}

.faq-details li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

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

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

.summary-content > p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.summary-grid {
    margin: 40px 0;
}

.summary-advantages h3 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

.summary-advantages ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.summary-advantages li {
    color: #e0e0e0;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
}

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

.summary-cta p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #0f0f0f;
    border-top: 2px solid #333333;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.contact-info h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

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

.contact-list li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.disclaimer p {
    color: #999999;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

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

    .promotion-hero {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .promotions-section,
    .terms-section,
    .games-section,
    .advantages-section,
    .banking-section,
    .registration-section,
    .faq-section,
    .summary-section {
        padding: 60px 0;
    }

    .promotion-card,
    .terms-card,
    .game-card,
    .advantage-card,
    .banking-card,
    .registration-card,
    .faq-item {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .terms-grid,
    .games-grid,
    .advantages-grid,
    .banking-grid,
    .registration-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .terms-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .hero-button,
    .promotion-button {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .contact-content {
        gap: 25px;
    }
}

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

    .promotion-card,
    .terms-card,
    .game-card,
    .advantage-card,
    .banking-card,
    .registration-card,
    .faq-item {
        padding: 25px 20px;
    }

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

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.access-article {
    margin-bottom: 40px;
}

.access-article h3 {
    font-size: 1.6rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.access-article p {
    color: #cccccc;
    line-height: 1.6;
}

.mobile-interface img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

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

.games-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.games-card h3 {
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 15px;
    line-height: 1.3;
}

.games-card p {
    color: #cccccc;
    line-height: 1.6;
}

.games-collection-image {
    text-align: center;
    margin: 50px 0;
}

.games-collection-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.games-final-note {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #ff6b35;
    text-align: center;
}

.games-final-note p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Customer Service Section */
.customer-service-section {
    background-color: #161616;
    padding: 80px 0;
}

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

.service-contact,
.service-banking,
.service-vip {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.service-contact:hover,
.service-banking:hover,
.service-vip:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.service-contact h3,
.service-banking h3,
.service-vip h3 {
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.service-contact p,
.service-banking p,
.service-vip p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list li i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 25px;
}

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

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.warning-box {
    background: linear-gradient(135deg, #2a1a1a, #3a2a2a);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.warning-box h3 {
    color: #ff6b35;
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.warning-box h3 i {
    font-size: 1.4rem;
}

.warning-box p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

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

    .promotions-content,
    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid,
    .guide-grid,
    .games-grid,
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .content-container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 60px 0;
    }

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

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

    .benefits-grid,
    .guide-grid,
    .games-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .slot-machine {
        padding: 20px;
    }

    .symbol {
        font-size: 2rem;
    }

    .bet-display {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .control-buttons {
        gap: 15px;
    }

    .bet-button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .spin-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

    .primary-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .benefit-card,
    .guide-card,
    .games-card,
    .service-contact,
    .service-banking,
    .service-vip {
        padding: 20px;
    }

    .slot-machine {
        padding: 15px;
    }

    .slot-reels {
        gap: 8px;
    }

    .reel {
        padding: 10px 8px;
        min-height: 100px;
    }

    .symbol {
        font-size: 1.8rem;
    }

    .bet-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .spin-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .warning-box {
        padding: 25px;
    }

    .warning-box h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 10px;
    }
}

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

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

.footer-nav {
    max-width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

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

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.8));
    backdrop-filter: blur(10px);
    border-top: 2px solid #ff6b35;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

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

.sticky-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    flex: 1;
    max-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-button i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.sticky-button span {
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: nowrap;
}

/* Individual button styles */
.sticky-login {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.sticky-login:hover {
    background: linear-gradient(135deg, #357abd, #2e6ba0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.sticky-register {
    background: linear-gradient(135deg, #50c878, #45b36b);
}

.sticky-register:hover {
    background: linear-gradient(135deg, #45b36b, #3a9b5c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

.sticky-bonus {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
}

.sticky-bonus:hover {
    background: linear-gradient(135deg, #ff8f65, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.sticky-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
    }

    .footer-link {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
}

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

    .footer-links {
        gap: 15px;
    }

    .footer-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Responsive Sticky Buttons */
@media (max-width: 768px) {
    .sticky-buttons {
        padding: 12px 0;
    }

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

    .sticky-button {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 0.85rem;
    }

    .sticky-button i {
        font-size: 1.1rem;
    }

    .sticky-button span {
        font-size: 0.8rem;
    }
}

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

    .sticky-container {
        padding: 0 10px;
        gap: 10px;
    }

    .sticky-button {
        padding: 8px 12px;
        min-width: 90px;
        font-size: 0.8rem;
        gap: 4px;
    }

    .sticky-button i {
        font-size: 1rem;
    }

    .sticky-button span {
        font-size: 0.75rem;
    }
}

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

@media (max-width: 768px) {
    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 70px;
    }
}

/* Accessibility for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .footer-link,
    .sticky-button {
        transition: none;
    }

    .sticky-button:hover {
        transform: none;
    }
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    padding: 0 20px;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.login-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label i {
    color: #ff6b35;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

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

.login-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8a65 0%, #ff6b35 100%);
}

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

.register-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.register-button:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-section {
        padding: 2rem 0;
        min-height: calc(100vh - 140px);
    }

    .login-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .login-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .login-button,
    .register-button {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

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

    .login-container {
        padding: 0 15px;
    }

    .login-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .login-form {
        padding: 1.25rem;
    }

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

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .login-button,
    .register-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .form-buttons {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }
}

/* Register Page Styles */
.register-section {
    background-color: #0a0a0a;
    min-height: calc(100vh - 140px);
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

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

.register-form {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
    width: 100%;
    max-width: 450px;
}

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

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #ff6b35;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: #2a2a2a;
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Sarabun', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

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

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

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: #ff6b35;
}

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

.register-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.register-button:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.login-button {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.login-button:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .register-section {
        padding: 2rem 0;
        min-height: calc(100vh - 140px);
    }

    .register-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .register-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }

    .register-button,
    .login-button {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

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

    .content-container {
        padding: 0 15px;
    }

    .register-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .register-form {
        padding: 1.25rem;
    }

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

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }

    .register-button,
    .login-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .form-buttons {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }
}