/* Base Styles & Theme Colors */
:root {
    /* Dark Mode Theme Colors */
    --primary-color: #ffcc00;
    --secondary-color: #ff6b00;
    --accent-color: #00aaff;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --border-color: #333333;
    --button-hover: #ff8800;
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b00 0%, #ffcc00 100%);
    --shadow-color: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--button-hover);
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn i {
    margin-right: 8px;
}

.primary-btn {
    background: var(--gradient-accent);
    color: var(--darker-bg);
    border: 2px solid transparent;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-color);
    color: var(--darker-bg);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-color);
}

/* Hero Section Styles */
.hero-section {
    padding: 150px 0 80px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IGlkPSJwYXR0ZXJuLWJhY2tncm91bmQiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InRyYW5zcGFyZW50Ij48L3JlY3Q+PGnpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0iIzMzMyI+PC9jaXJjbGU+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.main-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px var(--shadow-color);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: translateY(-5px);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.hero-badge i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

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

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-section .container {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 150px 0 40px;
    }

    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

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

    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        margin-right: 0.5rem;
        width: 100%;
        max-width: 200px;
    }
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    display: block;
    padding: 8px 12px;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Prompt', sans-serif;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
    background-color: rgba(255, 204, 0, 0.1);
}

.nav-cta {
    margin-left: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--gradient-accent);
    color: var(--darker-bg);
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    margin-right: 8px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: var(--darker-bg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile CTA Modal */
.mobile-cta-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
    /* Initially hidden on all devices */
}

.mobile-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--gradient-accent);
    color: var(--darker-bg);
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.mobile-cta-button i {
    margin-right: 8px;
}

.mobile-cta-button:hover {
    transform: translateY(-3px);
    color: var(--darker-bg);
}

/* Desktop/Mobile visibility classes */
.desktop-only {
    display: block;
}

/* Media Queries for Header */
@media (max-width: 992px) {
    .nav-link {
        padding: 8px 10px;
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 855px) {
    .header-wrapper {
        padding: 12px 0;
    }

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        display: none;
        z-index: 1000;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 12px 20px;
    }

    /* Hide desktop CTA and show mobile CTA modal instead */
    .desktop-only {
        display: none;
    }

    .mobile-cta-modal {
        display: block;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.5rem;
    }

    .logo i {
        font-size: 1.7rem;
        margin-right: 8px;
    }

    .mobile-menu-toggle {
        font-size: 1.3rem;
    }
}

/* Info Section Styles */
.info-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.info-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header h2 .highlight {
    color: var(--primary-color);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-text {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
}

.info-text p {
    margin-bottom: 20px;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.info-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid var(--accent-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.benefits-list {
    list-style-type: none;
    margin: 25px 0;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding: 12px 0 12px 40px;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.benefits-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.benefits-list li i {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

/* Media Queries for Info Section */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .info-text {
        padding: 25px;
    }
}

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

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

    .info-text {
        padding: 20px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .benefits-list li {
        padding-left: 35px;
    }
}

.links-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.links-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.links-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.links-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.links-image-container:hover .links-image {
    transform: scale(1.05);
}

.links-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px;
    border-radius: 0 0 15px 15px;
}

.link-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.link-badge i {
    margin-right: 5px;
}

.links-text {
    flex: 1;
    min-width: 300px;
}

.links-text p {
    margin-bottom: 20px;
}

.links-box {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.links-box-header {
    background: var(--gradient-accent);
    color: var(--darker-bg);
    padding: 15px 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.links-box-header i {
    margin-right: 10px;
}

.alternate-links {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.alternate-links li {
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.alternate-links li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.alternate-links a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.alternate-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.alternate-links a i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.links-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.link-feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.link-feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background: var(--gradient-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--darker-bg);
    font-size: 1.2rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.links-bottom-text {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
}

.links-bottom-text p {
    margin-bottom: 20px;
}

.links-bottom-text p:last-of-type {
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .links-content {
        flex-direction: column;
    }

    .links-image-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .links-text {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .links-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .link-feature-card {
        padding: 20px;
    }

    .links-bottom-text {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .links-section {
        padding: 60px 0;
    }

    .links-image-container {
        min-width: 100%;
    }

    .alternate-links a {
        font-size: 0.9rem;
    }

    .link-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }
}

/* Casino Section Styles */
.casino-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.casino-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 108, 0, 0.1) 0%, rgba(255, 108, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.casino-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.1) 0%, rgba(0, 170, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.casino-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.casino-intro p {
    font-size: 1.15rem;
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.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: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--gradient-accent);
    color: var(--darker-bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.play-btn i {
    margin-right: 8px;
}

.game-card:hover .play-btn {
    transform: translateY(0);
}

.play-btn:hover {
    transform: scale(1.05);
    color: var(--darker-bg);
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.game-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.game-rating i {
    margin-right: 3px;
}

.game-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.casino-review {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border-left: 5px solid var(--primary-color);
}

.review-content p {
    margin-bottom: 20px;
}

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

.casino-list li {
    position: relative;
    padding: 10px 0 10px 35px;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.casino-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.casino-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-cta {
    display: flex;
    flex-direction: column;
}

.vip-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 2rem;
    color: var(--darker-bg);
}

.badge-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.badge-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.review-cta p {
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
}

/* Media Queries for Casino Section */
@media (max-width: 992px) {
    .casino-games {
        grid-template-columns: repeat(2, 1fr);
    }

    .casino-review {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vip-badge {
        margin-bottom: 20px;
    }
}

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

    .casino-intro p {
        font-size: 1.05rem;
    }

    .game-image {
        height: 180px;
    }

    .game-info h3 {
        font-size: 1.2rem;
    }

    .casino-review {
        padding: 30px;
    }

    .badge-icon {
        width: 50px;
        height: 50px;
    }

    .badge-icon i {
        font-size: 1.5rem;
    }

    .badge-text h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .casino-games {
        grid-template-columns: 1fr;
    }

    .casino-intro {
        margin-bottom: 30px;
    }

    .casino-intro p {
        font-size: 1rem;
    }

    .game-image {
        height: 200px;
    }

    .casino-review {
        padding: 25px 20px;
    }

    .vip-badge {
        padding: 15px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .badge-icon i {
        font-size: 1.2rem;
    }

    .badge-text h3 {
        font-size: 1.1rem;
    }

    .badge-text p {
        font-size: 0.8rem;
    }

    .casino-list li {
        padding-left: 30px;
        font-size: 0.9rem;
    }

    .casino-list li i {
        font-size: 1rem;
    }
}

/* Mobile Section Styles */
.mobile-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.mobile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(0, 170, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(255, 204, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.mobile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.mobile-text {
    flex: 1;
    min-width: 300px;
}

.mobile-text p {
    margin-bottom: 20px;
}

.mobile-advantages {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.advantage-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.advantage-icon i {
    color: var(--darker-bg);
    font-size: 1.3rem;
}

.advantage-text {
    flex: 1;
}

.advantage-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.advantage-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.mobile-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.device-mockup {
    position: relative;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px var(--primary-color),
        inset 0 0 0 6px var(--darker-bg);
    padding: 8px;
    background-color: var(--darker-bg);
    overflow: hidden;
}

.mobile-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
}

.device-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.device-mockup:hover .device-overlay {
    opacity: 0;
}

.device-screen-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: 0.8rem;
    margin-bottom: 40px;
}

.app-header i {
    margin: 0 2px;
}

.app-logo {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: 'Prompt', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.app-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.app-button {
    flex: 1;
    background: var(--gradient-accent);
    color: var(--darker-bg);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.device-features {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.device-feature {
    background-color: var(--card-bg);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.device-feature i {
    color: var(--primary-color);
    margin-right: 8px;
}

.mobile-info-box {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-box-header {
    background: var(--gradient-accent);
    color: var(--darker-bg);
    padding: 20px;
    display: flex;
    align-items: center;
}

.info-box-header i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.info-box-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--darker-bg);
}

.info-box-content {
    padding: 25px;
}

.info-box-content p {
    margin-bottom: 20px;
}

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

.cta-container {
    text-align: center;
    padding: 10px 25px 25px;
}

/* Media Queries for Mobile Section */
@media (max-width: 992px) {
    .mobile-content {
        flex-direction: column-reverse;
    }

    .mobile-image-container {
        max-width: 400px;
    }
}

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

    .advantage-icon {
        width: 40px;
        height: 40px;
    }

    .advantage-icon i {
        font-size: 1.1rem;
    }

    .advantage-text h3 {
        font-size: 1rem;
    }

    .advantage-text p {
        font-size: 0.85rem;
    }

    .mobile-advantages {
        padding: 20px;
    }

    .info-box-header {
        padding: 15px;
    }

    .info-box-header i {
        font-size: 1.3rem;
    }

    .info-box-header h3 {
        font-size: 1.1rem;
    }

    .info-box-content {
        padding: 20px;
    }

    .device-features {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .device-feature {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .mobile-section {
        padding: 50px 0;
    }

    .mobile-image-container {
        max-width: 90%;
    }

    .advantage-item {
        margin-bottom: 15px;
    }

    .app-logo {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .app-logo i {
        font-size: 1.5rem;
    }

    .app-button {
        font-size: 0.8rem;
        padding: 8px;
    }

    .device-features {
        flex-direction: column;
        align-items: center;
    }

    .device-feature {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .info-box-header {
        flex-direction: column;
        text-align: center;
        padding-bottom: 10px;
    }

    .info-box-header i {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .info-box-content {
        padding: 15px;
    }
}

/* Thai Services Section Styles */
.thai-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.thai-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 108, 0, 0.08) 0%, rgba(255, 108, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.thai-section::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.08) 0%, rgba(0, 170, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.thai-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.thai-intro p {
    font-size: 1.15rem;
}

.thai-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.thai-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.thai-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.thai-image-wrapper:hover .thai-image {
    transform: scale(1.05);
}

.thai-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thai-image-badge i {
    margin-right: 8px;
}

.thai-features-container {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.thai-feature-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.thai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    background: var(--gradient-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--darker-bg);
    font-size: 1.2rem;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.thai-agent-section {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    border-left: 5px solid var(--accent-color);
}

.agent-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.agent-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.agent-icon i {
    color: var(--darker-bg);
    font-size: 1.8rem;
}

.agent-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.agent-content {
    padding: 30px;
}

.agent-content p {
    margin-bottom: 20px;
}

.thai-bonus-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.thai-bonus-list li {
    position: relative;
    padding: 15px 15px 15px 45px;
    background-color: var(--darker-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.thai-bonus-list li:hover {
    transform: translateY(-5px);
}

.thai-bonus-list li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.thai-events {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.thai-events p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thai-events p:last-of-type {
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.cta-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.cta-container .btn {
    min-width: 200px;
}

/* Thai Festival Animation */
@keyframes festivalLight {
    0% {
        opacity: 0.5;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.1);
    }

    100% {
        opacity: 0.5;
        transform: translateY(0) scale(1);
    }
}

.thai-events::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
    animation: festivalLight 3s infinite ease-in-out;
}

.thai-events::after {
    content: "";
    position: absolute;
    top: -15px;
    right: 50px;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
    animation: festivalLight 2.5s infinite ease-in-out 0.5s;
}

/* Media Queries for Thai Section */
@media (max-width: 992px) {
    .thai-content {
        flex-direction: column;
    }

    .thai-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .agent-header {
        padding: 20px;
    }

    .agent-icon {
        width: 50px;
        height: 50px;
    }

    .agent-icon i {
        font-size: 1.5rem;
    }

    .agent-header h3 {
        font-size: 1.2rem;
    }

    .agent-content {
        padding: 25px;
    }

    .thai-bonus-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .thai-intro p {
        font-size: 1.05rem;
    }

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

    .thai-feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .agent-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .agent-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .thai-bonus-list {
        grid-template-columns: 1fr;
    }

    .thai-events {
        padding: 25px 20px;
    }

    .thai-events p:last-of-type {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .thai-intro {
        margin-bottom: 30px;
    }

    .thai-intro p {
        font-size: 1rem;
    }

    .thai-image-badge {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .agent-content {
        padding: 20px 15px;
    }

    .thai-bonus-list li {
        padding: 12px 12px 12px 40px;
        font-size: 0.9rem;
    }

    .thai-bonus-list li i {
        left: 12px;
        font-size: 1rem;
    }

    .cta-container .btn {
        width: 100%;
        min-width: 0;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IGlkPSJwYXR0ZXJuLWJhY2tncm91bmQiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InRyYW5zcGFyZW50Ij48L3JlY3Q+PGnpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0iIzMzMyI+PC9jaXJjbGU+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+');
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 3px 0;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

.footer-responsible {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.responsible-gaming i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-payments {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    background-color: var(--card-bg);
    border-radius: 5px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.payment-icon:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.footer-copyright {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Media Queries for Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-social {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social h4 {
        text-align: center;
    }

    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-responsible {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

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

    .social-icons {
        justify-content: center;
    }

    .responsible-gaming {
        font-size: 0.8rem;
    }

    .responsible-gaming i {
        font-size: 1rem;
    }

    .payment-icon {
        width: 40px;
        height: 25px;
        font-size: 0.9rem;
    }

    .footer-links-column h4,
    .footer-social h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

/* Sticky Bottom Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.sticky-btn span {
    white-space: nowrap;
}

.login-btn {
    background-color: var(--card-bg);
    border-top: 3px solid var(--accent-color);
}

.login-btn:hover {
    background-color: #2a2a2a;
    color: var(--accent-color);
}

.register-btn {
    background: var(--gradient-accent);
    color: var(--darker-bg);
    border-top: 3px solid transparent;
}

.register-btn:hover {
    filter: brightness(110%);
    color: var(--darker-bg);
}

.bonus-btn {
    background-color: var(--card-bg);
    border-top: 3px solid var(--primary-color);
}

.bonus-btn:hover {
    background-color: #2a2a2a;
    color: var(--primary-color);
}

/* Media Queries for Sticky Buttons */
@media (max-width: 576px) {
    .sticky-btn {
        padding: 10px 5px;
        font-size: 0.8rem;
    }

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

/* Additional bottom padding for content to prevent sticky buttons from covering it */
body {
    padding-bottom: 70px;
    /* Adjust based on sticky buttons height */
}

@media (max-width: 576px) {
    body {
        padding-bottom: 60px;
        /* Smaller padding for mobile */
    }
}