/* Global Styles */
:root {
    --primary-color: #7000ff;
    --primary-hover: #8c33ff;
    --secondary-color: #ff9100;
    --dark-bg: #0f0f1a;
    --darker-bg: #080812;
    --card-bg: #1a1a2e;
    --card-hover: #252547;
    --light-text: #ffffff;
    --gray-text: #b0b0cc;
    --border-color: #2a2a4a;
    --header-height: 70px;
    --gradient-primary: linear-gradient(135deg, #7000ff 0%, #9c44ff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff9100 0%, #ffb144 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--gray-text);
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

section {
    padding: 80px 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(112, 0, 255, 0.4);
}

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

.outline-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(112, 0, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(112, 0, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(112, 0, 255, 0);
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(8, 8, 18, 0.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.logo-icon i {
    font-size: 20px;
    color: var(--light-text);
}

.logo .logo-text {
    font-size: 28px;
    color: var(--light-text);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(112, 0, 255, 0.3);
}

.logo span {
    color: var(--primary-color);
    position: relative;
    padding-left: 2px;
}

.logo span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.desktop-nav ul li {
    margin-left: 20px;
}

.desktop-nav ul li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    position: relative;
}

.desktop-nav ul li a i {
    margin-right: 8px;
    font-size: 16px;
}

.desktop-nav ul li a:hover {
    color: var(--primary-color);
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.desktop-nav ul li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

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

.header-actions .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--darker-bg);
    z-index: 999;
    transition: var(--transition);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 10px 0;
}

.mobile-nav ul li a i {
    margin-right: 15px;
    width: 24px;
    text-align: center;
    font-size: 20px;
}

.mobile-social-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
}

.mobile-nav ul li a.active {
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background-image: url('168pg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 8, 18, 0.9) 0%, rgba(15, 15, 26, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 30px;
}

.hero-cta .btn {
    font-size: 18px;
    padding: 14px 32px;
}

.hero-image {
    display: none; /* Hide the img element since we're using background-image */
}

.floating-stats {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 2;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    background-color: rgba(26, 26, 46, 0.8);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    min-width: 200px;
}

.stat-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--light-text);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray-text);
}

/* Games Section */
.games-section {
    background-color: var(--dark-bg);
}

.games-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--card-bg);
    border: none;
    border-radius: 50px;
    color: var(--gray-text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.game-card-image {
    position: relative;
    overflow: hidden;
}

.game-card-image img {
    border-radius: 12px 12px 0 0;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 18, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.play-btn {
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.game-card-content {
    padding: 20px;
}

.game-card-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.game-rating {
    color: var(--secondary-color);
}

/* Bonus Section */
.bonus-section {
    background-color: var(--darker-bg);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.bonus-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.bonus-card.featured {
    border: 2px solid var(--secondary-color);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: var(--darker-bg);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.bonus-card-header {
    padding: 30px 20px;
    text-align: center;
    background: var(--gradient-primary);
    position: relative;
}

.bonus-card-header i {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
}

.bonus-card-header h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 0;
}

.bonus-card-body {
    padding: 30px 20px;
    text-align: center;
}

.bonus-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

/* About Section */
.about-section {
    background-color: var(--dark-bg);
}

.about-content {
    padding: 0 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.about-contact {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.about-contact h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info p i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

/* Footer */
.site-footer {
    background-color: var(--darker-bg);
    padding: 60px 20px 100px; /* Increased bottom padding to make room for sticky buttons */
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-logo-icon {
    margin-right: 10px;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.footer-logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.footer-logo-icon i {
    font-size: 18px;
    color: var(--light-text);
}

.footer-logo h2 {
    font-size: 24px;
    color: var(--light-text);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(112, 0, 255, 0.3);
}

.footer-logo span {
    color: var(--primary-color);
    position: relative;
    padding-left: 2px;
}

.footer-logo span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 14px;
    margin-left: 46px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

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

.footer-links-column ul li a {
    color: var(--gray-text);
}

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

.footer-payment h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

.payment-icons i {
    font-size: 24px;
    color: var(--gray-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--gray-text);
    margin-bottom: 5px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: rgba(8, 8, 18, 0.95);
    padding: 15px 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    margin: 0 5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-btn i {
    margin-right: 5px;
}

.login-btn {
    background-color: var(--card-bg);
    color: var(--light-text);
}

.register-btn {
    background: var(--gradient-primary);
    color: white;
}

.bonus-btn {
    background: var(--gradient-secondary);
    color: var(--darker-bg);
}

.sticky-btn:hover {
    transform: translateY(-3px);
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .desktop-nav ul li {
        margin-left: 15px;
    }
    
    .desktop-nav ul li a {
        font-size: 14px;
    }
    
    .desktop-nav ul li a i {
        margin-right: 5px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-actions .social-icons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .floating-stats {
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .bonus-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .featured-slots-content {
        flex-direction: column;
    }
    
    .featured-slots-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
        height: auto;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-cta .btn {
        font-size: 16px;
        padding: 12px 28px;
    }
    
    .stat-item {
        min-width: 160px;
    }
    
    section {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .games-grid,
    .bonus-cards,
    .about-features {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .sticky-btn {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .sticky-btn i {
        margin-right: 3px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .featured-slots-conclusion {
        padding: 30px 20px;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .jackpot-value {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-cta .btn {
        font-size: 14px;
        padding: 10px 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .bonus-amount {
        font-size: 24px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .games-grid,
    .bonus-cards,
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .sticky-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .sticky-btn i {
        font-size: 14px;
    }
    
    .site-footer {
        padding: 40px 0 80px;
    }
    
    .featured-slots-text p {
        font-size: 14px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 20px;
    }
    
    .featured-slots-conclusion p {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }
    
    .logo .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-cta .btn {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .sticky-btn {
        font-size: 10px;
    }
    
    .sticky-btn i {
        font-size: 12px;
    }
    
    .jackpot-value {
        font-size: 24px;
    }
}

/* Slot Popularity Section */
.slot-popularity-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.slot-popularity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('asia-map.webp');
    background-position: center;
    background-size: cover;
    opacity: 0.03;
    z-index: 1;
}

.slot-popularity-section .container {
    position: relative;
    z-index: 2;
}

.popularity-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.popularity-split-view {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.popularity-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.popularity-stats-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    flex: 1;
    background: linear-gradient(145deg, var(--darker-bg), var(--card-bg));
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-percentage {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.4;
}

.popularity-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reason-card {
    display: flex;
    gap: 20px;
    background-color: var(--darker-bg);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon i {
    font-size: 24px;
    color: white;
}

.reason-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light-text);
    line-height: 1.4;
}

.reason-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

.popularity-additional {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.additional-info {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.additional-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    padding-bottom: 15px;
}

.additional-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.additional-info p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-box {
    background: linear-gradient(145deg, var(--primary-color) 0%, #9c44ff 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern-dots.webp');
    opacity: 0.1;
    z-index: 1;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.cta-box .primary-btn {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-box .outline-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-box .primary-btn:hover {
    background: var(--darker-bg);
    color: white;
}

.cta-box .outline-btn:hover {
    background: white;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .popularity-reasons {
        grid-template-columns: 1fr;
    }
    
    .popularity-additional {
        grid-template-columns: 1fr;
    }
    
    .popularity-stats-horizontal {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .slot-popularity-section {
        padding-bottom: 80px;
    }
    
    .popularity-split-view {
        padding: 30px 20px;
    }
    
    .reason-card {
        padding: 20px;
    }
    
    .reason-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .reason-icon i {
        font-size: 20px;
    }
    
    .additional-info, .cta-box {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .popularity-split-view {
        padding: 25px 15px;
    }
    
    .stat-percentage {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .reason-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .additional-info h3 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .stat-percentage {
        font-size: 24px;
    }
}

/* Promotions Section */
.promotions-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('promo-pattern.webp');
    background-position: center;
    background-size: cover;
    opacity: 0.03;
    z-index: 1;
}

.promotions-section .container {
    position: relative;
    z-index: 2;
}

.promotions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.promotions-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9c44ff 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.promotions-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('coins-pattern.webp');
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 2;
}

.banner-text p {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-cta {
    flex: 1;
    text-align: center;
}

.banner-cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 14px 30px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    border: none;
}

.banner-cta .btn:hover {
    background: var(--darker-bg);
    color: white;
    transform: translateY(-5px);
}

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

.promotion-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.promotion-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(112, 0, 255, 0.3);
}

.promotion-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.promotion-icon i {
    font-size: 24px;
    color: white;
}

.promotion-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.promotion-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    flex-grow: 1;
}

.promotions-features {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-check {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 24px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.promotions-testimonial {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--light-text);
}

.promotions-conclusion {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.promotions-conclusion p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.conclusion-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .banner-text {
        flex: auto;
    }
    
    .banner-cta {
        flex: auto;
        width: 100%;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 30px 20px;
    }
    
    .banner-text p {
        font-size: 16px;
    }
    
    .promotion-card {
        padding: 25px 20px;
    }
    
    .promotion-icon {
        width: 50px;
        height: 50px;
    }
    
    .promotion-icon i {
        font-size: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .promotions-testimonial {
        padding: 25px 20px;
    }
    
    .promotions-conclusion {
        padding: 30px 20px;
    }
    
    .conclusion-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .banner-text p {
        font-size: 14px;
    }
    
    .promotion-card h3 {
        font-size: 18px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-check {
        text-align: center;
    }
    
    .testimonial-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .testimonial-content i {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-content p {
        text-align: center;
    }
    
    .testimonial-author {
        text-align: center;
    }
    
    .promotions-conclusion p {
        font-size: 16px;
    }
}

/* Game Techniques Section */
.game-techniques-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.game-techniques-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('techniques-bg.webp');
    background-position: center;
    background-size: cover;
    opacity: 0.03;
    z-index: 1;
}

.game-techniques-section .container {
    position: relative;
    z-index: 2;
}

.techniques-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.techniques-intro {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-text {
    flex: 3;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.intro-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.intro-image {
    flex: 2;
    position: relative;
}

.techniques-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.rtp-indicator {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 3;
}

.rtp-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--darker-bg);
}

.rtp-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.rtp-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.techniques-tips {
    padding: 20px 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-item {
    display: flex;
    gap: 20px;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tip-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon i {
    font-size: 22px;
    color: white;
}

.tip-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.tip-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.tip-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.techniques-conclusion {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.conclusion-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.conclusion-card {
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.conclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-header i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.card-header h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--light-text);
}

.conclusion-card p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.conclusion-card p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.final-note {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.final-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('jackpot-pattern.webp');
    opacity: 0.03;
    z-index: 1;
}

.final-note p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-note p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    position: relative;
    z-index: 2;
}

.cta-button .btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .techniques-intro {
        flex-direction: column;
    }
    
    .tips-list {
        grid-template-columns: 1fr;
    }
    
    .conclusion-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rtp-circle {
        width: 80px;
        height: 80px;
    }
    
    .rtp-value {
        font-size: 20px;
    }
    
    .rtp-label {
        font-size: 12px;
    }
    
    .tip-item {
        padding: 20px;
    }
    
    .conclusion-card {
        padding: 25px 20px;
    }
    
    .final-note {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .rtp-indicator {
        bottom: -10px;
        right: -10px;
    }
    
    .rtp-circle {
        width: 70px;
        height: 70px;
    }
    
    .rtp-value {
        font-size: 18px;
    }
    
    .tip-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tip-icon {
        margin-bottom: 5px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .card-header i {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 30px;
    }
}

@media (max-width: 400px) {
    .device-mobile i, .device-desktop i {
        font-size: 1.8rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-details h3 {
        font-size: 1.2rem;
    }
    
    .platform-icon {
        width: 50px;
    }
}

/* Slot Access Section Styles */
.slot-access-section {
    padding: 80px 0;
    position: relative;
    background-color: #121921;
    overflow: hidden;
}

.slot-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pattern-bg.webp');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.slot-access-section .container {
    position: relative;
    z-index: 1;
}

.access-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Access Hero */
.access-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #1a2533, #0c1218);
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.access-devices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 120px;
}

.device-mobile, .device-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.device-mobile i, .device-desktop i {
    font-size: 2.5rem;
    color: #f8c12c;
    text-shadow: 0 0 10px rgba(248, 193, 44, 0.3);
}

.device-connector {
    height: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #f8c12c, #e74c3c);
    box-shadow: 0 0 10px rgba(248, 193, 44, 0.3);
    position: relative;
    overflow: hidden;
}

.connector-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
    animation: pulse-line 2s infinite;
}

@keyframes pulse-line {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

.access-intro {
    flex: 1;
}

.access-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: #e0e0e0;
}

/* Access Features */
.access-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.access-feature-item {
    display: flex;
    gap: 20px;
    background-color: #1e2a38;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(248, 193, 44, 0.2);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8c12c, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-details {
    flex: 1;
}

.feature-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #f8c12c;
}

.feature-details p {
    line-height: 1.6;
    color: #c5c5c5;
}

.feature-details p strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Access Steps */
.access-steps {
    background-color: #1e2a38;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.steps-header {
    text-align: center;
    margin-bottom: 30px;
}

.steps-header h3 {
    font-size: 1.8rem;
    color: #f8c12c;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.steps-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #f8c12c, #e74c3c);
    border-radius: 3px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 15px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8c12c, #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(248, 193, 44, 0.3);
}

.step-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f8c12c;
}

.step-content p {
    line-height: 1.6;
    color: #c5c5c5;
}

.step-content p strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Access Platforms */
.access-platforms {
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #1a2533, #0c1218);
    border-radius: 15px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platforms-content {
    flex: 2;
}

.platforms-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #f8c12c;
}

.platforms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.platforms-content p strong {
    color: #f8c12c;
    font-weight: 600;
}

.platforms-icons {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 80px;
}

.platform-icon i {
    font-size: 2rem;
    color: #f8c12c;
    text-shadow: 0 0 10px rgba(248, 193, 44, 0.3);
}

.platform-icon span {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Access Conclusion */
.access-conclusion {
    text-align: center;
    background-color: #1e2a38;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.access-conclusion p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.access-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.access-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.access-buttons .btn.outline-btn {
    border-color: #f8c12c;
    color: #f8c12c;
}

.access-buttons .btn.outline-btn:hover {
    background-color: #f8c12c;
    color: #121921;
}

.access-buttons .btn.primary-btn {
    background: linear-gradient(135deg, #f8c12c, #e74c3c);
    border: none;
    color: #121921;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(248, 193, 44, 0.3);
}

.access-buttons .btn.primary-btn:hover {
    box-shadow: 0 8px 20px rgba(248, 193, 44, 0.4);
    transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 992px) {
    .access-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .access-devices {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .device-connector {
        width: 50px;
        height: auto;
    }
    
    .connector-line {
        width: 100%;
        height: 2px;
    }
    
    .access-platforms {
        flex-direction: column;
        text-align: center;
    }
    
    .platforms-icons {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .slot-access-section {
        padding: 60px 0;
    }
    
    .access-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-number {
        margin-bottom: 15px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-item {
        width: 100%;
    }
    
    .access-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .access-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .access-hero {
        padding: 20px;
    }
    
    .device-mobile i, .device-desktop i {
        font-size: 2rem;
    }
    
    .access-steps {
        padding: 30px 20px;
    }
    
    .steps-header h3 {
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .access-platforms {
        padding: 30px 20px;
    }
    
    .platforms-content h3 {
        font-size: 1.4rem;
    }
    
    .platform-icon {
        width: 60px;
    }
    
    .access-conclusion {
        padding: 30px 20px;
    }
    
    .access-conclusion p {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .device-mobile i, .device-desktop i {
        font-size: 1.8rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-details h3 {
        font-size: 1.2rem;
    }
    
    .platform-icon {
        width: 50px;
    }
}

.slot-access-section .section-header h2 {
    color: #f8c12c;
    text-shadow: 0 0 15px rgba(248, 193, 44, 0.4);
}

.slot-access-section .section-header h2::after {
    background: linear-gradient(to right, #f8c12c, #e74c3c);
    box-shadow: 0 0 10px rgba(248, 193, 44, 0.5);
}

/* Featured Slots Section */
.featured-slots-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.featured-slots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('slot-pattern.webp');
    opacity: 0.05;
    z-index: 1;
}

.featured-slots-section .container {
    position: relative;
    z-index: 2;
}

.featured-slots-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.featured-slots-text {
    flex: 1;
}

.featured-slots-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.featured-slots-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.jackpot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-slots-image:hover .jackpot-image {
    transform: scale(1.05);
}

.jackpot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
}

.jackpot-amount {
    text-align: center;
}

.jackpot-label {
    display: block;
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 5px;
}

.jackpot-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 145, 0, 0.5);
}

.featured-slots-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.highlight-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.highlight-icon i {
    font-size: 24px;
    color: white;
}

.highlight-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.highlight-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

.featured-slots-conclusion {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.featured-slots-conclusion p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Add JavaScript to handle active navigation */
