/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 9, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--text-color-muted);
}

.main-nav {
    flex-grow: 1;
    margin: 0 var(--spacing-lg);
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: var(--spacing-md);
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Prompt', sans-serif;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: var(--spacing-xs);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Add space below header for main content */
main {
    padding-top: 80px;
    /* Adjust based on header height */
}

/* Footer Styles */
.site-footer {
    background-color: #0a0915;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--text-color-muted);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236a00ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    color: var(--text-color-muted);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
}

.footer-links h3,
.footer-policy h3,
.footer-contact h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-policy h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-links ul,
.footer-policy ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-policy li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-policy a {
    color: var(--text-color-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-policy a:hover {
    color: var(--secondary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-color-muted);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(10, 9, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 0.8rem 0;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
}

.sticky-btn:nth-child(1) {
    background-color: var(--primary-color);
}

.sticky-btn:nth-child(2) {
    background-color: var(--secondary-color);
    color: #000;
}

.sticky-btn:nth-child(3) {
    background-color: #e44d26;
}

.sticky-btn i {
    margin-right: 0.5rem;
}

.sticky-btn:hover {
    filter: brightness(110%);
}

/* Add padding to bottom of body to compensate for sticky buttons */
body {
    padding-bottom: 60px;
    /* Adjust based on sticky buttons height */
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .main-nav {
        margin: 0 var(--spacing-sm);
    }

    .nav-list {
        gap: var(--spacing-sm);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg) var(--spacing-md);
    }
}

@media (max-width: 1210px) {
    .header-content {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 9, 20, 0.97);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: -1;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: 0.8rem;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .sticky-btn {
        font-size: 0.8rem;
    }

    .sticky-btn i {
        margin-right: 0.3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .experience-text p {
        font-size: 1rem;
    }

    .login-section .section-header h2 {
        font-size: 1.8rem;
    }

    .login-text p {
        font-size: 1rem;
    }

    .login-image-decoration {
        display: none;
    }

    .slots-section .section-header h2 {
        font-size: 1.8rem;
    }

    .slots-info p {
        font-size: 1rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .wallet-section .section-header h2 {
        font-size: 1.8rem;
    }

    .wallet-info p {
        font-size: 1rem;
    }

    .wallet-steps h3 {
        font-size: 1.3rem;
    }

    .promotions-section .section-header h2 {
        font-size: 1.8rem;
    }

    .promotions-intro p {
        font-size: 1rem;
    }

    .access-content h3 {
        font-size: 1.3rem;
    }

    .access-content p {
        font-size: 1rem;
    }

    .highlight-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-policy h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .sticky-btn {
        padding: 0.6rem 0.3rem;
        font-size: 0.75rem;
    }

    .sticky-btn i {
        margin-right: 0.2rem;
        font-size: 0.9rem;
    }
}

/* Base Styles - Dark Theme */
:root {
    /* Theme Colors */
    --primary-color: #6a00ff;
    --primary-color-dark: #5400cc;
    --secondary-color: #ff9100;
    --text-color: #e0e0e0;
    --text-color-muted: #a0a0a0;
    --bg-color-dark: #121212;
    --bg-color-card: #1e1e1e;
    --bg-color-card-hover: #2a2a2a;
    --border-color: #333333;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

/* Reset & 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-color);
    background-color: var(--bg-color-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #000;
}

.btn-secondary:hover {
    background-color: #ffaa33;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive Image */
.responsive-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1a0c2e 0%, #13071f 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 70%, rgba(106, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: var(--spacing-lg);
}

.hero-description {
    color: var(--text-color-muted);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.6rem;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Experience Section Styles */
.experience-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-color-dark);
    position: relative;
}

.experience-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.experience-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.experience-text {
    flex: 1.5;
}

.experience-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.experience-text strong {
    color: var(--secondary-color);
    font-weight: bold;
}

.experience-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    background-color: var(--bg-color-card);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--bg-color-card-hover);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.cta-container {
    margin-top: var(--spacing-lg);
    text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .experience-content {
        flex-direction: column;
    }

    .experience-features {
        width: 100%;
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .experience-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .experience-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: var(--spacing-sm);
    }

    .feature-card i {
        font-size: 2rem;
    }
}

/* Login Section Styles */
.login-section {
    padding: var(--spacing-xl) 0;
    background-color: #0d0d1a;
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236a00ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.login-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-image {
    flex: 1;
    position: relative;
}

.login-image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.login-image-decoration i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    position: absolute;
}

.login-image-decoration i:nth-child(1) {
    top: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.login-image-decoration i:nth-child(2) {
    top: 70%;
    left: 20%;
    animation: float 8s ease-in-out infinite;
}

.login-image-decoration i:nth-child(3) {
    top: 40%;
    right: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.login-text {
    flex: 1.5;
}

.login-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.login-text strong {
    color: var(--secondary-color);
    font-weight: bold;
}

.login-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .login-content {
        flex-direction: column-reverse;
    }

    .login-image,
    .login-text {
        width: 100%;
    }

    .login-text {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .login-section .section-header h2 {
        font-size: 1.8rem;
    }

    .login-text p {
        font-size: 1rem;
    }

    .login-image-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .login-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .login-buttons .btn {
        width: 100%;
    }
}

/* Slots Section Styles */
.slots-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #0a0915 0%, #0f0a20 100%);
    position: relative;
}

.slots-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 145, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(106, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.slots-content {
    display: flex;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.slots-info {
    flex: 1;
}

.slots-info p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.slots-info strong {
    color: var(--secondary-color);
    font-weight: bold;
}

.slots-showcase {
    flex: 1.2;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.game-card {
    background-color: var(--bg-color-card);
    border-radius: var(--border-radius-md);
    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(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background-color: var(--secondary-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-md);
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-play:hover {
    background-color: #ffaa33;
    transform: scale(1.05);
    color: #000;
}

.game-info {
    padding: var(--spacing-sm);
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.game-details {
    display: flex;
    justify-content: space-between;
    color: var(--text-color-muted);
    font-size: 0.9rem;
}

.game-details span {
    display: flex;
    align-items: center;
}

.game-details i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.slots-cta {
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .slots-content {
        flex-direction: column;
    }

    .slots-info,
    .slots-showcase {
        width: 100%;
    }

    .slots-info {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .slots-section .section-header h2 {
        font-size: 1.8rem;
    }

    .slots-info p {
        font-size: 1rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .slots-section .section-header h2 {
        font-size: 1.6rem;
    }

    .game-info h3 {
        font-size: 1.1rem;
    }

    .btn-large {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Wallet Section Styles */
.wallet-section {
    padding: var(--spacing-xl) 0;
    background-color: #0c0c18;
    position: relative;
    overflow: hidden;
}

.wallet-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, rgba(106, 0, 255, 0.05) 0%, transparent 60%), linear-gradient(120deg, rgba(255, 145, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.wallet-content {
    position: relative;
    z-index: 1;
}

.wallet-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.wallet-feature-card {
    background-color: rgba(30, 30, 46, 0.7);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wallet-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(42, 42, 64, 0.7);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.wallet-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.wallet-feature-card p {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.wallet-info-wrapper {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: center;
}

.wallet-image {
    flex: 1;
}

.wallet-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wallet-info {
    flex: 1.5;
}

.wallet-info p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

.wallet-info strong {
    color: var(--secondary-color);
    font-weight: bold;
}

.wallet-steps {
    background-color: rgba(30, 30, 46, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.wallet-steps h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    color: var(--text-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.step-card {
    display: flex;
    align-items: flex-start;
    background-color: rgba(42, 42, 64, 0.6);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.wallet-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .wallet-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .wallet-info-wrapper {
        flex-direction: column;
    }

    .wallet-image,
    .wallet-info {
        width: 100%;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wallet-section .section-header h2 {
        font-size: 1.8rem;
    }

    .wallet-info p {
        font-size: 1rem;
    }

    .wallet-steps h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .wallet-features {
        grid-template-columns: 1fr;
    }

    .wallet-section .section-header h2 {
        font-size: 1.6rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-card {
        margin-bottom: var(--spacing-sm);
    }

    .wallet-cta .btn {
        width: 100%;
    }
}

/* Promotions Section Styles */
.promotions-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1a0c2e 0%, #13071f 100%);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(106, 0, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(255, 145, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.promotions-content {
    position: relative;
    z-index: 1;
}

.promotions-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.promotions-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.promotions-intro strong {
    color: var(--secondary-color);
    font-weight: bold;
}

.promotions-offers {
    margin-bottom: var(--spacing-xl);
}

.promo-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.promo-card {
    background-color: rgba(30, 30, 46, 0.7);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(42, 42, 64, 0.7);
}

.promo-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon i {
    font-size: 1.5rem;
    color: white;
}

.promo-content {
    flex-grow: 1;
}

.promo-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.promo-content p {
    font-size: 0.95rem;
    color: var(--text-color-muted);
    line-height: 1.6;
}

.promo-content strong {
    color: var(--secondary-color);
    font-weight: bold;
}

.promotions-access {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.access-content {
    flex: 2;
    background-color: rgba(30, 30, 46, 0.5);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
}

.access-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    text-align: center;
}

.access-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--text-color-muted);
}

.access-content strong {
    color: var(--secondary-color);
    font-weight: bold;
}

.promo-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.promo-highlight {
    flex: 1;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(106, 0, 255, 0.2) 0%, rgba(255, 145, 0, 0.2) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-color);
    color: #000;
    padding: 5px 30px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.highlight-card h3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-md);
    font-size: 1.5rem;
    margin: 0;
}

.highlight-details {
    padding: var(--spacing-md);
}

.highlight-details p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.highlight-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.highlight-details li {
    display: flex;
    align-items: center;
    padding: var(--spacing-xs) 0;
    font-size: 1rem;
    color: var(--text-color-muted);
}

.highlight-details li i {
    color: var(--secondary-color);
    margin-right: var(--spacing-xs);
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
    .promo-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .promotions-access {
        flex-direction: column;
    }

    .access-content,
    .promo-highlight {
        width: 100%;
    }

    .highlight-card {
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .promotions-section .section-header h2 {
        font-size: 1.8rem;
    }

    .promotions-intro p {
        font-size: 1rem;
    }

    .access-content h3 {
        font-size: 1.3rem;
    }

    .access-content p {
        font-size: 1rem;
    }

    .highlight-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .promo-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .promotions-section .section-header h2 {
        font-size: 1.6rem;
    }

    .promo-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .promo-icon {
        margin-bottom: var(--spacing-xs);
    }

    .highlight-badge {
        right: -40px;
        padding: 3px 40px;
    }
}