/* Base Styles */
:root {
    --primary-color: #8E44AD;
    --secondary-color: #3498DB;
    --accent-color: #F39C12;
    --dark-bg: #1A1A2E;
    --darker-bg: #16213E;
    --card-bg: #0F3460;
    --text-color: #ffffff;
    --text-secondary: #E1E1E1;
    --border-color: #444444;
    --transition: all 0.3s ease;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --card-border-radius: 20px;
    --btn-border-radius: 50px;
    --badge-color: #E74C3C;
    --light-blue: #3498DB;
    --light-purple: #9B59B6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', 'Kanit', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
}

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

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: var(--btn-border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::after {
    left: 0;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), #A569BD);
    color: var(--text-color);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
    background: linear-gradient(45deg, var(--secondary-color), #5DADE2);
    color: var(--text-color);
}

.secondary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 16, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    gap: 10px;
    position: relative;
    padding: 5px 10px;
    overflow: hidden;
}

.logo a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    transition: all 0.5s ease;
}

.logo a:hover::before {
    left: 100%;
}

.logo-icon {
    color: #FFD700;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    transform: rotate(-10deg);
    transition: all 0.3s ease;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.footer-logo h2 {
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.8rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.8rem;
    }
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--accent-color);
}

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

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

/* Mobile Menu Button Styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    z-index: 1010; /* Increased z-index to ensure it's above the nav */
    padding: 8px;
    transition: var(--transition);
}

.mobile-menu-btn i {
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

/* Mobile menu active state */
nav.active {
    right: 0;
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.2) 0%, rgba(142, 68, 173, 0) 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

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

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.hero-image img {
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-border-radius);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.3) 0%, rgba(243, 156, 18, 0) 70%);
    top: -10%;
    right: -10%;
    z-index: -1;
    border-radius: 50%;
}

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

.about-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 1;
}

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

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.feature-list li i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 1.3rem;
    background: rgba(243, 156, 18, 0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.2) 0%, rgba(142, 68, 173, 0) 70%);
    top: 20%;
    right: -10%;
    border-radius: 50%;
    z-index: -1;
}

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

.games-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0) 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-category {
    background: linear-gradient(135deg, var(--card-bg), rgba(15, 52, 96, 0.8));
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

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

.game-category::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

.game-category i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    background: rgba(243, 156, 18, 0.15);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.game-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.game-category p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.games-image {
    text-align: center;
    margin-top: 30px;
}

.games-image img {
    max-width: 90%;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.promotion-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, rgba(142, 68, 173, 0) 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

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

.promotion-card {
    background: linear-gradient(135deg, var(--card-bg), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.promotion-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    bottom: -75px;
    left: -75px;
    border-radius: 50%;
}

.promotion-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    background: rgba(243, 156, 18, 0.15);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

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

.promotion-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-method {
    background: linear-gradient(135deg, var(--card-bg), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.contact-method::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0) 70%);
    top: -60px;
    right: -60px;
    border-radius: 50%;
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(142, 68, 173, 0.15);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.05) 0%, rgba(142, 68, 173, 0) 70%);
    top: 0;
    left: 0;
    border-radius: 50%;
}

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

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-logo h2 a {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-links h3, .footer-payment h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-payment h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

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

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

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

.payment-icons i {
    font-size: 2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 99;
    max-width: 800px;
    width: calc(100% - 30px);
    justify-content: center;
    padding: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(22, 33, 62, 0.5);
    border-radius: calc(var(--btn-border-radius) * 1.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--btn-border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    flex: 1;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transform: translateY(0);
    position: relative;
    overflow: visible;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

.sticky-btn i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.sticky-btn span {
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.login-btn {
    color: var(--text-color);
    background: linear-gradient(45deg, var(--secondary-color), #2980B9);
}

.login-btn:hover {
    background: linear-gradient(45deg, #2980B9, var(--secondary-color));
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.6);
}

.register-btn {
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), #9B59B6);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.5);
}

.register-btn:hover {
    background: linear-gradient(45deg, #9B59B6, var(--primary-color));
    transform: scale(1.1) translateY(-7px);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.7);
}

.free-credit-btn {
    color: var(--text-color);
    background: linear-gradient(45deg, var(--accent-color), #D35400);
}

.free-credit-btn:hover {
    background: linear-gradient(45deg, #D35400, var(--accent-color));
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.6);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating {
    animation: float 5s ease-in-out infinite alternate;
}

/* Media Queries */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-content, .hero-image {
        flex: 100%;
        padding-right: 0;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .about-text, .about-image {
        flex: 100%;
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .sticky-buttons {
        max-width: 700px;
    }
    
    .sticky-btn {
        padding: 12px 15px;
        gap: 6px;
    }
    
    .sticky-btn span {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Make mobile menu button visible */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(142, 68, 173, 0.15);
        position: fixed;
        top: 15px;
        right: 20px;
        z-index: 1010;
        cursor: pointer;
    }
    
    /* Position the mobile nav */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 350px;
        background: var(--darker-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 60px 0 40px;
        z-index: 1005;
        overflow-y: auto;
    }
    
    /* Active state with an overlay */
    nav.active {
        right: 0;
    }
    
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        visibility: hidden;
        z-index: 999;
        transition: all 0.4s ease;
        pointer-events: none;
    }
    
    body.menu-active::after {
        visibility: visible;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        pointer-events: all;
    }
    
    /* Change nav items to vertical */
    nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    nav ul li {
        margin: 8px 0;
        width: 100%;
    }
    
    /* Make nav links more tappable */
    nav ul li a {
        display: block;
        padding: 12px 25px;
        font-size: 1.2rem;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    nav ul li a:hover {
        background: rgba(142, 68, 173, 0.1);
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .sticky-buttons {
        bottom: 20px;
        width: calc(100% - 24px);
        gap: 8px;
        padding: 10px;
        max-width: 650px;
    }
    
    .sticky-btn {
        padding: 10px 12px;
        gap: 5px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn span {
        font-size: 0.9rem;
    }
    
    .register-btn {
        transform: scale(1.05);
    }
    
    .register-btn:hover {
        transform: scale(1.05) translateY(-7px);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .feature-list li i {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .about-text p, .feature-list li {
        font-size: 1rem;
    }
    
    .sticky-buttons {
        width: calc(100% - 20px);
        gap: 6px;
        bottom: 15px;
        padding: 8px;
        max-width: 450px;
    }
    
    .sticky-btn {
        padding: 8px 8px;
        gap: 4px;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
    
    .sticky-btn span {
        font-size: 0.8rem;
    }
}

@media (max-width: 420px) {
    .sticky-buttons {
        width: calc(100% - 16px);
        gap: 4px;
        padding: 6px;
        max-width: 350px;
    }
    
    .sticky-btn {
        padding: 8px 5px;
        border-width: 1px;
        border-radius: calc(var(--btn-border-radius) * 0.8);
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
    
    .register-btn {
        transform: scale(1.03);
    }
    
    .register-btn:hover {
        transform: scale(1.03) translateY(-5px);
    }
}

@media (max-width: 360px) {
    .sticky-buttons {
        gap: 3px;
        padding: 5px;
    }
    
    .sticky-btn {
        padding: 7px 4px;
    }
    
    .sticky-btn i {
        font-size: 0.85rem;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
    }
}

/* Font Import for Thai Language Support */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;700&family=Prompt:wght@300;400;500;700&display=swap');

/* New Badge Styles */
.badge {
    background: linear-gradient(45deg, var(--badge-color), #F5B041);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--badge-color), #F5B041);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 1.2rem;
    background: rgba(142, 68, 173, 0.15);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item span {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Hero Image Badge */
.hero-image {
    position: relative;
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(142, 68, 173, 0.3) 0%, rgba(142, 68, 173, 0) 60%);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: var(--card-border-radius);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    line-height: 1.2;
}

.hero-badge span.big {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 2px 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(142, 68, 173, 0.1) 0%, rgba(142, 68, 173, 0) 20%),
        radial-gradient(circle at 90% 30%, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 20%),
        radial-gradient(circle at 30% 70%, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0) 20%),
        radial-gradient(circle at 70% 90%, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0) 20%);
}

/* Section subtitle */
.section-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Image Frame */
.image-frame {
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    top: -20px;
    left: -20px;
    border: 2px solid rgba(142, 68, 173, 0.3);
    border-radius: var(--card-border-radius);
    z-index: -1;
}

/* Category Icon */
.category-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.15);
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Category Link */
.category-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-link:hover {
    color: var(--text-color);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Games Overlay */
.games-image {
    position: relative;
    margin-top: 50px;
}

.games-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 52, 96, 0.9) 0%, rgba(15, 52, 96, 0) 70%);
    border-radius: var(--card-border-radius);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.overlay-content {
    width: 100%;
    text-align: center;
}

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

.overlay-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Section Divider */
.section-divider {
    position: relative;
    height: 60px;
    overflow: visible;
    margin-top: -30px;
    z-index: 5;
}

.divider-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 3px solid var(--darker-bg);
}

.divider-icon i {
    font-size: 2.5rem;
    color: var(--text-color);
}

/* Promo Link */
.promo-link {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 25px;
    background: rgba(243, 156, 18, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.promo-link:hover {
    background: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Promotion CTA */
.promotion-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(142, 68, 173, 0.2));
    padding: 40px;
    border-radius: var(--card-border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    flex: 1;
    min-width: 250px;
}

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

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Contact Link */
.contact-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 25px;
    background: rgba(142, 68, 173, 0.15);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Shape */
.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom right, var(--dark-bg) 0%, var(--dark-bg) 50%, transparent 50%, transparent 100%);
    z-index: 1;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon i {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.social-icon:hover i {
    color: var(--text-color);
}

/* Footer Links with Icons */
.footer-links ul li a i {
    margin-right: 8px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links ul li a:hover i {
    margin-right: 12px;
}

/* Footer Certificates */
.footer-certificates {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-certificates img {
    filter: grayscale(0.8);
    transition: var(--transition);
    border-radius: 5px;
}

.footer-certificates img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Update existing media queries for new elements */
@media (max-width: 992px) {
    .hero-features {
        justify-content: space-between;
    }
    
    .promotion-cta {
        text-align: center;
        justify-content: center;
    }
    
    .cta-content {
        flex: 100%;
        margin-bottom: 20px;
    }
    
    .footer-certificates {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        width: 80px;
        height: 80px;
    }
    
    .hero-badge span.big {
        font-size: 1.5rem;
    }
    
    .section-divider {
        height: 40px;
        margin-top: -20px;
    }
    
    .divider-icon {
        width: 60px;
        height: 60px;
    }
    
    .divider-icon i {
        font-size: 2rem;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-features {
        gap: 15px;
    }
    
    .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        width: 70px;
        height: 70px;
        top: -10px;
        right: -10px;
    }
    
    .hero-badge span {
        font-size: 0.7rem;
    }
    
    .hero-badge span.big {
        font-size: 1.3rem;
    }
    
    .games-overlay {
        padding: 20px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.experience-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, rgba(142, 68, 173, 0) 70%);
    top: -200px;
    right: -150px;
    z-index: 0;
}

.experience-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0) 70%);
    bottom: -100px;
    left: -150px;
    z-index: 0;
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.experience-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

.experience-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.exp-card {
    background: rgba(15, 52, 96, 0.6);
    border-radius: var(--card-border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

.exp-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    top: 0;
    left: 0;
    z-index: 0;
}

.exp-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(243, 156, 18, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.exp-card-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.exp-card-text {
    position: relative;
    z-index: 1;
}

.exp-card-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.exp-card-text p strong {
    color: var(--accent-color);
    font-weight: 600;
}

.experience-image {
    position: relative;
    text-align: center;
    margin: 30px auto;
    max-width: 500px;
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.3) 0%, rgba(243, 156, 18, 0) 70%);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: var(--card-border-radius);
    animation: glow 3s ease-in-out infinite alternate;
}

.experience-image img {
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
}

.exp-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
    color: var(--accent-color);
}

.floating-icon:nth-child(3) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    color: var(--secondary-color);
}

.experience-text {
    max-width: 900px;
    margin: 0 auto;
}

.experience-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.accent-btn {
    background: linear-gradient(45deg, var(--accent-color), #D35400);
    color: var(--text-color);
    padding: 15px 30px;
    border-radius: var(--btn-border-radius);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.accent-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(243, 156, 18, 0.5);
}

.accent-btn i {
    font-size: 1.2rem;
}

/* Media Queries for Experience Section */
@media (max-width: 992px) {
    .experience-header h2 {
        font-size: 2.5rem;
    }
    
    .experience-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 80px 0 60px;
    }
    
    .experience-header h2 {
        font-size: 2.2rem;
    }
    
    .exp-card {
        padding: 25px;
    }
    
    .exp-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .exp-card-icon i {
        font-size: 1.7rem;
    }
    
    .experience-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .experience-header h2 {
        font-size: 1.8rem;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .exp-card-text p {
        font-size: 1rem;
    }
    
    .experience-text p {
        font-size: 0.95rem;
    }
    
    .accent-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Login Guide Section */
.login-guide-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.guide-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(45deg, var(--card-bg) 25%, transparent 25%), 
        linear-gradient(-45deg, var(--card-bg) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--card-bg) 75%),
        linear-gradient(-45deg, transparent 75%, var(--card-bg) 75%);
    background-size: 20px 20px;
    z-index: 0;
}

.login-guide-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    bottom: -300px;
    right: -200px;
    z-index: 1;
}

.login-guide-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, rgba(142, 68, 173, 0) 70%);
    top: -100px;
    left: -100px;
    z-index: 1;
}

.login-guide-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.login-guide-header h2 {
    font-size: 3rem;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.login-guide-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.login-guide-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.login-guide-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.login-guide-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.login-guide-intro p:last-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

.login-guide-intro p strong {
    color: var(--accent-color);
    font-weight: 600;
}

.login-steps-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.login-steps {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    background: rgba(15, 52, 96, 0.3);
    padding: 20px;
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    transition: var(--transition);
}

.step:hover {
    transform: translateX(10px);
    background: rgba(15, 52, 96, 0.5);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--text-color);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.4;
}

.step-content h3 strong {
    color: var(--accent-color);
}

.login-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: center;
}

.login-image img {
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.login-callout {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 12px 24px;
    border-radius: var(--btn-border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.3);
    z-index: 2;
}

.callout-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callout-icon i {
    font-size: 1.3rem;
    color: var(--text-color);
}

.callout-text span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.login-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(15, 52, 96, 0.3);
    padding: 40px;
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.login-feature-text {
    flex: 2;
    min-width: 300px;
}

.login-feature-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.login-feature-text p strong {
    color: var(--accent-color);
    font-weight: 600;
}

.platforms {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

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

.platform-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 70%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.platform:hover .platform-icon {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 70%);
}

.platform-icon i {
    font-size: 3rem;
    color: var(--text-color);
}

.platform span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.app-features {
    padding: 20px 0;
}

.app-features-header {
    text-align: center;
    margin-bottom: 40px;
}

.app-features-header h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    display: inline-block;
    position: relative;
}

.app-features-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.app-features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.app-card {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.4) 0%, rgba(15, 52, 96, 0.2) 100%);
    padding: 30px;
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

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

.app-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.app-card h4 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.app-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.closing-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.closing-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.final-cta {
    margin-top: 40px;
}

/* Media Queries for Login Guide Section */
@media (max-width: 992px) {
    .login-guide-header h2 {
        font-size: 2.5rem;
    }
    
    .platforms {
        justify-content: space-around;
        width: 100%;
    }
    
    .app-features-header h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .login-guide-section {
        padding: 80px 0 70px;
    }
    
    .login-guide-header h2 {
        font-size: 2.2rem;
    }
    
    .login-guide-intro p {
        font-size: 1.1rem;
    }
    
    .login-guide-intro p:last-child {
        font-size: 1.2rem;
    }
    
    .step {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 15px;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .login-callout {
        padding: 10px 20px;
        bottom: -15px;
        right: 20px;
    }
    
    .callout-icon {
        width: 35px;
        height: 35px;
    }
    
    .callout-icon i {
        font-size: 1.1rem;
    }
    
    .callout-text span {
        font-size: 0.95rem;
    }
    
    .login-features {
        padding: 30px;
    }
    
    .login-feature-text p {
        font-size: 1.05rem;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
    }
    
    .platform-icon i {
        font-size: 2.5rem;
    }
    
    .app-card {
        padding: 25px;
    }
    
    .app-card i {
        font-size: 2.5rem;
    }
    
    .app-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .login-guide-section {
        padding: 70px 0 60px;
    }
    
    .login-guide-header h2 {
        font-size: 1.8rem;
    }
    
    .login-guide-intro p {
        font-size: 1rem;
    }
    
    .login-guide-intro p:last-child {
        font-size: 1.1rem;
    }
    
    .login-guide-wrapper {
        gap: 40px;
    }
    
    .login-steps-container {
        gap: 30px;
    }
    
    .step-content h3 {
        font-size: 1.05rem;
    }
    
    .login-callout {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: -25px;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .platform-icon i {
        font-size: 2rem;
    }
    
    .platform span {
        font-size: 0.95rem;
    }
    
    .app-features-header h3 {
        font-size: 1.7rem;
    }
    
    .closing-text p {
        font-size: 1rem;
    }
}

/* Slot App Section */
.slot-app-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.slot-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.slot-app-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, rgba(230, 126, 34, 0) 70%);
    top: -200px;
    right: -100px;
    z-index: 1;
}

.slot-app-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 128, 185, 0.1) 0%, rgba(41, 128, 185, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

.slot-app-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.slot-app-header h2 {
    font-size: 3rem;
    color: var(--text-color);
    background: linear-gradient(45deg, #e67e22, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.slot-app-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #e67e22, #3498db);
    border-radius: 2px;
}

.slot-app-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.slot-app-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.slot-app-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.slot-app-intro p strong {
    color: #e67e22;
    font-weight: 600;
}

.slot-app-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.slot-app-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.slot-app-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.slot-app-image img:hover {
    transform: translateY(-10px);
}

.slot-app-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    z-index: 3;
}

.slot-app-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.app-download-buttons {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.app-store-btn, .play-store-btn {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.app-store-btn:hover, .play-store-btn:hover {
    background: rgba(26, 26, 46, 1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-store-btn i, .play-store-btn i {
    font-size: 1.2rem;
    color: #fff;
}

.app-store-btn span, .play-store-btn span {
    color: #fff;
    font-weight: 500;
}

.slot-app-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: rgba(15, 52, 96, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(15, 52, 96, 0.5);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e67e22, #d35400);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.feature-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-content p strong {
    color: #e67e22;
    font-weight: 600;
}

.slot-themes {
    text-align: center;
}

.themes-header {
    margin-bottom: 30px;
}

.themes-header h3 {
    font-size: 2rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.themes-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e67e22, #3498db);
    border-radius: 2px;
}

.themes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.theme-card {
    background: rgba(15, 52, 96, 0.3);
    border-radius: 15px;
    padding: 20px;
    width: 120px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.theme-card:hover {
    background: rgba(15, 52, 96, 0.5);
    transform: translateY(-5px);
}

.theme-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-card:nth-child(1) .theme-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.theme-card:nth-child(2) .theme-icon {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.theme-card:nth-child(3) .theme-icon {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
}

.theme-card:nth-child(4) .theme-icon {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

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

.theme-card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.themes-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.themes-description strong {
    color: #e67e22;
    font-weight: 600;
}

.free-trial {
    background: rgba(15, 52, 96, 0.4);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.free-trial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, rgba(230, 126, 34, 0) 70%);
    z-index: 0;
}

.free-trial-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.trial-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e67e22, #d35400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.trial-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.trial-text h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.trial-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.trial-text p strong {
    color: #e67e22;
    font-weight: 600;
}

.try-free-btn {
    display: inline-block;
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.try-free-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.try-free-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.try-free-btn:hover::before {
    width: 100%;
}

.try-free-btn i {
    margin-left: 8px;
}

.slot-conclusion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.slot-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.slot-conclusion p strong {
    color: #e67e22;
    font-weight: 600;
}

.slot-cta {
    margin-top: 40px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.download-btn:hover::before {
    width: 100%;
}

.download-btn i {
    margin-left: 8px;
}

/* Media Queries for Slot App Section */
@media (max-width: 992px) {
    .slot-app-header h2 {
        font-size: 2.5rem;
    }
    
    .slot-app-grid {
        flex-direction: column-reverse;
    }
    
    .slot-app-image {
        max-width: 100%;
    }
    
    .themes-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .slot-app-section {
        padding: 80px 0 70px;
    }
    
    .slot-app-header h2 {
        font-size: 2rem;
    }
    
    .slot-app-intro p {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .theme-card {
        width: 100px;
        padding: 15px;
    }
    
    .theme-icon {
        width: 50px;
        height: 50px;
    }
    
    .theme-icon i {
        font-size: 1.2rem;
    }
    
    .theme-card h4 {
        font-size: 0.9rem;
    }
    
    .free-trial {
        padding: 20px;
    }
    
    .trial-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .trial-icon i {
        font-size: 1.3rem;
    }
    
    .trial-text h3 {
        font-size: 1.2rem;
    }
    
    .trial-text p {
        font-size: 0.9rem;
    }
    
    .slot-conclusion p {
        font-size: 1rem;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slot-app-section {
        padding: 60px 0 50px;
    }
    
    .slot-app-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-app-intro p {
        font-size: 1rem;
    }
    
    .themes-container {
        gap: 10px;
    }
    
    .theme-card {
        width: 85px;
        padding: 10px;
    }
    
    .theme-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .theme-icon i {
        font-size: 1rem;
    }
    
    .theme-card h4 {
        font-size: 0.8rem;
    }
    
    .themes-description {
        font-size: 0.95rem;
    }
    
    .free-trial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slot-conclusion p {
        font-size: 0.95rem;
    }
}

/* Slot Features Section */
.slot-features-section {
    background: linear-gradient(135deg, #0c1339 0%, #1c2951 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.slot-features-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' style='fill: %231a1a2e;'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: rotate(180deg);
    opacity: 0.4;
}

.slot-features-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.header-accent {
    position: relative;
    width: 120px;
    height: 10px;
    margin: 0 auto 20px;
    background: linear-gradient(to right, #f39c12, #e74c3c);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.header-accent::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    left: -30px;
    transform: skewX(-30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -30px;
    }
    100% {
        left: 150px;
    }
}

.slot-features-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

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

.slot-features-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.slot-features-intro p strong {
    color: #f39c12;
    font-weight: 600;
}

.features-content {
    position: relative;
    z-index: 2;
}

.features-diagram {
    position: relative;
    margin-bottom: 80px;
}

.diagram-center {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    z-index: 3;
}

.center-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.diagram-center span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.diagram-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 150px;
    padding: 120px 0;
    position: relative;
}

.diagram-items::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(243, 156, 18, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diagram-items::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(243, 156, 18, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diagram-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 500px;
    position: relative;
}

.item-1 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: end;
    align-self: end;
}

.item-2 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
    align-self: end;
}

.item-3 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
    align-self: start;
}

.item-4 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
    align-self: start;
}

.item-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.item-1 .item-icon {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.item-2 .item-icon {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.item-3 .item-icon {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.item-4 .item-icon {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.item-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.item-text h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.item-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.item-text p strong {
    color: #f39c12;
    font-weight: 600;
}

.features-bottom-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.bottom-card {
    flex: 1;
    min-width: 300px;
    background: rgba(15, 52, 96, 0.4);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bottom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(15, 52, 96, 0.6);
}

.card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2);
}

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

.card-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.card-content p strong {
    color: #f39c12;
    font-weight: 600;
}

.features-conclusion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.features-conclusion p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.features-conclusion p strong {
    color: #f39c12;
    font-weight: 600;
}

.features-action {
    margin-top: 40px;
}

.explore-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 0;
}

.explore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.4);
}

.explore-btn:hover::before {
    width: 100%;
}

.explore-btn i {
    margin-left: 8px;
    position: relative;
    z-index: 1;
}

.slot-features-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.4) 0%, rgba(243, 156, 18, 0) 70%);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.3) 0%, rgba(231, 76, 60, 0) 70%);
    bottom: -50px;
    left: -100px;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(41, 128, 185, 0.3) 0%, rgba(41, 128, 185, 0) 70%);
    top: 40%;
    left: 60%;
}

/* Media Queries for Slot Features Section */
@media (max-width: 1200px) {
    .diagram-items {
        gap: 100px;
    }
    
    .diagram-items::before {
        width: 250px;
        height: 250px;
    }
    
    .diagram-items::after {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .slot-features-header h2 {
        font-size: 2.5rem;
    }
    
    .diagram-center {
        width: 120px;
        height: 120px;
    }
    
    .center-icon {
        font-size: 2rem;
    }
    
    .diagram-center span {
        font-size: 1rem;
    }
    
    .diagram-items {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 40px;
        padding: 30px 0 30px 150px;
    }
    
    .diagram-items::before, .diagram-items::after {
        display: none;
    }
    
    .diagram-center {
        left: 60px;
        top: 180px;
        transform: none;
    }
    
    .item-1, .item-2, .item-3, .item-4 {
        grid-area: auto;
        justify-self: start;
        align-self: start;
    }
}

@media (max-width: 768px) {
    .slot-features-section {
        padding: 80px 0 70px;
    }
    
    .slot-features-header h2 {
        font-size: 2rem;
    }
    
    .slot-features-intro p {
        font-size: 1.1rem;
    }
    
    .diagram-items {
        padding: 20px 0 20px 120px;
    }
    
    .diagram-center {
        width: 100px;
        height: 100px;
        left: 40px;
    }
    
    .center-icon {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .diagram-center span {
        font-size: 0.9rem;
    }
    
    .item-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .item-icon i {
        font-size: 1.4rem;
    }
    
    .item-text h3 {
        font-size: 1.2rem;
    }
    
    .item-text p {
        font-size: 0.95rem;
    }
    
    .bottom-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    .features-conclusion p {
        font-size: 1.1rem;
    }
    
    .explore-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slot-features-section {
        padding: 60px 0 50px;
    }
    
    .header-accent {
        width: 80px;
        height: 8px;
        margin-bottom: 15px;
    }
    
    .slot-features-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-features-intro p {
        font-size: 1rem;
    }
    
    .diagram-items {
        padding: 0;
        gap: 30px;
    }
    
    .diagram-center {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 30px;
    }
    
    .diagram-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    
    .item-text {
        text-align: center;
    }
    
    .bottom-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .features-conclusion p {
        font-size: 1rem;
    }
}

/* Winning Path Section */
.winning-path-section {
    background: linear-gradient(135deg, #141E39 0%, #243B55 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.path-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(20, 30, 57, 0.7), rgba(36, 59, 85, 0.7)), 
                      url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231A2334' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.winning-path-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.animated-title {
    position: relative;
    margin-bottom: 15px;
}

.animated-title-text {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFD700;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.animated-title-text::before,
.animated-title-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #FFD700, transparent);
}

.animated-title-text::before {
    left: -30px;
}

.animated-title-text::after {
    right: -30px;
    background: linear-gradient(to left, #FFD700, transparent);
}

.winning-path-header h2 {
    font-size: 3rem;
    color: #ffffff;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto;
    max-width: 900px;
}

.winning-path-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.path-illustration {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: 500px;
    padding-right: 30px;
}

.path-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.path-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.7));
    border-radius: 3px;
    z-index: 1;
}

.path-point {
    position: relative;
    margin-left: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.point-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 3;
}

.point-glow {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 215, 0, 0) 70%);
    z-index: 2;
    left: -10px;
    top: -10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.path-jackpot {
    position: relative;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.jackpot-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
}

.jackpot-icon::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    top: -10px;
    left: -10px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.path-jackpot span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.path-description {
    flex: 2;
    min-width: 300px;
}

.path-description > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.path-description p strong {
    color: #FFD700;
    font-weight: 600;
}

.path-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.path-card {
    background: rgba(20, 30, 57, 0.6);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #FFD700, #FFA500);
    top: 0;
    left: 0;
}

.path-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(20, 30, 57, 0.8);
}

.path-card[data-step="1"]::before {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
}

.path-card[data-step="2"]::before {
    background: linear-gradient(to right, #03A9F4, #00BCD4);
}

.path-card[data-step="3"]::before {
    background: linear-gradient(to right, #9C27B0, #673AB7);
}

.path-card[data-step="4"]::before {
    background: linear-gradient(to right, #FF5722, #FF9800);
}

.path-card[data-step="5"]::before {
    background: linear-gradient(to right, #FFD700, #FFA500);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.path-card[data-step="1"] .card-icon {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.path-card[data-step="2"] .card-icon {
    background: linear-gradient(45deg, #03A9F4, #00BCD4);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.3);
}

.path-card[data-step="3"] .card-icon {
    background: linear-gradient(45deg, #9C27B0, #673AB7);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.path-card[data-step="4"] .card-icon {
    background: linear-gradient(45deg, #FF5722, #FF9800);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.path-card[data-step="5"] .card-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.card-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.path-conclusion {
    margin-top: 50px;
    text-align: center;
}

.path-conclusion p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.path-action {
    margin-top: 40px;
}

.jackpot-btn {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
}

.jackpot-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.jackpot-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.jackpot-btn:hover::before {
    width: 100%;
}

.jackpot-btn i {
    margin-left: 10px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    animation: floatCoin 8s ease-in-out infinite;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
}

@keyframes floatCoin {
    0% {
        transform: translateY(0) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        filter: brightness(1.3);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        filter: brightness(1);
    }
    75% {
        filter: brightness(1.3);
    }
    100% {
        transform: translateY(0) rotate(360deg);
        filter: brightness(1);
    }
}

.coin-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    width: 80px;
    height: 80px;
}

.coin-2 {
    top: 70%;
    right: 20%;
    animation-delay: 2s;
    width: 100px;
    height: 100px;
}

.coin-3 {
    top: 30%;
    left: 8%;
    animation-delay: 4s;
    width: 50px;
    height: 50px;
}

.coin-4 {
    top: 60%;
    left: 15%;
    animation-delay: 6s;
    width: 70px;
    height: 70px;
}

.floating-coin i {
    font-size: 2.5rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.coin-1 i {
    font-size: 3rem;
}

.coin-2 i {
    font-size: 4rem;
}

.coin-3 i {
    font-size: 2rem;
}

.coin-4 i {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .floating-coin i {
        font-size: 2rem;
    }
    
    .coin-1 i {
        font-size: 2.5rem;
    }
    
    .coin-2 i {
        font-size: 3rem;
    }
    
    .coin-3 i {
        font-size: 1.8rem;
    }
    
    .coin-4 i {
        font-size: 2.2rem;
    }
    
    .coin-1 {
        width: 60px;
        height: 60px;
    }
    
    .coin-2 {
        width: 80px;
        height: 80px;
    }
    
    .coin-3 {
        width: 40px;
        height: 40px;
    }
    
    .coin-4 {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .floating-coin i {
        font-size: 1.8rem;
    }
    
    .coin-1 i {
        font-size: 2.2rem;
    }
    
    .coin-2 i {
        font-size: 2.5rem;
    }
    
    .coin-3 i {
        font-size: 1.5rem;
    }
    
    .coin-4 i {
        font-size: 2rem;
    }
    
    .coin-1 {
        width: 50px;
        height: 50px;
    }
    
    .coin-2 {
        width: 65px;
        height: 65px;
    }
    
    .coin-3 {
        width: 35px;
        height: 35px;
    }
    
    .coin-4 {
        width: 45px;
        height: 45px;
    }
}

/* Media Queries for Winning Path Section */
@media (max-width: 992px) {
    .winning-path-header h2 {
        font-size: 2.5rem;
    }
    
    .path-illustration {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .winning-path-section {
        padding: 80px 0 70px;
    }
    
    .winning-path-header h2 {
        font-size: 2rem;
    }
    
    .winning-path-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .path-illustration {
        position: relative;
        top: 0;
        height: 400px;
        padding-right: 0;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .path-description > p {
        font-size: 1.1rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
    
    .path-conclusion p {
        font-size: 1.15rem;
    }
    
    .jackpot-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .winning-path-section {
        padding: 60px 0 50px;
    }
    
    .animated-title-text {
        font-size: 1rem;
    }
    
    .winning-path-header h2 {
        font-size: 1.8rem;
    }
    
    .point-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .point-glow {
        width: 60px;
        height: 60px;
    }
    
    .jackpot-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .jackpot-icon::before {
        width: 80px;
        height: 80px;
    }
    
    .path-jackpot span {
        font-size: 1rem;
    }
    
    .path-description > p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .path-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    .path-conclusion p {
        font-size: 1rem;
    }
    
    .jackpot-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    /* Header */
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    /* Header */
    .logo-icon {
        font-size: 1.4rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.6rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.6rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 1150px) {
  /* Header */
  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .logo-icon {
    font-size: 1.6rem;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
}

/* Update mobile menu styles from 992px to 1150px */
@media (max-width: 1150px) {
  nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(22, 33, 62, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 20px 0;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
  }
  
  .mobile-menu-btn {
    display: flex;
    cursor: pointer;
  }
  
  nav.active {
    display: block;
    animation: fadeInDown 0.3s ease-in-out;
  }
  
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  
  body.menu-active::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  
  nav ul li {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  
  nav ul li a {
    display: block;
    padding: 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
}
