/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
    height: 70px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.4rem;
}

.main-nav {
    display: flex;
    margin-left: auto;
    margin-right: var(--spacing-md);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover {
    color: var(--text-primary);
}

.nav-links li a:hover::after {
    width: 80%;
}

.header-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon .bar {
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    padding: var(--spacing-md);
    flex: 1;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: var(--spacing-md);
}

.mobile-nav-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.mobile-nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.mobile-menu-buttons {
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main content adjustment to accommodate fixed header */
main {
    padding-top: 70px;
}

/* Responsive Header */
@media screen and (max-width: 1200px) {

    .main-nav,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        padding: 0.75rem var(--spacing-md);
    }
}

@media screen and (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-accent {
        font-size: 1.2rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(255, 71, 87, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 90%, rgba(123, 237, 159, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 350px;
    margin-top: var(--spacing-sm);
}

.footer-links h3,
.footer-legal h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-links h3::after,
.footer-legal h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a,
.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--text-primary);
}

.footer-links a::before,
.footer-legal a::before {
    content: '›';
    margin-right: 5px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
}

.copyright p,
.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .footer-logo {
        grid-column: span 2;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }

    .tagline {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-logo {
        grid-column: span 1;
    }

    .site-footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 900;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.sticky-login {
    background-color: #2c3e50;
}

.sticky-register {
    background-color: var(--primary-color);
}

.sticky-bonus {
    background-color: var(--accent-color);
}

.sticky-login:hover {
    background-color: #34495e;
    color: var(--text-primary);
}

.sticky-register:hover {
    background-color: #e03a4a;
    color: var(--text-primary);
}

.sticky-bonus:hover {
    background-color: #e6950d;
    color: var(--text-primary);
}

/* Adding bottom padding to main content to prevent overlap with sticky buttons */
body {
    padding-bottom: 60px;
}

/* Responsive Sticky Buttons */
@media screen and (max-width: 576px) {
    .sticky-btn {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
    }

    .sticky-btn i {
        font-size: 1rem;
    }

    body {
        padding-bottom: 50px;
    }
}

/* Base Styles & Theme Variables */
:root {
    /* Main Colors */
    --primary-color: #ff4757;
    --secondary-color: #7bed9f;
    --accent-color: #ffa502;
    /* Background Colors */
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #1e1e1e;
    --bg-gradient: linear-gradient(135deg, #151515 0%, #0e0e0e 100%);
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    /* Border & Shadow Colors */
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
    /* Button Colors */
    --btn-primary-bg: #ff4757;
    --btn-primary-text: #ffffff;
    --btn-secondary-bg: #2e2e2e;
    --btn-secondary-text: #ffffff;
    /* Spacing Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    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;
    border: none;
    text-align: center;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
}

.btn-primary:hover {
    background-color: #e03a4a;
    color: var(--btn-primary-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 71, 87, 0.3);
}

.btn-secondary {
    background-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
}

.btn-secondary:hover {
    background-color: #3d3d3d;
    color: var(--btn-secondary-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Section Styles */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 71, 87, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(123, 237, 159, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 60%;
    padding-right: var(--spacing-lg);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }

    .hero-image {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }
}

/* Features Section Styles */
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 165, 2, 0.07) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(123, 237, 159, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.features-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

.features-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-content a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}

.feature-content a:hover {
    color: var(--accent-color);
}

.features-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: rgba(46, 46, 46, 0.5);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.features-cta p {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

/* Responsive Styles for Features Section */
@media screen and (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .features-section h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .feature-card {
        padding: var(--spacing-md);
    }
}

@media screen and (max-width: 576px) {
    .features-section {
        padding: var(--spacing-lg) 0;
    }

    .features-section h2 {
        font-size: 1.5rem;
    }

    .features-intro {
        margin-bottom: var(--spacing-lg);
    }

    .feature-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }
}

/* Bonuses Section Styles */
.bonuses-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.bonuses-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.bonuses-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 237, 159, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.bonuses-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.bonus-text {
    flex: 1;
}

.bonus-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bonus-img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.bonus-image::before {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: 0;
}

.bonus-list {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bonus-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: rgba(46, 46, 46, 0.5);
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bonus-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    padding: var(--spacing-sm);
    background-color: rgba(255, 165, 2, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.bonus-item-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.bonus-footer {
    text-align: center;
}

.bonus-footer p {
    margin-bottom: var(--spacing-md);
}

.bonus-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

/* Responsive Styles for Bonuses Section */
@media screen and (max-width: 992px) {
    .bonus-content {
        flex-direction: column-reverse;
        gap: var(--spacing-lg);
    }

    .bonus-image {
        width: 100%;
    }

    .bonus-img {
        max-width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .bonus-items {
        grid-template-columns: 1fr;
    }

    .bonus-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .bonus-cta .btn {
        width: 100%;
    }

    .bonus-img {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .bonuses-section {
        padding: var(--spacing-lg) 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .bonus-item {
        padding: var(--spacing-sm);
    }

    .bonus-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .bonus-list {
        padding: var(--spacing-md);
    }
}

/* Games Section Styles */
.games-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 90%, rgba(123, 237, 159, 0.07) 0%, transparent 50%), radial-gradient(circle at 90% 10%, rgba(255, 71, 87, 0.07) 0%, transparent 50%);
    z-index: 0;
}

.games-section .container {
    position: relative;
    z-index: 1;
}

.games-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.games-image {
    flex: 1;
}

.game-slots-showcase {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.games-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.game-slots-showcase:hover .games-img {
    transform: scale(1.05);
}

.jackpot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.jackpot-badge i {
    font-size: 1rem;
}

.games-text {
    flex: 1;
}

.games-text p {
    margin-bottom: var(--spacing-md);
}

.game-providers {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.provider-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.provider-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
}

.provider-logo:hover {
    transform: translateY(-5px);
}

.provider-logo i {
    font-size: 2.5rem;
    color: var(--accent-color);
    background-color: rgba(255, 165, 2, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

.provider-logo span {
    font-weight: bold;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.additional-benefits {
    margin-bottom: var(--spacing-xl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background-color: rgba(46, 46, 46, 0.5);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: rgba(255, 71, 87, 0.1);
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-content h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.benefit-content p {
    margin-bottom: 0;
}

.games-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.games-footer p {
    margin-bottom: var(--spacing-md);
}

.games-cta {
    margin-top: var(--spacing-lg);
}

/* Responsive Styles for Games Section */
@media screen and (max-width: 992px) {
    .games-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .games-image,
    .games-text {
        width: 100%;
    }

    .game-slots-showcase {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .provider-logos {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .provider-logo {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: var(--spacing-sm);
    }

    .provider-logo i {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-md);
    }

    .benefit-icon {
        margin-bottom: var(--spacing-sm);
    }
}

@media screen and (max-width: 576px) {
    .games-section {
        padding: var(--spacing-lg) 0;
    }

    .jackpot-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-content h3 {
        font-size: 1.2rem;
    }
}

/* Access Section Styles */
.access-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.access-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 85% 15%, rgba(255, 71, 87, 0.05) 0%, transparent 60%), radial-gradient(circle at 15% 85%, rgba(123, 237, 159, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.access-section .container {
    position: relative;
    z-index: 1;
}

.access-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.access-text {
    flex: 1;
}

.access-devices {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.device-mockups {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-desktop,
.mockup-tablet,
.mockup-mobile {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border: 2px solid #444;
    overflow: hidden;
}

.mockup-desktop {
    width: 280px;
    height: 200px;
    z-index: 1;
    transform: translateY(-30px);
}

.mockup-tablet {
    width: 150px;
    height: 200px;
    z-index: 2;
    transform: translate(-100px, 60px);
}

.mockup-mobile {
    width: 90px;
    height: 160px;
    z-index: 3;
    transform: translate(100px, 70px);
}

.mockup-desktop i,
.mockup-tablet i,
.mockup-mobile i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.mockup-tablet i {
    font-size: 2.5rem;
}

.mockup-mobile i {
    font-size: 2rem;
}

.access-features {
    margin-bottom: var(--spacing-xl);
}

.access-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    list-style-type: none;
    padding: 0;
}

.access-item {
    display: flex;
    gap: var(--spacing-md);
    background-color: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.access-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.access-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.access-item-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.access-security {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid #444;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(123, 237, 159, 0.1);
    color: var(--secondary-color);
    font-size: 2rem;
    border-radius: 50%;
}

.security-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

.security-content p {
    margin-bottom: 0;
}

.access-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.access-footer p {
    margin-bottom: var(--spacing-lg);
}

.access-cta {
    margin-top: var(--spacing-md);
}

/* Fixed Font Awesome icon issue */
.access-icon .fa-laptop-mobile:before {
    content: "\f5fc";
    /* This is the content for fa-laptop-code */
}

/* Responsive Styles for Access Section */
@media screen and (max-width: 992px) {
    .access-content {
        flex-direction: column-reverse;
        gap: var(--spacing-lg);
    }

    .device-mockups {
        height: 300px;
        margin-bottom: var(--spacing-md);
    }

    .mockup-desktop {
        width: 240px;
        height: 170px;
    }

    .mockup-tablet {
        width: 130px;
        height: 170px;
    }

    .mockup-mobile {
        width: 80px;
        height: 140px;
    }
}

@media screen and (max-width: 768px) {
    .access-items {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .access-security {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }

    .security-icon {
        margin-bottom: var(--spacing-sm);
    }
}

@media screen and (max-width: 576px) {
    .access-section {
        padding: var(--spacing-lg) 0;
    }

    .device-mockups {
        height: 250px;
    }

    .mockup-desktop {
        width: 200px;
        height: 140px;
        transform: translateY(-20px);
    }

    .mockup-tablet {
        width: 110px;
        height: 140px;
        transform: translate(-70px, 50px);
    }

    .mockup-mobile {
        width: 70px;
        height: 120px;
        transform: translate(70px, 50px);
    }

    .mockup-desktop i {
        font-size: 2.5rem;
    }

    .mockup-tablet i {
        font-size: 2rem;
    }

    .mockup-mobile i {
        font-size: 1.5rem;
    }

    .access-item {
        padding: var(--spacing-md);
    }

    .access-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }
}

/* Experience Section Styles */
.experience-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(123, 237, 159, 0.07) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 71, 87, 0.07) 0%, transparent 50%);
    z-index: 0;
}

.experience-section .container {
    position: relative;
    z-index: 1;
}

.experience-intro {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.experience-image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.experience-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.experience-image:hover .experience-img {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    display: flex;
    justify-content: center;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.overlay-content span {
    font-weight: bold;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-right: 10px;
}

.overlay-content i {
    color: var(--accent-color);
    font-size: 1rem;
}

.experience-text {
    flex: 1;
}

.experience-text p {
    margin-bottom: var(--spacing-md);
}

.experience-features {
    margin-bottom: var(--spacing-xl);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 71, 87, 0.1);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.feature-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.experience-strategy {
    background-color: rgba(46, 46, 46, 0.5);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.experience-strategy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--accent-color) 100%);
}

.strategy-content {
    padding-left: calc(var(--spacing-md) + 5px);
}

.strategy-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.strategy-content p {
    margin-bottom: var(--spacing-md);
}

.strategy-content p:last-child {
    margin-bottom: 0;
}

.experience-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.experience-footer p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.experience-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Responsive Styles for Experience Section */
@media screen and (max-width: 992px) {
    .experience-intro {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .experience-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .experience-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .experience-cta .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .experience-section {
        padding: var(--spacing-lg) 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: var(--spacing-md);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .strategy-content h3 {
        font-size: 1.2rem;
    }

    .experience-footer p {
        font-size: 1rem;
    }
}