/* Reset and Base Styles */
:root {
    --primary-color: #8e44ad; /* Purple */
    --secondary-color: #2ecc71; /* Green */
    --accent-color: #f39c12; /* Orange */
    --dark-bg: #0f0f1a; /* Dark blue-black */
    --darker-bg: #070711; /* Darker blue-black */
    --card-bg: #161625; /* Slightly lighter dark blue */
    --light-text: #f0f0f0;
    --gray-text: #b0b0b0;
    --header-height: 70px;
    --gradient-bg: linear-gradient(135deg, #0f0f1a 0%, #1a1a30 100%);
    --button-gradient: linear-gradient(to right, #8e44ad, #9b59b6);
    --secondary-button-gradient: linear-gradient(to right, #2ecc71, #27ae60);
}

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

body {
    font-family: 'Kanit', 'Prompt', sans-serif;
    background: var(--gradient-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 60px; /* Space for sticky buttons */
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img.responsive-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img.responsive-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--card-bg);
    background-image: url('placeholder-image.webp');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    border-radius: 12px;
}

/* Header Styles */
header {
    background-color: rgba(7, 7, 17, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    z-index: 1;
}

.logo-icon i {
    font-size: 18px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    position: relative;
    margin: 0;
}

.logo .logo-text span {
    font-weight: 800;
    color: var(--accent-color);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
}

.logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo-link:hover h1::after {
    transform: scaleX(1);
}

nav ul {
    display: flex;
}

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

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

nav ul li a:hover::before {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.3) 0%, rgba(46, 204, 113, 0.3) 100%);
}

/* Main Content Styles */
main {
    margin-top: var(--header-height);
    padding-top: 20px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(142, 68, 173, 0.1), transparent 60%),
                radial-gradient(circle at bottom left, rgba(46, 204, 113, 0.1), transparent 60%);
    z-index: -1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.tag-line {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    line-height: 1.3;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-text);
    line-height: 1.8;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.feature {
    background: rgba(22, 22, 37, 0.5);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    transform: rotate(5deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Game Sections */
.game-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.game-section:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1), transparent 70%);
    z-index: -1;
}

.game-section:nth-child(even)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1), transparent 70%);
    z-index: -1;
}

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

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

.game-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.game-content.reverse {
    flex-direction: row-reverse;
}

.game-text, .game-image {
    flex: 1;
    position: relative;
}

.game-text {
    padding: 20px;
    border-radius: 12px;
    background: rgba(22, 22, 37, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.game-text p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: var(--gray-text);
    line-height: 1.7;
}

.game-text i {
    margin-right: 10px;
    color: var(--primary-color);
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.game-feature {
    background: rgba(142, 68, 173, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--light-text);
}

.game-feature i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.primary-btn {
    background: var(--button-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.primary-btn:hover {
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
    transform: translateY(-3px);
}

.secondary-btn {
    background: var(--secondary-button-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.secondary-btn:hover {
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-3px);
}

.outline-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.1);
}

.outline-btn:hover {
    background: var(--button-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.3);
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    background: linear-gradient(to bottom, var(--darker-bg), rgba(7, 7, 17, 0.95));
    padding: 80px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(142, 68, 173, 0.05), transparent 70%),
                radial-gradient(circle at bottom left, rgba(46, 204, 113, 0.05), transparent 70%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    font-size: 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 1.05rem;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

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

.footer-links ul li a {
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--gray-text);
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    color: var(--light-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--button-gradient);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 1.8rem;
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: rgba(7, 7, 17, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    position: relative;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.sticky-btn:hover::before {
    transform: scaleX(1);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

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

.login-btn i {
    color: var(--primary-color);
}

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

.bonus-btn {
    color: var(--secondary-color);
}

.sticky-btn:hover {
    background-color: rgba(22, 22, 37, 0.8);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section .container,
    .game-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content, .hero-image,
    .game-text, .game-image {
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .game-text {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
    }
    
    .game-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(7, 7, 17, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .game-text h3 {
        font-size: 1.4rem;
    }
    
    .sticky-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .sticky-btn i {
        font-size: 1rem;
    }
    
    .hero-section, .game-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .game-text h3 {
        font-size: 1.3rem;
    }
    
    .sticky-btn {
        font-size: 0.75rem;
        padding: 10px 3px;
    }
    
    .sticky-btn i {
        margin-right: 3px;
        font-size: 1rem;
    }
    
    .hero-section, .game-section {
        padding: 40px 0;
    }
    
    .footer-logo h2 {
        font-size: 1.7rem;
    }
    
    .experience-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Experience Section */
.experience-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95) 0%, rgba(26, 26, 48, 0.95) 100%);
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(142, 68, 173, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.15), transparent 40%);
    z-index: 0;
}

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

.experience-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

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

.header-accent::before, .header-accent::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -2px;
}

.header-accent::before {
    left: 0;
    background: var(--primary-color);
}

.header-accent::after {
    right: 0;
    background: var(--secondary-color);
}

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

.experience-text {
    background: rgba(22, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.1);
    position: relative;
    overflow: hidden;
}

.experience-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    z-index: -1;
}

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

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

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

.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.exp-card {
    background: rgba(22, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exp-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.exp-card:hover .card-icon::before {
    opacity: 1;
}

.card-icon i {
    font-size: 2rem;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.exp-card:hover .card-icon i {
    color: white;
}

.exp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

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

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

.experience-footer {
    margin-top: 60px;
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: rgba(22, 22, 37, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.2;
    }
}

.experience-footer p {
    color: var(--light-text);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.experience-btn {
    background: linear-gradient(to right, var(--accent-color), #e67e22);
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

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

.experience-btn:hover::before {
    left: 0;
}

.experience-btn i {
    margin-right: 10px;
}

/* Responsive styles for experience section */
@media (max-width: 992px) {
    .experience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 60px 0;
    }
    
    .experience-header h2 {
        font-size: 1.8rem;
    }
    
    .experience-text p {
        font-size: 1rem;
    }
    
    .experience-footer p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .experience-header h2 {
        font-size: 1.6rem;
    }
    
    .experience-text {
        padding: 20px;
    }
    
    .exp-card {
        padding: 20px;
    }
    
    .experience-footer {
        padding: 30px 15px;
    }
    
    .experience-footer p {
        font-size: 1rem;
    }
    
    .experience-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Slot Games Section */
.slot-games-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95) 0%, rgba(26, 26, 48, 0.95) 100%);
}

.slot-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

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

.slot-title-wrapper {
    max-width: 70%;
}

.slot-subtitle {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    position: relative;
}

.slot-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 10px solid var(--accent-color);
    border-bottom: 6px solid transparent;
}

.slot-header h2 {
    font-size: 2.3rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.3;
}

.jackpot-counter {
    display: flex;
    align-items: center;
    background: rgba(22, 22, 37, 0.7);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.1);
    position: relative;
    overflow: hidden;
}

.jackpot-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0.05) 100%);
    z-index: -1;
}

.jackpot-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.jackpot-icon i {
    font-size: 1.5rem;
    color: white;
}

.jackpot-amount {
    display: flex;
    flex-direction: column;
}

.jackpot-amount span {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 5px;
}

.jackpot-amount .counter {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.slot-content {
    position: relative;
    z-index: 1;
}

.slot-main-text {
    background: rgba(22, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

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

.slot-main-text p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 15px;
}

.slot-main-text p:last-child {
    margin-bottom: 0;
}

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

.slot-features-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.slot-features-list {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slot-feature-item {
    display: flex;
    align-items: flex-start;
    background: rgba(22, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: background 0.3s ease;
}

.slot-feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--light-text);
}

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

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

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

.slot-games-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slot-game-card {
    background: rgba(22, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(142, 68, 173, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slot-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-preview {
    height: 200px;
    background: linear-gradient(135deg, #8e44ad 0%, #2ecc71 100%);
    position: relative;
    overflow: hidden;
}

.game-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("0011_4_a-photo-of-a-very-sexy-asian-woman-sitti_hGX_WDaiQSSNik6DrNDg9A_UQUvOxqZTfy8ZIacMvSOIA_cover.webp");
    background-size: cover;
    background-position: center;
    aspect-ratio: 16/9;
    z-index: 1;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn:hover {
    transform: scale(1);
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
}

.game-info {
    padding: 20px;
}

.game-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.game-stats {
    display: flex;
    gap: 15px;
}

.game-stats span {
    font-size: 0.9rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
}

.game-stats i {
    color: var(--accent-color);
    margin-right: 5px;
}

.slot-footer {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.slot-footer p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.slot-footer strong {
    color: var(--accent-color);
    font-weight: 600;
}

.slot-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.slot-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.slot-cta-text {
    flex: 1;
}

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

.slot-cta-text p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.slot-btn {
    background: linear-gradient(to right, var(--accent-color), #e67e22);
    color: white;
    padding: 14px 35px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
    white-space: nowrap;
}

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

.slot-btn i {
    margin-right: 10px;
}

/* Responsive styles for slot games section */
@media (max-width: 992px) {
    .slot-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slot-title-wrapper {
        max-width: 100%;
    }
    
    .slot-features-wrapper {
        flex-direction: column;
    }
    
    .slot-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .slot-games-section {
        padding: 60px 0;
    }
    
    .slot-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-main-text p {
        font-size: 1rem;
    }
    
    .slot-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slot-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .slot-header h2 {
        font-size: 1.6rem;
    }
    
    .slot-main-text {
        padding: 20px;
    }
    
    .slot-feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .slot-cta {
        padding: 20px;
    }
    
    .slot-cta-text h3 {
        font-size: 1.3rem;
    }
    
    .slot-cta-text p {
        font-size: 1rem;
    }
    
    .slot-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* User Guide Section */
.user-guide-section {
    padding: 90px 0;
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.user-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(142, 68, 173, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%),
        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-3-4-3-4-3 1.79-3 4 1.79 4 3 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='%239C92AC' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.guide-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.guide-header h2 {
    font-size: 2.3rem;
    color: var(--light-text);
    margin: 0 20px;
    text-align: center;
    position: relative;
}

.guide-header-line {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    flex: 1;
    max-width: 150px;
}

.guide-intro {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    background: rgba(22, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.guide-intro-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.3);
}

.guide-intro-icon i {
    font-size: 2.5rem;
    color: white;
}

.guide-intro p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.guide-intro p:last-child {
    margin-bottom: 0;
}

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

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

.guide-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.step-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--light-text);
}

.guide-step-header h3 {
    font-size: 1.6rem;
    color: var(--light-text);
    position: relative;
}

.guide-step-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-left: 70px;
}

.step-item {
    display: flex;
    align-items: center;
    background: rgba(22, 22, 37, 0.4);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.step-text {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.guide-note {
    background: rgba(243, 156, 18, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin-left: 70px;
}

.guide-note p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.guide-usage {
    margin-top: 20px;
}

.guide-usage p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 70px;
}

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

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

.feature-card {
    background: rgba(22, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(142, 68, 173, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.feature-card-icon i {
    font-size: 2rem;
    color: var(--light-text);
}

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

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

.guide-conclusion {
    margin-top: 60px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.conclusion-wrapper {
    margin-bottom: 30px;
}

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

.guide-conclusion p:last-child {
    margin-bottom: 0;
}

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

.guide-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.guide-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.guide-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.4);
}

.guide-btn:hover::before {
    left: 100%;
}

.btn-text, .btn-icon {
    position: relative;
    z-index: 2;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.guide-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive styles for user guide section */
@media (max-width: 992px) {
    .guide-header h2 {
        font-size: 2rem;
    }
    
    .guide-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .user-guide-section {
        padding: 60px 0;
    }
    
    .guide-header h2 {
        font-size: 1.8rem;
    }
    
    .guide-header-line {
        max-width: 80px;
    }
    
    .guide-intro p {
        font-size: 1rem;
    }
    
    .guide-step-header h3 {
        font-size: 1.4rem;
    }
    
    .steps-container, .guide-note, .guide-usage p, .features-grid {
        padding-left: 0;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .guide-conclusion {
        padding: 30px;
    }
    
    .guide-conclusion p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .guide-header h2 {
        font-size: 1.5rem;
        margin: 0 10px;
    }
    
    .guide-header-line {
        max-width: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card-icon i {
        font-size: 1.5rem;
    }
    
    .guide-conclusion {
        padding: 25px;
    }
    
    .guide-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Player Reviews Section */
.player-reviews-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.player-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmZmZmYxMCIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.reviews-header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    z-index: 2;
}

.reviews-title {
    display: inline-block;
    position: relative;
}

.reviews-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #f0a500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, #f0a500, #f5cc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.reviews-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.reviews-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.review-card {
    flex: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card.featured {
    flex: none;
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(240, 165, 0, 0.3);
}

.review-avatar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0a500 0%, #f5cc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
}

.avatar-circle.female {
    background: linear-gradient(135deg, #e83e8c 0%, #ff6b9d 100%);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.avatar-circle i {
    font-size: 20px;
    color: #fff;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #f0a500;
    font-size: 14px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.review-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-text {
    margin-bottom: 15px;
    flex: 1;
}

.review-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    font-style: italic;
}

.review-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
}

.review-game i {
    color: #f0a500;
    margin-right: 5px;
}

.reviews-highlights {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.highlight-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0a500 0%, #f5cc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
}

.highlight-icon i {
    font-size: 18px;
    color: #fff;
}

.highlight-title h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

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

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.highlight-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(240, 165, 0, 0.3);
}

.highlight-icon-wrapper i {
    font-size: 24px;
    color: #f0a500;
}

.highlight-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #fff;
}

.highlight-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.reviews-conclusion {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-conclusion p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.reviews-conclusion p:last-child {
    margin-bottom: 30px;
}

.reviews-cta {
    text-align: center;
}

.reviews-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #f0a500 0%, #f5cc00 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(240, 165, 0, 0.3);
    border: none;
}

.reviews-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(240, 165, 0, 0.4);
}

.btn-glow {
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -60px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: glow 2s infinite;
}

@keyframes glow {
    0% {
        left: -60px;
    }
    100% {
        left: 100%;
    }
}

.btn-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .reviews-header h2 {
        font-size: 32px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .player-reviews-section {
        padding: 60px 0;
    }
    
    .reviews-header h2 {
        font-size: 28px;
    }
    
    .reviews-intro p {
        font-size: 16px;
    }
    
    .review-card {
        flex: none;
    }
    
    .review-card.featured {
        flex: none;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reviews-conclusion {
        padding: 30px;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .reviews-header h2 {
        font-size: 24px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-card.featured {
        padding: 20px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-content h4 {
        font-size: 18px;
    }
    
    .reviews-conclusion {
        padding: 25px;
    }
    
    .reviews-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Popularity Section */
.popularity-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff;
    overflow: hidden;
}

.popularity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.popularity-wrapper {
    position: relative;
    z-index: 2;
}

.popularity-header {
    text-align: center;
    margin-bottom: 50px;
}

.popularity-title {
    display: inline-block;
    position: relative;
}

.popularity-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #f0a500, #f5cc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.title-decoration .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0a500;
}

.title-decoration .line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, #f0a500, #f5cc00);
    margin: 0 10px;
}

.popularity-content {
    max-width: 1100px;
    margin: 0 auto;
}

.popularity-intro {
    text-align: center;
    margin-bottom: 50px;
}

.popularity-intro p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.popularity-intro p:last-child {
    margin-bottom: 0;
}

.popularity-intro strong {
    color: #f0a500;
    font-weight: 600;
}

.popularity-main {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.reasons-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.reason-item:hover::before {
    opacity: 1;
}

.reason-icon {
    flex: 0 0 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0a500 0%, #f5cc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
    position: relative;
    z-index: 1;
}

.reason-icon i {
    font-size: 22px;
    color: #fff;
}

.reason-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.reason-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}

.reason-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #e0e0e0;
}

.reason-content strong {
    color: #f0a500;
    font-weight: 600;
}

.popularity-visual {
    flex: 0 0 350px;
    display: flex;
    align-items: center;
}

.visual-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.visual-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 0;
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0a500 0%, #f5cc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
}

.visual-icon i {
    font-size: 30px;
    color: #fff;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #e0e0e0;
}

.popularity-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.details-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0a500 0%, #f5cc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
}

.card-icon i {
    font-size: 18px;
    color: #fff;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.card-body {
    padding: 20px;
}

.card-body p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #e0e0e0;
}

.card-body strong {
    color: #f0a500;
    font-weight: 600;
}

.popularity-conclusion {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.popularity-conclusion p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.popularity-conclusion strong {
    color: #f0a500;
    font-weight: 600;
}

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

.popularity-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #f0a500 0%, #f5cc00 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(240, 165, 0, 0.3);
    border: none;
}

.popularity-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(240, 165, 0, 0.4);
}

.btn-shine {
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -60px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

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

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

@media (max-width: 992px) {
    .popularity-title h2 {
        font-size: 32px;
    }
    
    .popularity-main {
        flex-direction: column;
    }
    
    .popularity-visual {
        flex: 0 0 auto;
    }
    
    .visual-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .popularity-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .popularity-section {
        padding: 60px 0;
    }
    
    .popularity-title h2 {
        font-size: 28px;
    }
    
    .popularity-intro p {
        font-size: 16px;
    }
    
    .reason-item {
        padding: 20px;
    }
    
    .reason-icon {
        flex: 0 0 40px;
        height: 40px;
    }
    
    .reason-icon i {
        font-size: 18px;
    }
    
    .reason-content h3 {
        font-size: 18px;
    }
    
    .popularity-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .popularity-conclusion {
        padding: 30px;
    }
    
    .popularity-conclusion p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .popularity-title h2 {
        font-size: 24px;
    }
    
    .title-decoration .line {
        width: 50px;
    }
    
    .popularity-intro p {
        font-size: 15px;
    }
    
    .visual-stats {
        flex-direction: column;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .popularity-conclusion {
        padding: 25px;
    }
    
    .popularity-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 1050px) {
    nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 100;
        padding: 20px 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    nav.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul li a {
        padding: 15px 0;
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}
