/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    padding: 0.7rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo-text {
    margin-right: 0.5rem;
}

.logo-highlight {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 0.8em;
}

.logo-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-links li a i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.nav-links li a:hover {
    color: var(--text-primary);
    background: rgba(126, 87, 194, 0.1);
}

.header-actions {
    display: flex;
    gap: 0.8rem;
}

.header-button {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header-button i {
    margin-right: 0.5rem;
}

.login-button {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
}

.login-button:hover {
    background: rgba(126, 87, 194, 0.1);
    transform: translateY(-2px);
}

.register-button {
    background: linear-gradient(45deg, var(--primary-color), #9575cd);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(126, 87, 194, 0.3);
}

.register-button:hover {
    background: linear-gradient(45deg, #9575cd, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 87, 194, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-bg);
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(126, 87, 194, 0.05), transparent 50%), radial-gradient(circle at 90% 70%, rgba(0, 229, 255, 0.03), transparent 40%);
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo-text {
    display: inline-block;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-nav-container {
    display: flex;
    gap: 4rem;
}

.footer-nav h4 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-gaming {
    max-width: 650px;
    display: flex;
    gap: 1.5rem;
}

.responsible-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.responsible-content h4 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0 0 0.8rem 0;
    font-weight: 600;
}

.responsible-content p {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.security-badges {
    display: flex;
    gap: 1.5rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-badge i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.security-badge span {
    color: var(--text-secondary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.8rem;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
}

.copyright p {
    margin: 0 0 0.5rem 0;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
}

.payment-options {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.3rem;
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.sticky-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sticky-button i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.sticky-button.login {
    background: rgba(126, 87, 194, 0.2);
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.sticky-button.login:hover {
    background: rgba(126, 87, 194, 0.3);
}

.sticky-button.register {
    background: linear-gradient(45deg, var(--primary-color), #9575cd);
    color: white;
    margin-right: 0.5rem;
}

.sticky-button.register:hover {
    background: linear-gradient(45deg, #9575cd, var(--primary-color));
}

.sticky-button.bonus {
    background: linear-gradient(45deg, var(--secondary-color), #ff9100);
    color: white;
}

.sticky-button.bonus:hover {
    background: linear-gradient(45deg, #ff9100, var(--secondary-color));
}

/* Main Content Spacing for Fixed Header */
main {
    padding-top: 70px;
    /* Adjust based on header height */
}

/* Responsive Design for Header, Footer, and Sticky Buttons */
@media (max-width: 1400px) {
    .site-header {
        padding: 0.8rem 0;
    }

    .site-logo {
        font-size: 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        /* Adjust based on header height */
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(18, 18, 18, 0.98);
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        height: calc(100vh - 70px);
        /* Adjust based on header height */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }

    .nav-links li {
        width: 80%;
    }

    .nav-links li a {
        width: 100%;
        padding: 1rem;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 0.5rem;
    }

    .nav-links li a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .footer-nav-container {
        gap: 2rem;
    }

    .security-badges {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .footer-nav-container {
        flex-wrap: wrap;
        gap: 2rem 3rem;
    }

    .footer-middle {
        flex-direction: column;
        gap: 2rem;
    }

    .responsible-gaming {
        max-width: 100%;
    }

    .security-badges {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .sticky-button span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        display: none;
    }

    .footer-nav-container {
        flex-direction: column;
        gap: 2rem;
    }

    .responsible-gaming {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .security-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sticky-button i {
        font-size: 1rem;
    }

    .sticky-button span {
        font-size: 0.7rem;
    }
}

/* Hero Section Styles */
:root {
    /* Color Palette - Dark Mode */
    --primary-color: #7e57c2;
    --secondary-color: #ff4081;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #00e5ff;
}

/* Base styles for Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding: 2rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(18, 18, 18, 0.9), rgba(30, 30, 30, 0.7));
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    color: var(--text-primary);
}

.hero-section h1 {
    font-family: 'Prompt', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-right: 0.5rem;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-color), #9575cd);
    color: white;
    border: none;
}

.cta-button.primary:hover {
    background: linear-gradient(45deg, #9575cd, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(126, 87, 194, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 64, 129, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 64, 129, 0.2);
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.6;
    animation: float-icons 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--secondary-color);
}

.floating-icon:nth-child(2) {
    top: 50%;
    left: 15%;
    animation-delay: 2s;
    color: var(--accent-color);
}

.floating-icon:nth-child(3) {
    top: 70%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-icons {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        width: 70%;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-decoration {
        opacity: 0.3;
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Trust and Features Section Styles */
.trust-features-section {
    background-color: var(--dark-surface);
    padding: 5rem 0;
    position: relative;
}

.trust-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('0068_1_a-photo-of-a-very-sexy-asian-woman-with-_BmGZN7zwR4W5T53CItu0YQ_7woANLfjSYWB-cMouk35sg.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.trust-features-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
    max-width: 500px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.divider-icon {
    padding: 0 1rem;
    color: var(--accent-color);
    font-size: 1rem;
}

.trust-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.trust-text {
    flex: 1;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
}

.trust-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.trust-text p:last-child {
    margin-bottom: 0;
}

.trust-features-card {
    flex: 1;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6), rgba(30, 30, 30, 0.9));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.trust-features-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.card-header h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
    padding-top: 0.3rem;
}

.card-footer {
    margin-top: auto;
    text-align: center;
}

.feature-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(126, 87, 194, 0.4);
}

.feature-button i {
    margin-right: 0.5rem;
}

.trust-conclusion {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-color);
}

.conclusion-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.conclusion-text {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
}

.conclusion-text p {
    margin-bottom: 1rem;
}

.conclusion-text p:last-child {
    margin-bottom: 0;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.badge {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(40, 40, 40, 0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.6);
}

.badge i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.badge span {
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design for Trust and Features Section */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .trust-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .trust-features-section {
        padding: 4rem 0;
    }

    .trust-content {
        flex-direction: column;
    }

    .trust-conclusion {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .badge {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    .trust-features-card {
        padding: 1.5rem;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .trust-conclusion {
        padding: 1.5rem;
    }

    .badge {
        min-width: 100%;
    }
}

/* Risk Warning Section Styles */
.risk-warning-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
    position: relative;
}

.risk-warning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.risk-warning-section .container {
    position: relative;
    z-index: 2;
}

.risk-warning-section .section-header {
    margin-bottom: 3.5rem;
}

.risk-warning-section .section-divider .divider-icon {
    color: var(--secondary-color);
}

.risk-warning-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.risk-illustration {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.risk-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.risk-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.risk-image-container:hover .risk-image {
    transform: scale(1.05);
}

.risk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.risk-overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.risk-overlay-content i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.risk-overlay-content span {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.risk-meter {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.risk-meter-label {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.risk-meter-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.risk-meter-fill {
    height: 100%;
    width: 90%;
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
}

.risk-meter-fill.high {
    background: linear-gradient(to right, #ff4081, #ff0000);
    animation: fillAnimation 2s ease-in-out;
}

@keyframes fillAnimation {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

.risk-meter-value {
    font-family: 'Prompt', sans-serif;
    color: #ff4081;
    font-weight: 700;
    text-align: right;
    font-size: 0.9rem;
}

.risk-content {
    flex: 1;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
}

.highlighted-warning {
    font-size: 1.1rem;
    color: var(--text-primary);
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.risk-content p {
    margin-bottom: 1.2rem;
}

.risk-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.safety-tips {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--accent-color);
}

.safety-tips h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.safety-tips h3 i {
    color: var(--accent-color);
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.safety-list li:last-child {
    margin-bottom: 0;
}

.safety-list li i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.risk-summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-container {
    margin-top: 2rem;
    text-align: center;
}

.risk-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-color), #00bcd4);
    color: var(--dark-bg);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.risk-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

.risk-cta-button i {
    margin-right: 0.5rem;
}

.risk-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.comparison-card {
    flex: 1;
    max-width: 400px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.risky {
    border-top: 4px solid var(--secondary-color);
}

.comparison-card.safe {
    border-top: 4px solid var(--accent-color);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 0 0 8px 8px;
}

.comparison-card.risky .card-badge {
    background: var(--secondary-color);
}

.comparison-card.safe .card-badge {
    background: var(--accent-color);
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.comparison-card.risky .card-icon {
    color: var(--secondary-color);
}

.comparison-card.safe .card-icon {
    color: var(--accent-color);
}

.comparison-card h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
}

.comparison-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.comparison-card.risky ul li i {
    color: var(--secondary-color);
}

.comparison-card.safe ul li i {
    color: var(--accent-color);
}

.comparison-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.vs-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(126, 87, 194, 0.3);
}

/* Responsive Design for Risk Warning Section */
@media (max-width: 1024px) {
    .risk-warning-container {
        gap: 2rem;
    }

    .risk-illustration {
        flex: 0 0 45%;
    }

    .risk-overlay-content i {
        font-size: 3rem;
    }

    .risk-overlay-content span {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .risk-warning-section {
        padding: 4rem 0;
    }

    .risk-warning-container {
        flex-direction: column;
    }

    .risk-illustration {
        order: 1;
    }

    .risk-content {
        order: 2;
    }

    .risk-comparison {
        flex-direction: column;
        gap: 3rem;
    }

    .comparison-card {
        max-width: 100%;
    }

    .comparison-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .risk-warning-section .section-header h2 {
        font-size: 1.5rem;
    }

    .highlighted-warning {
        font-size: 1rem;
    }

    .risk-overlay-content i {
        font-size: 2.5rem;
    }

    .risk-overlay-content span {
        font-size: 1.3rem;
    }

    .safety-tips {
        padding: 1.2rem;
    }

    .safety-tips h3 {
        font-size: 1.1rem;
    }

    .risk-cta-button {
        width: 100%;
    }
}

/* Smart Gambling Tips Section Styles */
.smart-gambling-section {
    background-color: var(--dark-surface);
    padding: 5rem 0;
    position: relative;
}

.smart-gambling-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, rgba(126, 87, 194, 0.03) 0px, rgba(126, 87, 194, 0.03) 1px, transparent 1px, transparent 10px);
    z-index: 1;
}

.smart-gambling-section .container {
    position: relative;
    z-index: 2;
}

.smart-gambling-section .section-header {
    margin-bottom: 3.5rem;
}

.smart-gambling-section .section-divider .divider-icon {
    color: var(--primary-color);
}

.smart-gambling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    margin-bottom: 3rem;
}

.gambling-tips-image {
    grid-row: span 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tips-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.tips-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tips-badge-inner {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
}

.tips-badge-inner i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.gambling-tip-card {
    background: rgba(40, 40, 40, 0.5);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.gambling-tip-card:hover {
    transform: translateY(-5px);
    border-left: 3px solid var(--primary-color);
    background: rgba(40, 40, 40, 0.8);
}

.tip-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(126, 87, 194, 0.1), rgba(0, 229, 255, 0.05));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.tip-card-content {
    flex: 1;
}

.tip-card-content h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tip-card-content p {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
}

.tip-card-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.smart-gambling-checklist {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-top: 4px solid var(--primary-color);
}

.smart-gambling-checklist h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.checklist-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checklist-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(126, 87, 194, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.checklist-item span {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.6;
}

.slot-testing-advice {
    background: linear-gradient(135deg, rgba(126, 87, 194, 0.1), rgba(0, 229, 255, 0.05));
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advice-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.advice-content {
    flex: 1;
}

.advice-content h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.advice-content p {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.advice-content p:last-child {
    margin-bottom: 0;
}

.advice-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.smart-gambling-cta {
    text-align: center;
}

.smart-gambling-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--primary-color), #9575cd);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(126, 87, 194, 0.3);
}

.smart-gambling-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(126, 87, 194, 0.5);
    background: linear-gradient(45deg, #9575cd, var(--primary-color));
}

.smart-gambling-button i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Responsive Design for Smart Gambling Tips Section */
@media (max-width: 1024px) {
    .smart-gambling-grid {
        grid-gap: 1.5rem;
    }

    .gambling-tip-card {
        padding: 1.5rem;
    }

    .tip-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .tip-card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .smart-gambling-grid {
        grid-template-columns: 1fr;
    }

    .gambling-tips-image {
        grid-row: auto;
        margin: 2rem 0;
    }

    .checklist-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slot-testing-advice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .advice-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .smart-gambling-section {
        padding: 4rem 0;
    }

    .smart-gambling-section .section-header h2 {
        font-size: 1.5rem;
    }

    .gambling-tip-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tip-card-icon {
        margin-bottom: 1rem;
    }

    .tips-badge-inner {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .smart-gambling-checklist {
        padding: 1.5rem;
    }

    .smart-gambling-checklist h3 {
        font-size: 1.3rem;
    }

    .slot-testing-advice {
        padding: 1.5rem;
    }

    .advice-content h3 {
        font-size: 1.2rem;
    }

    .smart-gambling-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Game Showcase Section Styles */
.game-showcase-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.game-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(126, 87, 194, 0.1), transparent 50%), radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.08), transparent 40%);
    z-index: 1;
}

.game-showcase-section .container {
    position: relative;
    z-index: 2;
}

.game-showcase-section .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-subheading {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.game-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-tab {
    background: rgba(40, 40, 40, 0.6);
    border: none;
    color: var(--text-secondary);
    font-family: 'Prompt', sans-serif;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.category-tab i {
    font-size: 1rem;
}

.category-tab:hover {
    background: rgba(60, 60, 60, 0.8);
    color: var(--text-primary);
}

.category-tab.active {
    background: linear-gradient(45deg, var(--primary-color), #9575cd);
    color: white;
    box-shadow: 0 4px 15px rgba(126, 87, 194, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.game-card {
    background: rgba(40, 40, 40, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(126, 87, 194, 0.15);
}

.game-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-provider {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-family: 'Sarabun', sans-serif;
}

.play-button {
    align-self: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(126, 87, 194, 0.4);
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.game-badge.hot {
    background: linear-gradient(45deg, #ff4081, #ff9100);
    color: white;
}

.game-badge.new {
    background: linear-gradient(45deg, #00e5ff, #2979ff);
    color: white;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
}

.game-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.volatility.high {
    color: #ff4081;
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.game-providers {
    margin-bottom: 3rem;
}

.providers-heading {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.providers-heading h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-right: 1.5rem;
    white-space: nowrap;
}

.providers-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.providers-logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.provider-logo {
    flex: 1;
    min-width: 120px;
    height: 60px;
    background: rgba(40, 40, 40, 0.6);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.provider-logo:hover {
    background: rgba(60, 60, 60, 0.8);
    transform: translateY(-5px);
}

.provider-logo span {
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.game-showcase-info {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
}

.game-showcase-info p {
    margin-bottom: 1rem;
}

.game-showcase-info p:last-child {
    margin-bottom: 0;
}

.game-showcase-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.games-cta {
    text-align: center;
}

.games-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(126, 87, 194, 0.3);
    text-decoration: none;
}

.games-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(126, 87, 194, 0.5);
}

.games-button i {
    font-size: 1.2rem;
}

/* Responsive Design for Game Showcase Section */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .providers-logos {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.2rem;
    }

    .category-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .game-info h3 {
        font-size: 1.1rem;
    }

    .play-button {
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-showcase-section {
        padding: 4rem 0;
    }

    .game-showcase-section .section-header h2 {
        font-size: 1.5rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .game-category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
        margin: 0 -1rem 2rem -1rem;
        padding: 0 1rem 1rem 1rem;
    }

    .category-tab {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .game-info {
        padding: 1rem;
    }

    .game-info h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .game-meta {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .provider-logo {
        min-width: 100px;
        height: 50px;
    }

    .provider-logo span {
        font-size: 0.9rem;
    }

    .game-showcase-info {
        padding: 1.5rem;
    }

    .games-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Website Reliability Section Styles */
.website-reliability-section {
    background-color: var(--dark-surface);
    padding: 5rem 0;
    position: relative;
}

.website-reliability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(0, 0, 0, 0) 50%), linear-gradient(225deg, rgba(126, 87, 194, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.website-reliability-section .container {
    position: relative;
    z-index: 2;
}

.website-reliability-section .section-header {
    margin-bottom: 3.5rem;
}

.website-reliability-section .section-divider .divider-icon {
    color: var(--accent-color);
}

.reliability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.reliability-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reliability-intro {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.reliability-intro p {
    margin-bottom: 0;
}

.reliability-intro strong {
    color: var(--text-primary);
    font-weight: 600;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.key-point {
    display: flex;
    gap: 1.5rem;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.key-point:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.key-point-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(126, 87, 194, 0.05));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.key-point:nth-child(2) .key-point-icon {
    color: var(--primary-color);
}

.key-point:nth-child(3) .key-point-icon {
    color: var(--secondary-color);
}

.key-point-content {
    flex: 1;
}

.key-point-content h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.key-point-content p {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
    margin-bottom: 0;
}

.key-point-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.reliability-checklist-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reliability-checklist {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.7), rgba(30, 30, 30, 0.95));
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.checklist-header h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 0;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.checklist-items li:last-child {
    margin-bottom: 0;
}

.checklist-items li i {
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--accent-color);
}

.reliability-image {
    position: relative;
    margin-top: 2rem;
}

.checklist-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reliability-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--dark-bg);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reliability-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--accent-color), #00bcd4);
    color: var(--dark-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.reliability-badge i {
    margin-right: 0.8rem;
}

.finance-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.finance-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.finance-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.finance-header h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 0;
}

.finance-section p {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.finance-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-method {
    background: rgba(40, 40, 40, 0.7);
    border-radius: 10px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    background: rgba(60, 60, 60, 0.7);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-method span {
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
}

.social-media-note {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--secondary-color);
}

.note-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 64, 129, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.note-content {
    flex: 1;
}

.note-content h3 {
    font-family: 'Prompt', sans-serif;
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.note-content p {
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
    margin-bottom: 0;
}

.note-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.final-advice {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
    border-top: 1px solid rgba(126, 87, 194, 0.3);
    border-bottom: 1px solid rgba(126, 87, 194, 0.3);
}

.final-advice p {
    margin-bottom: 1.5rem;
}

.final-advice p:last-child {
    margin-bottom: 0;
}

.final-advice strong {
    color: var(--text-primary);
    font-weight: 600;
}

.reliability-cta {
    text-align: center;
}

.reliability-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--accent-color), #00bcd4);
    color: var(--dark-bg);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.2);
}

.reliability-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.reliability-button i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Responsive Design for Website Reliability Section */
@media (max-width: 1024px) {
    .reliability-grid {
        gap: 2rem;
    }

    .key-point {
        padding: 1.5rem;
    }

    .reliability-checklist {
        padding: 2rem;
    }

    .payment-method {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .reliability-grid {
        grid-template-columns: 1fr;
    }

    .key-point {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .key-point-icon {
        margin-bottom: 0.5rem;
    }

    .social-media-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .note-icon {
        margin-bottom: 0.5rem;
    }

    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .website-reliability-section {
        padding: 4rem 0;
    }

    .website-reliability-section .section-header h2 {
        font-size: 1.5rem;
    }

    .reliability-intro,
    .key-point,
    .reliability-checklist,
    .finance-section,
    .social-media-note,
    .final-advice {
        padding: 1.5rem;
    }

    .checklist-header h3,
    .finance-header h3,
    .note-content h3 {
        font-size: 1.2rem;
    }

    .key-point-content h3 {
        font-size: 1.1rem;
    }

    .payment-method {
        width: 100%;
        justify-content: center;
    }

    .reliability-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}