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

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

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

/* Header Styles */
.header {
    background-color: rgba(26, 26, 26, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.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: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}

.mobile-menu {
    padding: 1rem 0;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.mobile-cta-button {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 12px 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

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

    .cta-button {
        display: none;
    }

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

    .logo-text {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

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

    .logo-text {
        font-size: 1.1rem;
    }
}

/* Main Content Spacing */
main {
    margin-top: 70px;
}

@media (max-width: 480px) {
    main {
        margin-top: 60px;
    }
}

/* Hero Section Styles */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
    position: relative;
}

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

.hero-text {
    max-width: 100%;
}

.hero-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-figure {
    width: 100%;
    max-width: 500px;
    margin: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-caption {
    font-size: 0.875rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

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

    .hero-figure {
        max-width: 400px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .hero-figure {
        max-width: 350px;
    }

    .hero-img {
        border-radius: 15px;
    }

    .hero-caption {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

/* Why BGGame888 Section Styles */
.why-bgame888 {
    padding: 6rem 0;
    background-color: #1a1a1a;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-item:before {
    content: "⭐";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 0.9rem;
}

.feature-item strong {
    color: #ffd700;
    font-weight: 600;
}

.feature-item:last-child {
    margin-bottom: 0;
}

/* Mobile Gaming Showcase */
.mobile-gaming-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.mobile-gaming-figure {
    width: 100%;
    max-width: 600px;
    margin: 0;
    text-align: center;
}

.mobile-gaming-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-gaming-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.mobile-gaming-caption {
    font-size: 0.875rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Tablet Styles for Why BGGame888 Section */
@media (max-width: 768px) {
    .why-bgame888 {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .feature-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .mobile-gaming-figure {
        max-width: 500px;
    }
}

/* Mobile Styles for Why BGGame888 Section */
@media (max-width: 480px) {
    .why-bgame888 {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.625rem;
        line-height: 1.4;
    }

    .features-grid {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }

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

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .feature-item {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
        padding-left: 1.25rem;
    }

    .feature-item:before {
        font-size: 0.8rem;
    }

    .mobile-gaming-figure {
        max-width: 400px;
    }

    .mobile-gaming-img {
        border-radius: 15px;
    }

    .mobile-gaming-caption {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

/* Professional Usage Section Styles */
.professional-usage {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    position: relative;
}

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

.usage-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.usage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.usage-content {
    position: relative;
    z-index: 2;
}

.usage-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

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

/* Steps Section */
.steps-section {
    margin-bottom: 2.5rem;
}

.steps-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.25rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.step-item {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.step-item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-item strong {
    color: #ffd700;
    font-weight: 600;
}

.step-item:last-child {
    margin-bottom: 0;
}

/* Login Section */
.login-section {
    margin-bottom: 0;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.25rem;
}

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

.login-item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.login-item:before {
    content: "🔗";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 0.9rem;
}

.login-item:last-child {
    margin-bottom: 0;
}

/* Promotion Sections */
.promo-section,
.daily-promo-section {
    margin-bottom: 2rem;
}

.promo-section:last-child,
.daily-promo-section:last-child {
    margin-bottom: 0;
}

.promo-title,
.daily-promo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.25rem;
}

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

.promo-item,
.daily-promo-item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.promo-item:before,
.daily-promo-item:before {
    content: "🎁";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 0.9rem;
}

.promo-item strong,
.daily-promo-item strong {
    color: #ffd700;
    font-weight: 600;
}

.promo-item:last-child,
.daily-promo-item:last-child {
    margin-bottom: 0;
}

/* Promotions Showcase */
.promotions-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.promotions-figure {
    width: 100%;
    max-width: 700px;
    margin: 0;
    text-align: center;
}

.promotions-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotions-img:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.promotions-caption {
    font-size: 0.875rem;
    color: #888;
    text-align: center;
    margin-top: 1.25rem;
    font-style: italic;
}

/* Tablet Styles for Professional Usage Section */
@media (max-width: 768px) {
    .professional-usage {
        padding: 4rem 0;
    }

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

    .usage-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

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

    .usage-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .steps-section {
        margin-bottom: 2rem;
    }

    .step-item {
        padding-left: 2.75rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .step-item:before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
    }

    .login-item,
    .promo-item,
    .daily-promo-item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
    }

    .promotions-figure {
        max-width: 600px;
    }

    .promotions-img {
        border-radius: 20px;
    }
}

/* Mobile Styles for Professional Usage Section */
@media (max-width: 480px) {
    .professional-usage {
        padding: 3rem 0;
    }

    .usage-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .usage-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .usage-title {
        font-size: 1.375rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .usage-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .steps-title,
    .login-title,
    .promo-title,
    .daily-promo-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .steps-section {
        margin-bottom: 1.75rem;
    }

    .step-item {
        padding-left: 2.5rem;
        margin-bottom: 0.875rem;
        font-size: 0.85rem;
    }

    .step-item:before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }

    .login-item,
    .promo-item,
    .daily-promo-item {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
        padding-left: 1.25rem;
    }

    .login-item:before,
    .promo-item:before,
    .daily-promo-item:before {
        font-size: 0.8rem;
    }

    .promotions-figure {
        max-width: 450px;
    }

    .promotions-img {
        border-radius: 18px;
    }

    .promotions-caption {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* Premium Gaming Section Styles */
.premium-gaming {
    padding: 6rem 0;
    background-color: #1a1a1a;
    position: relative;
}

.gaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.gaming-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04) 0%, rgba(255, 107, 53, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gaming-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.12);
}

.gaming-card-content {
    position: relative;
    z-index: 2;
}

.gaming-card-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.gaming-card-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

/* Game Categories */
.game-category,
.banking-category {
    margin-bottom: 2.5rem;
}

.game-category:last-child,
.banking-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

/* Game Category Lists */
.game-category-list {
    list-style: none;
    counter-reset: game-counter;
    padding: 0;
    margin: 0;
}

.game-category-item {
    counter-increment: game-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.game-category-item:before {
    content: counter(game-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.game-category-item strong {
    color: #ffd700;
    font-weight: 600;
}

.game-category-item:last-child {
    margin-bottom: 0;
}

/* Live Casino Lists */
.live-casino-list,
.banking-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.live-casino-item,
.banking-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.live-casino-item:before {
    content: "🎰";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
}

.banking-item:before {
    content: "💳";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
}

.live-casino-item strong,
.banking-item strong {
    color: #ffd700;
    font-weight: 600;
}

.live-casino-item:last-child,
.banking-item:last-child {
    margin-bottom: 0;
}

/* Benefits List */
.benefits-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.benefits-item:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 0.9rem;
}

.benefits-item:last-child {
    margin-bottom: 0;
}

/* Banking Showcase */
.banking-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.banking-figure {
    width: 100%;
    max-width: 700px;
    margin: 0;
    text-align: center;
}

.banking-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banking-img:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.banking-caption {
    font-size: 0.875rem;
    color: #888;
    text-align: center;
    margin-top: 1.25rem;
    font-style: italic;
}

/* Tablet Styles for Premium Gaming Section */
@media (max-width: 768px) {
    .premium-gaming {
        padding: 4rem 0;
    }

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

    .gaming-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .gaming-card-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .gaming-card-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .game-category,
    .banking-category {
        margin-bottom: 2rem;
    }

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

    .game-category-item {
        padding-left: 2.75rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .game-category-item:before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
    }

    .live-casino-item,
    .banking-item,
    .benefits-item {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
        padding-left: 1.75rem;
    }

    .banking-figure {
        max-width: 600px;
    }

    .banking-img {
        border-radius: 20px;
    }
}

/* Mobile Styles for Premium Gaming Section */
@media (max-width: 480px) {
    .premium-gaming {
        padding: 3rem 0;
    }

    .gaming-content {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .gaming-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .gaming-card-title {
        font-size: 1.375rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .gaming-card-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .game-category,
    .banking-category {
        margin-bottom: 1.75rem;
    }

    .category-title {
        font-size: 1.0625rem;
        margin-bottom: 1rem;
    }

    .game-category-item {
        padding-left: 2.5rem;
        margin-bottom: 0.875rem;
        font-size: 0.85rem;
    }

    .game-category-item:before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
        border-radius: 4px;
    }

    .live-casino-item,
    .banking-item,
    .benefits-item {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
    }

    .live-casino-item:before,
    .banking-item:before,
    .benefits-item:before {
        font-size: 0.875rem;
    }

    .banking-figure {
        max-width: 450px;
    }

    .banking-img {
        border-radius: 18px;
    }

    .banking-caption {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* Unique Experience Section Styles */
.unique-experience {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    position: relative;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.experience-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.experience-card-content {
    position: relative;
    z-index: 2;
}

.experience-card-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.experience-card-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

/* Feature Categories */
.feature-category {
    margin-bottom: 2.5rem;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.feature-category-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

/* AI Features */
.ai-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-feature-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.ai-feature-item:before {
    content: "🤖";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
}

.ai-feature-item strong {
    color: #ffd700;
    font-weight: 600;
}

.ai-feature-item:last-child {
    margin-bottom: 0;
}

/* Security Features */
.security-features-list {
    list-style: none;
    counter-reset: security-counter;
    padding: 0;
    margin: 0;
}

.security-feature-item {
    counter-increment: security-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.security-feature-item:before {
    content: counter(security-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.security-feature-item strong {
    color: #ffd700;
    font-weight: 600;
}

.security-feature-item:last-child {
    margin-bottom: 0;
}

/* Customer Service Section */
.customer-service-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04) 0%, rgba(255, 107, 53, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.12);
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-card-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.service-card-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Contact and Service Sections */
.contact-section,
.special-service-section {
    margin-bottom: 0;
}

.contact-title,
.special-service-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.25rem;
}

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

.contact-item,
.special-service-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.contact-item:before {
    content: "📞";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 0.9rem;
}

.special-service-item:before {
    content: "⭐";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 0.9rem;
}

.contact-item strong,
.special-service-item strong {
    color: #ffd700;
    font-weight: 600;
}

.contact-item:last-child,
.special-service-item:last-child {
    margin-bottom: 0;
}

/* Service Showcase */
.service-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-figure {
    width: 100%;
    max-width: 400px;
    margin: 0;
    text-align: center;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-img:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.service-caption {
    font-size: 0.875rem;
    color: #888;
    text-align: center;
    margin-top: 1.25rem;
    font-style: italic;
}

/* Future Gaming Section Styles */
.future-gaming {
    padding: 6rem 0;
    background-color: #1a1a1a;
    position: relative;
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.future-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04) 0%, rgba(255, 107, 53, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.future-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.12);
}

.future-card-content {
    position: relative;
    z-index: 2;
}

.future-card-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.future-card-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

/* Roadmap Sections */
.roadmap-section {
    margin-bottom: 2.5rem;
}

.roadmap-section:last-child {
    margin-bottom: 0;
}

.roadmap-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

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

.roadmap-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.roadmap-item:before {
    content: "🚀";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
}

.roadmap-item strong {
    color: #ffd700;
    font-weight: 600;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

/* Responsibility and Partnership Section */
.responsibility-partnership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.responsibility-card,
.partnership-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.responsibility-card:hover,
.partnership-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.responsibility-content,
.partnership-content {
    position: relative;
    z-index: 2;
}

.responsibility-title,
.partnership-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.responsibility-description,
.partnership-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

/* Measures and Partners Sections */
.measures-section,
.partners-section {
    margin-bottom: 0;
}

.measures-title,
.partners-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.measures-list {
    list-style: none;
    counter-reset: measures-counter;
    padding: 0;
    margin: 0;
}

.measures-item {
    counter-increment: measures-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.measures-item:before {
    content: counter(measures-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.measures-item strong {
    color: #ffd700;
    font-weight: 600;
}

.measures-item:last-child {
    margin-bottom: 0;
}

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

.partner-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.partner-item:before {
    content: "🤝";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1rem;
}

.partner-item strong {
    color: #ffd700;
    font-weight: 600;
}

.partner-item:last-child {
    margin-bottom: 0;
}

/* Partnerships Showcase */
.partnerships-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.partnerships-figure {
    width: 100%;
    max-width: 700px;
    margin: 0;
    text-align: center;
}

.partnerships-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnerships-img:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.partnerships-caption {
    font-size: 0.875rem;
    color: #888;
    text-align: center;
    margin-top: 1.25rem;
    font-style: italic;
}

/* Tablet Styles for Unique Experience and Future Gaming */
@media (max-width: 768px) {
    .unique-experience,
    .future-gaming {
        padding: 4rem 0;
    }

    .experience-content,
    .future-content,
    .responsibility-partnership {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .customer-service-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-card,
    .future-card,
    .service-card,
    .responsibility-card,
    .partnership-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .experience-card-title,
    .future-card-title,
    .service-card-title,
    .responsibility-title,
    .partnership-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .experience-card-description,
    .future-card-description,
    .service-card-description,
    .responsibility-description,
    .partnership-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .feature-category,
    .roadmap-section {
        margin-bottom: 2rem;
    }

    .security-feature-item,
    .measures-item {
        padding-left: 2.75rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .security-feature-item:before,
    .measures-item:before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
    }

    .ai-feature-item,
    .contact-item,
    .special-service-item,
    .roadmap-item,
    .partner-item {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
        padding-left: 1.75rem;
    }

    .service-figure,
    .partnerships-figure {
        max-width: 600px;
    }

    .service-img,
    .partnerships-img {
        border-radius: 20px;
    }
}

/* Mobile Styles for Unique Experience and Future Gaming */
@media (max-width: 480px) {
    .unique-experience,
    .future-gaming {
        padding: 3rem 0;
    }

    .experience-content,
    .future-content,
    .responsibility-partnership {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .customer-service-section {
        gap: 1.5rem;
    }

    .experience-card,
    .future-card,
    .service-card,
    .responsibility-card,
    .partnership-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .experience-card-title,
    .future-card-title,
    .service-card-title,
    .responsibility-title,
    .partnership-title {
        font-size: 1.375rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .experience-card-description,
    .future-card-description,
    .service-card-description,
    .responsibility-description,
    .partnership-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .feature-category-title,
    .contact-title,
    .special-service-title,
    .roadmap-title,
    .measures-title,
    .partners-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .feature-category,
    .roadmap-section {
        margin-bottom: 1.75rem;
    }

    .security-feature-item,
    .measures-item {
        padding-left: 2.5rem;
        margin-bottom: 0.875rem;
        font-size: 0.85rem;
    }

    .security-feature-item:before,
    .measures-item:before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
        border-radius: 4px;
    }

    .ai-feature-item,
    .contact-item,
    .special-service-item,
    .roadmap-item,
    .partner-item {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
    }

    .ai-feature-item:before,
    .contact-item:before,
    .special-service-item:before,
    .roadmap-item:before,
    .partner-item:before {
        font-size: 0.875rem;
    }

    .service-figure,
    .partnerships-figure {
        max-width: 450px;
    }

    .service-img,
    .partnerships-img {
        border-radius: 18px;
    }

    .service-caption,
    .partnerships-caption {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    position: relative;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.faq-category {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-category:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.faq-category-content {
    position: relative;
    z-index: 2;
}

.faq-category-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 215, 0, 0.03);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-answer {
    margin: 0;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-cta-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.faq-contact-info {
    margin-bottom: 2rem;
}

.faq-contact-text,
.faq-cta-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
}

.faq-link,
.faq-cta-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-link:hover,
.faq-cta-link:hover {
    color: #ff6b35;
    background-color: rgba(255, 215, 0, 0.1);
}

.faq-final-cta {
    margin: 0;
}

/* Tablet Styles for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

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

    .faq-category {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .faq-category-title {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }

    .faq-items {
        gap: 1.25rem;
    }

    .faq-item {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .faq-question {
        font-size: 1.0625rem;
        margin-bottom: 0.625rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-cta-section {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .faq-contact-info {
        margin-bottom: 1.75rem;
    }

    .faq-contact-text,
    .faq-cta-text {
        font-size: 1rem;
    }
}

/* Mobile Styles for FAQ Section */
@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-content {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .faq-category {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .faq-category-title {
        font-size: 1.375rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .faq-items {
        gap: 1rem;
    }

    .faq-item {
        padding: 1rem;
        border-radius: 12px;
    }

    .faq-question {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-cta-section {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .faq-contact-info {
        margin-bottom: 1.5rem;
    }

    .faq-contact-text,
    .faq-cta-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-link,
    .faq-cta-link {
        padding: 1px 4px;
    }
}

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

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

.footer-legal-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

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

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

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

.sticky-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 50px;
}

.sticky-button-login {
    background: linear-gradient(135deg, #4a4a4a, #666666);
    color: #ffffff;
}

.sticky-button-login:hover {
    background: linear-gradient(135deg, #555555, #777777);
    transform: translateY(-1px);
}

.sticky-button-register {
    background: linear-gradient(135deg, #007acc, #0099ff);
    color: #ffffff;
}

.sticky-button-register:hover {
    background: linear-gradient(135deg, #0088bb, #00aaff);
    transform: translateY(-1px);
}

.sticky-button-bonus {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-button-bonus:hover {
    background: linear-gradient(135deg, #ffe135, #ff7d4a);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.sticky-button-text {
    white-space: nowrap;
}

/* Add bottom padding to body to prevent content from being hidden behind sticky buttons */
body {
    padding-bottom: 80px;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-legal-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-legal-link {
        font-size: 0.85rem;
        padding: 0.75rem;
    }

    /* Mobile Sticky Buttons */
    .sticky-buttons {
        padding: 10px 0;
    }

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

    .sticky-button {
        padding: 12px 8px;
        font-size: 0.8rem;
        min-height: 45px;
    }

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

    body {
        padding-bottom: 70px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .footer-legal-menu {
        gap: 0.25rem;
    }

    .footer-legal-link {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .sticky-buttons-container {
        gap: 6px;
        padding: 0 8px;
    }

    .sticky-button {
        padding: 10px 6px;
        font-size: 0.75rem;
        min-height: 42px;
        border-radius: 20px;
    }

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

    body {
        padding-bottom: 65px;
    }
}

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

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    width: 100%;
    gap: 2rem;
}

.login-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(26, 26, 26, 0.9);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

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

.input-icon {
    position: absolute;
    left: 1rem;
    color: #888888;
    font-size: 1rem;
    z-index: 1;
}

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

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

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

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.login-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    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, 215, 0, 0.3);
}

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

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

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

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

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

/* Active navigation link style */
.nav-link.active,
.mobile-nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

/* Register Page Specific Styles */
.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.95));
}

.register-container {
    max-width: 450px;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.register-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

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

/* Mobile responsive adjustments for register page */
@media (max-width: 768px) {
    .register-section {
        padding: 100px 0 80px;
        min-height: 100vh;
    }

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

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

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

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

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

/* Mobile Responsive for Login Page */
@media (max-width: 768px) {
    .login-section {
        padding: 100px 0 2rem 0;
    }

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

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

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

    .input-icon {
        left: 0.875rem;
        font-size: 0.9rem;
    }

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

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

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.section-description {
    font-size: 1.125rem;
    color: #e0e0e0;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Free Credit Section */
.free-credit-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.promotion-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

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

.promotion-list {
    list-style: none;
    margin-bottom: 2rem;
}

.promotion-item {
    color: #e0e0e0;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

.promotion-button {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promotion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.promotion-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

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

/* Welcome Bonus Section */
.welcome-bonus-section {
    padding: 6rem 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.bonus-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.bonus-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.bonus-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.bonus-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.bonus-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-item:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.calculation-examples {
    margin-top: 1rem;
}

.calculation-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #ffd700;
}

.calculation-formula {
    color: #ffffff;
    font-weight: 600;
    display: block;
}

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

/* Slot Promotions Section */
.slot-promotions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
}

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

.slot-promo-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.slot-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.slot-promo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.slot-promo-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promo-details {
    margin-top: 1.5rem;
}

.promo-details-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.promo-details-list {
    list-style: none;
}

.promo-details-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.promo-details-item:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
}

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

/* Casino Promotions Section */
.casino-promotions-section {
    padding: 6rem 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.casino-promo-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.casino-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.casino-promo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.casino-promo-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.casino-promo-subtitle {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.casino-promo-list {
    list-style: none;
}

.casino-promo-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.casino-promo-item:before {
    content: "♦";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 1rem;
}

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

/* VIP Promotions Section */
.vip-promotions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

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

.vip-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.vip-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.vip-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vip-benefits-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.vip-benefits-list {
    list-style: none;
}

.vip-benefits-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.vip-benefits-item:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 1rem;
}

.vip-requirements-list {
    list-style: none;
}

.vip-requirements-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.vip-requirements-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

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

/* Refer Friend Section */
.refer-friend-section {
    padding: 6rem 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.refer-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.refer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.refer-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.refer-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.refer-details-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.refer-details-list {
    list-style: none;
}

.refer-details-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.refer-details-item:before {
    content: "👥";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.refer-special-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.refer-special-list {
    list-style: none;
}

.refer-special-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.refer-special-item:before {
    content: "🎁";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

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

/* Special Occasions Section */
.special-occasions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
}

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

.occasion-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.occasion-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.occasion-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.birthday-gifts-title,
.birthday-process-title,
.newyear-promo-title,
.songkran-promo-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.birthday-gifts-list,
.birthday-process-list,
.newyear-promo-list,
.songkran-promo-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.birthday-gifts-item,
.birthday-process-item,
.newyear-promo-item,
.songkran-promo-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.birthday-gifts-item:before,
.newyear-promo-item:before,
.songkran-promo-item:before {
    content: "🎉";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.birthday-process-list {
    counter-reset: step-counter;
}

.birthday-process-item {
    counter-increment: step-counter;
}

.birthday-process-item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.occasions-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

/* New Games Section */
.new-games-section {
    padding: 6rem 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.new-games-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.new-games-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.new-games-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.new-games-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.new-games-benefits-title,
.latest-games-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.new-games-benefits-list,
.latest-games-list {
    list-style: none;
}

.new-games-benefits-item,
.latest-games-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.new-games-benefits-item:before {
    content: "🎮";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.latest-games-item:before {
    content: "🆕";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

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

/* Terms and Conditions Section */
.terms-conditions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
}

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

.terms-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.general-terms-title,
.turnover-title,
.withdrawal-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.general-terms-list,
.turnover-list,
.withdrawal-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.general-terms-item,
.turnover-item,
.withdrawal-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.general-terms-item:before,
.turnover-item:before,
.withdrawal-item:before {
    content: "📋";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

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

/* How to Get Section */
.how-to-get-section {
    padding: 6rem 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.how-to-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.how-to-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.how-to-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.steps-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-item {
    color: #e0e0e0;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    counter-increment: step-counter;
}

.steps-item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.contact-section {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
}

.contact-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: #e0e0e0;
    border-left: 4px solid #ffd700;
}

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

/* FAQ Promotion Section */
.faq-promotion-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
}

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

.faq-promotion-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

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

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

/* Summary Section */
.summary-section {
    padding: 6rem 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.summary-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.summary-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.summary-list {
    list-style: none;
}

.summary-item {
    color: #e0e0e0;
    padding: 0.5rem 0;
    position: relative;
}

.summary-item:before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    margin-right: 0.5rem;
}

.summary-final {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.summary-final-text {
    font-size: 1.125rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.summary-final-cta {
    margin-top: 2rem;
}

.disclaimer {
    text-align: center;
    margin-top: 2rem;
}

.disclaimer-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =================== RESPONSIVE STYLES FOR PROMOTION PAGE =================== */

/* Tablet Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }

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

    .bonus-grid,
    .slot-promo-grid,
    .casino-promo-grid,
    .vip-grid,
    .refer-grid,
    .occasions-grid,
    .new-games-grid,
    .terms-grid,
    .how-to-grid {
        grid-template-columns: 1fr;
    }

    .occasions-cta {
        grid-template-columns: 1fr;
    }

    .promotion-card,
    .bonus-card,
    .slot-promo-card,
    .casino-promo-card,
    .vip-card,
    .refer-card,
    .occasion-card,
    .new-games-card,
    .terms-card,
    .how-to-card {
        padding: 1.5rem;
    }

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

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

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

/* Mobile Styles */
@media (max-width: 480px) {
    .free-credit-section,
    .welcome-bonus-section,
    .slot-promotions-section,
    .casino-promotions-section,
    .vip-promotions-section,
    .refer-friend-section,
    .special-occasions-section,
    .new-games-section,
    .terms-conditions-section,
    .how-to-get-section,
    .faq-promotion-section,
    .summary-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-description {
        font-size: 0.9rem;
    }

    .promotion-card,
    .bonus-card,
    .slot-promo-card,
    .casino-promo-card,
    .vip-card,
    .refer-card,
    .occasion-card,
    .new-games-card,
    .terms-card,
    .how-to-card {
        padding: 1.25rem;
        border-radius: 15px;
    }

    .promotion-title,
    .bonus-title,
    .slot-promo-title,
    .casino-promo-title,
    .vip-title,
    .refer-title,
    .occasion-title,
    .new-games-title,
    .terms-title,
    .how-to-title {
        font-size: 1.125rem;
    }

    .bonus-subtitle,
    .promo-details-title,
    .casino-promo-subtitle,
    .vip-benefits-title,
    .refer-details-title,
    .refer-special-title,
    .birthday-gifts-title,
    .birthday-process-title,
    .newyear-promo-title,
    .songkran-promo-title,
    .new-games-benefits-title,
    .latest-games-title,
    .general-terms-title,
    .turnover-title,
    .withdrawal-title,
    .steps-title {
        font-size: 1rem;
    }

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

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

    .contact-section {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 1.125rem;
    }

    .summary-final {
        padding: 2rem 1.5rem;
    }

    .summary-final-text {
        font-size: 1rem;
    }

    .faq-promotion-question {
        font-size: 1rem;
    }

    .faq-promotion-answer {
        font-size: 0.9rem;
    }

    .disclaimer-text {
        font-size: 0.8rem;
    }
}

/* =================== LEGAL PAGES STYLES =================== */

/* Legal Page Layout */
.legal-page {
    padding: 6rem 0 4rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.legal-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.legal-meta {
    font-size: 1.125rem;
    color: #cccccc;
    font-weight: 500;
}

.legal-content {
    line-height: 1.8;
    color: #e0e0e0;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.legal-section h3 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 2rem 0 1rem 0;
}

.legal-section h4 {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #e0e0e0;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-section li {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 215, 0, 0.3);
}

.legal-section ul li:before {
    content: "▸";
    position: absolute;
    left: 0.75rem;
    color: #ffd700;
    font-weight: bold;
    font-size: 1rem;
}

.legal-section ol {
    counter-reset: legal-counter;
}

.legal-section ol li {
    counter-increment: legal-counter;
}

.legal-section ol li:before {
    content: counter(legal-counter);
    position: absolute;
    left: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000000;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.legal-section strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    margin: 1.5rem 0;
}

.contact-info ul {
    margin: 0.5rem 0 0 0;
}

.contact-info li {
    background: none;
    border: none;
    padding: 0.25rem 0 0.25rem 1.5rem;
}

.contact-info li:before {
    content: "●";
    color: #ffd700;
    font-size: 0.75rem;
    left: 0.5rem;
}

.effective-date {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    margin: 2rem 0;
    text-align: center;
}

.effective-date p {
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.effective-date p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #cccccc;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 5rem 0 3rem 0;
    }

    .legal-title {
        font-size: 1.875rem;
        line-height: 1.4;
    }

    .legal-meta {
        font-size: 1rem;
    }

    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .legal-section h4 {
        font-size: 1.125rem;
    }

    .legal-section p {
        font-size: 0.95rem;
    }

    .legal-section li {
        padding: 0.5rem 0 0.5rem 1.75rem;
        font-size: 0.95rem;
    }

    .contact-info,
    .effective-date {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 4rem 0 2rem 0;
    }

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

    .legal-meta {
        font-size: 0.9rem;
    }

    .legal-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .legal-section h4 {
        font-size: 1rem;
    }

    .legal-section p {
        font-size: 0.9rem;
    }

    .legal-section li {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-info,
    .effective-date {
        padding: 1rem;
    }
}