/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 14, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.logo-highlight {
    color: var(--primary-color);
}

.logo:hover .logo-text {
    color: var(--accent-color);
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--text-primary);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: none;
    gap: 1rem;
}

.login-btn,
.register-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn {
    color: var(--text-primary);
    background-color: transparent;
    border: 1px solid var(--border-color);
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.register-btn {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #6c17e6);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, #9b59ff, #7828ff);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
}

.hamburger-icon {
    position: relative;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--background-dark);
    z-index: 999;
    padding: 2rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
}

body.menu-open .mobile-menu {
    transform: translateX(0);
}

body.menu-open .hamburger-icon .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .hamburger-icon .line:nth-child(2) {
    opacity: 0;
}

body.menu-open .hamburger-icon .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-list li {
    margin-bottom: 1.25rem;
}

.mobile-nav-list a {
    display: block;
    color: var(--text-secondary);
    font-size: 1.25rem;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-actions .btn-primary,
.mobile-actions .btn-secondary {
    text-align: center;
    justify-content: center;
}

/* Footer Styles */
.site-footer {
    padding: 4rem 0 2rem;
    background-color: var(--background-card);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(143, 68, 253, 0.05) 0%, transparent 30%), linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-logo {
    text-align: center;
}

.footer-logo .logo-text {
    font-size: 2.25rem;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.link-group h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.75rem;
}

.link-group a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.link-group a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s ease;
}

.link-group a:hover {
    color: var(--accent-color);
}

.link-group a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Sticky Bottom Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 900;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.login-sticky {
    background-color: #1a1c2d;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
}

.register-sticky {
    background: linear-gradient(135deg, var(--primary-color), #6c17e6);
    color: white;
}

.bonus-sticky {
    background: linear-gradient(135deg, var(--secondary-color), #ff5100);
    color: white;
}

.sticky-btn:hover {
    transform: translateY(-5px);
}

/* Add spacing to prevent content from being hidden behind fixed elements */
body {
    padding-top: 80px;
    /* Height of the header */
    padding-bottom: 60px;
    /* Height of the sticky buttons */
}

/* Media Queries for Responsive Design */
@media (min-width: 992px) {
    .main-nav {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .footer-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-logo {
        flex: 1;
        text-align: left;
    }

    .footer-links {
        flex: 2;
        flex-direction: row;
        justify-content: space-around;
    }

    .sticky-btn {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .link-group {
        flex-basis: calc(50% - 1rem);
    }

    .sticky-btn {
        padding: 1.15rem 1rem;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        height: 70px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    body {
        padding-top: 70px;
    }

    .sticky-btn {
        font-size: 0.8rem;
        padding: 0.9rem 0.5rem;
    }

    .sticky-btn i {
        margin-right: 0.25rem;
    }
}

@media (max-width: 359px) {
    .sticky-btn {
        font-size: 0.75rem;
        padding: 0.9rem 0.25rem;
    }
}

/* Base Styles - Theme Variables and Reset */
:root {
    /* Dark Theme Color Palette */
    --primary-color: #8f44fd;
    /* Vibrant purple for primary actions */
    --secondary-color: #ff7800;
    /* Vibrant orange for secondary elements */
    --accent-color: #00d9ff;
    /* Bright cyan for accents & highlights */
    --background-dark: #0d0e19;
    /* Very dark blue-black for main background */
    --background-card: #1a1c2d;
    /* Slightly lighter dark blue for cards/sections */
    --background-input: #292b3d;
    /* Even lighter for input fields */
    --text-primary: #ffffff;
    /* White for main text */
    --text-secondary: #b3b3cc;
    /* Light lavender-gray for secondary text */
    --text-muted: #7a7a9d;
    /* Muted bluish-gray for less important text */
    --border-color: #2d2e42;
    /* Dark border color with slight blue tint */
    --success-color: #00c853;
    /* Green for success messages */
    --danger-color: #ff3d71;
    /* Red for warnings/errors */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.7);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-md);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #6c17e6);
    color: var(--text-primary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9b59ff, #7828ff);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section Styles */
.hero-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1c2d 0%, var(--background-dark) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(143, 68, 253, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 14, 25, 0.8), rgba(13, 14, 25, 0) 50%);
    pointer-events: none;
}

.jackpot-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff7800, #ff5100);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: bold;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .hero-section .container {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        margin: 0;
    }

    .hero-image {
        flex: 1;
    }

    h1 {
        font-size: 3rem;
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Section 2 - Casino Experience Section */
.experience-section {
    padding: 5rem 0;
    position: relative;
    background-color: var(--background-dark);
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238f44fd' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.experience-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-divider {
    position: relative;
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 0 auto;
}

.section-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-dark);
    padding: 0 15px;
    color: var(--accent-color);
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.experience-text {
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.experience-text p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.experience-text p:last-child {
    margin-bottom: 0;
}

.experience-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--background-card);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(143, 68, 253, 0.3);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.2), rgba(0, 217, 255, 0.2));
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.action-banner {
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.15), rgba(0, 217, 255, 0.15));
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border: 1px solid rgba(143, 68, 253, 0.3);
    box-shadow: var(--shadow-md);
}

.banner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.banner-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Media Queries */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .action-banner .btn-primary {
        flex-shrink: 0;
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .experience-text {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .experience-text {
        padding: 1.5rem;
    }

    .action-banner {
        padding: 2rem 1.5rem;
    }
}

/* Section 3 - Baccarat Section */
.baccarat-section {
    padding: 5rem 0;
    background-color: var(--background-card);
    position: relative;
    overflow: hidden;
}

.baccarat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 120, 0, 0.05) 0%, transparent 50%), linear-gradient(45deg, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.baccarat-section .container {
    position: relative;
    z-index: 2;
}

.baccarat-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.baccarat-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.baccarat-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.baccarat-image:hover img {
    transform: scale(1.02);
}

.live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(13, 14, 25, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff3d71;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 61, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 61, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 61, 113, 0);
    }
}

.baccarat-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.baccarat-text {
    background-color: var(--background-dark);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.baccarat-text p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.baccarat-text p:last-child {
    margin-bottom: 0;
}

.baccarat-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--background-dark);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.15), rgba(255, 120, 0, 0.15));
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.benefit-info {
    display: flex;
    flex-direction: column;
}

.benefit-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.baccarat-cta {
    margin-top: 1rem;
    text-align: center;
}

.baccarat-cta .btn-primary {
    width: 100%;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-note strong {
    color: var(--primary-color);
}

/* Media Queries */
@media (min-width: 992px) {
    .baccarat-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .baccarat-image {
        flex: 1;
        max-width: 45%;
    }

    .baccarat-details {
        flex: 1;
    }

    .baccarat-cta {
        text-align: left;
    }

    .baccarat-cta .btn-primary {
        width: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .benefits-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .benefit-item:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .baccarat-section {
        padding: 4rem 0;
    }

    .baccarat-text,
    .benefit-item {
        padding: 1.25rem;
    }
}

/* Section 4 - Slots Section */
.slots-section {
    padding: 5rem 0;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.slots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(143, 68, 253, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 120, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.slots-section .container {
    position: relative;
    z-index: 2;
}

.slots-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.slots-intro {
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.slots-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.slots-intro p:last-child {
    margin-bottom: 0;
}

.slots-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.game-showcase {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.game-card {
    background-color: var(--background-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 75%;
    /* 4:3 Aspect ratio */
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(13, 14, 25, 0.8);
    color: var(--text-primary);
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6c17e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.game-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-info {
    padding: 1.25rem;
}

.game-info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.game-stats {
    display: flex;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-item i {
    color: var(--secondary-color);
}

.slots-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slots-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: var(--background-card);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.slots-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.15), rgba(0, 217, 255, 0.15));
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.slots-cta {
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.1), rgba(255, 120, 0, 0.1));
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(143, 68, 253, 0.2);
    box-shadow: var(--shadow-md);
}

.slots-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slots-cta .btn-primary {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .game-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-row {
        flex-direction: row;
    }

    .slots-feature {
        flex: 1;
    }

    .slots-intro {
        padding: 2.5rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .game-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .slots-section {
        padding: 4rem 0;
    }

    .slots-intro {
        padding: 1.5rem;
    }

    .slots-cta {
        padding: 2rem 1.5rem;
    }

    .slots-cta p {
        font-size: 1.1rem;
    }
}

/* Section 5 - Promotions Section */
.promotions-section {
    padding: 5rem 0;
    background-color: var(--background-card);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(143, 68, 253, 0.05) 0%, transparent 40%), linear-gradient(135deg, rgba(255, 120, 0, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.promotions-section .container {
    position: relative;
    z-index: 2;
}

.promotions-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.promo-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promo-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.promo-card {
    background-color: var(--background-dark);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.promo-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.1), rgba(255, 120, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    border: 1px solid rgba(255, 120, 0, 0.2);
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7800, #ff5100);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.promo-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.promo-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--background-dark);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.promo-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.promo-feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(143, 68, 253, 0.1));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-details strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info {
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border: 1px solid rgba(143, 68, 253, 0.2);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #6c17e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.info-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
}

.info-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Media Queries */
@media (min-width: 992px) {
    .promo-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info {
        flex-direction: row;
        text-align: left;
        padding: 2.5rem;
    }

    .info-icon {
        margin-bottom: 0;
    }

    .info-content {
        flex: 1;
    }

    .contact-info .btn-primary {
        align-self: center;
        flex-shrink: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .promo-features {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .promotions-section {
        padding: 4rem 0;
    }

    .promo-intro p {
        font-size: 1rem;
    }

    .promo-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .promo-icon {
        top: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .promo-card h3 {
        font-size: 1.25rem;
        padding-right: 50px;
    }

    .contact-info {
        padding: 1.75rem;
    }
}

/* Section 6 - Registration Guide Section */
.registration-section {
    padding: 5rem 0;
    background-color: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 90%, rgba(143, 68, 253, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 10%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.registration-section .container {
    position: relative;
    z-index: 2;
}

.registration-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.step-card {
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #6c17e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    font-family: 'Prompt', sans-serif;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.step-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.step-details strong {
    color: var(--primary-color);
    font-weight: 700;
}

.registration-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(143, 68, 253, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 217, 255, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--background-dark), var(--background-card));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

.registration-cta {
    background-color: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.registration-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(143, 68, 253, 0.05) 0%, transparent 40%), linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-content p:last-child {
    margin-bottom: 0;
}

.cta-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-note {
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* Media Queries */
@media (min-width: 992px) {
    .registration-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .info-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-cta {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .cta-content {
        flex: 1;
    }

    .cta-content h3,
    .cta-content p {
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .registration-section {
        padding: 4rem 0;
    }

    .step-card,
    .info-card {
        padding: 1.75rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .registration-cta {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}