/* 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');

/* Base Styles */
:root {
    --primary-color: #10b981;
    --primary-color-dark: #059669;
    --secondary-color: #3b82f6;
    --accent-color: #f97316;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --text-color: #ffffff;
    --text-secondary: #cbd5e1;
    --border-color: #334155;
    --transition: all 0.3s ease;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --gradient-bg: linear-gradient(135deg, #0f172a, #1e293b);
    --primary-color-rgb: 16, 185, 129;
    --secondary-color-rgb: 59, 130, 246;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', 'Kanit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(30px);
}

section.active {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.primary-btn {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.primary-btn:hover {
    background-color: #34d399;
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.secondary-btn:hover {
    background-color: #60a5fa;
    transform: translateY(-3px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: rotate(-10deg);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 150%;
    height: 40%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.logo a:hover .logo-icon {
    transform: rotate(0deg) scale(1.1);
}

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

.logo-icon i {
    color: #fff;
    font-size: 1.3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.logo a:hover .logo-text {
    transform: translateY(-2px);
}

.logo-highlight {
    color: var(--accent-color);
    font-size: 2.2rem;
    position: relative;
    margin: 0 2px;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50px;
    opacity: 0.7;
}

/* Footer logo styles */
.footer-logo-design {
    margin-bottom: 15px;
}

.footer-logo-design .logo-icon {
    width: 40px;
    height: 40px;
}

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

.footer-logo-design .logo-highlight {
    font-size: 2.4rem;
}

/* Add additional styles for mobile breakpoint */
@media (max-width: 850px) {
    header .container {
        position: relative;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

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

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 100px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-shape-1 {
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2), transparent 70%);
    animation: morphShape 20s infinite alternate;
}

.hero-shape-2 {
    bottom: -250px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), transparent 70%);
    animation: morphShape 15s infinite alternate-reverse;
}

.hero-shape-3 {
    top: 20%;
    left: 25%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.1), transparent 70%);
    animation: morphShape 25s infinite alternate;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
        "card image"
        "actions image";
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.main-card {
    grid-area: card;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.main-card:hover {
    transform: translateY(-5px);
}

.main-card h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.main-card p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.hero-image-container {
    grid-area: image;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image-container:hover img {
    transform: scale(1.03) rotate(1deg);
}

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

.hero-actions-container {
    grid-area: actions;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.stat-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 18px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.15), rgba(var(--secondary-color-rgb), 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.stat-icon {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateZ(0);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-icon i {
    font-size: 1.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.stat-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #fff;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: #ffffff!important;
    display: inline-block;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.25));
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.1), transparent 60%);
    pointer-events: none;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

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

.about-image img {
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.5s ease;
}

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

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

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05), transparent 70%);
    pointer-events: none;
}

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

.game-category {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.game-category:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
}

.game-category i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.game-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.game-category p {
    color: var(--text-secondary);
}

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

.games-image img {
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    margin: 0 auto;
}

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

.promotion-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 60%);
    pointer-events: none;
}

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

.promotion-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.promotion-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
}

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

.promotion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.promotion-card p {
    color: var(--text-secondary);
}

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.1), transparent 60%);
    pointer-events: none;
}

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

.contact-method {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-method:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-method p {
    color: var(--text-secondary);
}

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

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.05), transparent 70%);
    pointer-events: none;
}

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

.footer-logo h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links h3, .footer-payment h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    animation: fadeIn 0.8s ease-out;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

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

.login-btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

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

.register-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.free-credit-btn {
    color: var(--accent-color);
}

.free-credit-btn:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "card"
            "image"
            "actions";
    }
    
    .main-card h1 {
        font-size: 2.4rem;
    }
    
    .about-text, .about-image {
        flex: 100%;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--darker-bg);
        flex-direction: column;
        padding: 80px 20px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .main-card h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats-cards {
        flex-direction: column;
    }
    
    section {
        padding: 60px 0;
    }
    
    .sticky-btn {
        padding: 8px 15px;
        margin: 0 5px;
    }
    
    .sticky-btn span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .main-card {
        padding: 25px;
    }
    
    .main-card h1 {
        font-size: 1.9rem;
    }
    
    .main-card p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero-image-container {
        margin: 0 -20px;
    }
    
    .hero-image-container img {
        border-radius: 0;
    }
    
    .sticky-btn {
        padding: 6px 10px;
        margin: 0 2px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-right: 4px;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .sticky-btn {
        padding: 5px 8px;
        margin: 0 1px;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
        margin-right: 3px;
    }
    
    .sticky-btn span {
        font-size: 0.65rem;
    }
}

.highlight {
    color: var(--secondary-color);
}

.section-badge {
    display: inline-block;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Shape Dividers */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider .shape-fill {
    fill: var(--dark-bg);
}

.about-section .shape-divider .shape-fill,
.promotion-section .shape-divider .shape-fill {
    fill: var(--darker-bg);
}

/* Hero Additions */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.stat-item strong {
    color: var(--secondary-color);
    margin-left: 5px;
}

.image-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    transform: rotate(10deg);
    box-shadow: var(--shadow);
    z-index: 1;
}

/* About Additions */
.image-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 10px;
}

.image-dots span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.image-dots span:nth-child(2) {
    background-color: var(--secondary-color);
}

.image-dots span:nth-child(3) {
    background-color: var(--accent-color);
}

/* Game Category Enhancements */
.category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.game-category:hover .category-icon {
    background-color: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.category-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.category-link i {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

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

/* Promotion Enhancements */
.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 5px;
}

.promotion-card {
    position: relative;
}

.promotion-card .btn-sm {
    margin-top: 15px;
}

/* Contact Enhancements */
.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-method:hover .contact-icon {
    background-color: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px dashed var(--primary-color);
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer Enhancements */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

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

.social-links a i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Apply animations to sections */
section {
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(30px);
}

section.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    animation: slideInLeft 1s ease forwards;
}

.hero-image {
    animation: slideInRight 1s ease forwards;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

.game-category, .promotion-card, .contact-method {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.active .game-category, 
section.active .promotion-card, 
section.active .contact-method {
    opacity: 1;
    transform: translateY(0);
}

section.active .game-category:nth-child(1),
section.active .promotion-card:nth-child(1),
section.active .contact-method:nth-child(1) {
    transition-delay: 0.1s;
}

section.active .game-category:nth-child(2),
section.active .promotion-card:nth-child(2),
section.active .contact-method:nth-child(2) {
    transition-delay: 0.3s;
}

section.active .game-category:nth-child(3),
section.active .promotion-card:nth-child(3),
section.active .contact-method:nth-child(3) {
    transition-delay: 0.5s;
}

section.active .game-category:nth-child(4) {
    transition-delay: 0.7s;
}

.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.active .section-header {
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    transition: transform 0.5s ease;
}

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

/* Sticky Button Animation */
.sticky-buttons {
    animation: fadeIn 0.8s ease-out;
}

.sticky-btn {
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Experience Section */
.experience-section {
    background-color: var(--darker-bg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    pointer-events: none;
    z-index: -1;
}

.experience-section .section-header h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-text-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 25px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    position: relative;
}

.experience-text-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.experience-text-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

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

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

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

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

.highlight-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
}

.highlight-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--dark-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:hover .highlight-icon {
    transform: rotateY(180deg);
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.highlight-card:nth-child(2) .highlight-icon i {
    color: var(--secondary-color);
}

.highlight-card:nth-child(3) .highlight-icon i {
    color: var(--primary-color);
}

.highlight-card:nth-child(4) .highlight-icon i {
    color: var(--accent-color);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.experience-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.experience-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .experience-text-container {
        grid-template-columns: 1fr;
    }
    
    .experience-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .experience-highlights {
        grid-template-columns: 1fr;
    }
    
    .experience-cta {
        flex-direction: column;
    }
    
    .experience-cta .btn {
        width: 100%;
    }
}

/* VIP Benefits Section */
.vip-benefits-wrapper {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px dashed rgba(59, 130, 246, 0.3);
    overflow: hidden;
    position: relative;
}

.vip-benefits-wrapper::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: -1;
}

.vip-benefits-wrapper::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    z-index: -1;
}

.vip-benefits-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.vip-benefits-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.vip-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.vip-badge::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.vip-badge i {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-right: 0;
}

.vip-badge span {
    position: absolute;
    bottom: -10px;
    background: var(--darker-bg);
    color: var(--accent-color);
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--accent-color);
}

.vip-benefits-header h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    position: relative;
    display: inline-block;
}

.vip-benefits-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    border-radius: 3px;
}

.vip-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.vip-card {
    background: rgba(30, 41, 59, 0.3);
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.vip-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

.vip-benefits-left .vip-card {
    border-left: 4px solid var(--accent-color);
}

.vip-benefits-right .vip-card {
    border-left: 4px solid var(--secondary-color);
}

.vip-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.vip-card p:last-child {
    margin-bottom: 0;
}

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

.vip-benefits-left .vip-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.vip-benefits-right .vip-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.vip-benefits-comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 50px;
    position: relative;
}

.vip-comparison-item {
    flex: 1;
    background: rgba(30, 41, 59, 0.3);
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.vip-comparison-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.vip-comparison-item.regular {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-right: none;
}

.vip-comparison-item.vip {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-left: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-bottom: 80px;
    position: relative;
}

.vip-comparison-item:hover {
    transform: translateY(-5px);
    z-index: 2;
}

.vip-comparison-item.vip:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.comparison-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Slot Guide Section */
.slot-guide-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slot-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.1), transparent 70%),
                radial-gradient(ellipse at top right, rgba(249, 115, 22, 0.08), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.slot-guide-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slot-guide-section.active .slot-guide-header {
    opacity: 1;
    transform: translateY(0);
}

.guide-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transform: rotate(45deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.5s ease;
}

.guide-badge::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.slot-guide-header:hover .guide-badge {
    transform: rotate(135deg);
}

.guide-badge i {
    font-size: 2.8rem;
    color: var(--text-color);
    transform: rotate(-45deg);
    transition: transform 0.5s ease;
}

.slot-guide-header:hover .guide-badge i {
    transform: rotate(-135deg);
}

.slot-guide-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.slot-guide-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    border-radius: 3px;
}

.slot-guide-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.slot-guide-text {
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slot-guide-section.active .slot-guide-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

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

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

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

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.step-card {
    background: rgba(10, 15, 30, 0.6);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.slot-guide-section.active .step-card {
    opacity: 1;
    transform: translateY(0);
}

.slot-guide-section.active .step-card:nth-child(1) {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.3s;
}

.slot-guide-section.active .step-card:nth-child(2) {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.4s;
}

.slot-guide-section.active .step-card:nth-child(3) {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.5s;
}

.slot-guide-section.active .step-card:nth-child(4) {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.6s;
}

.slot-guide-section.active .step-card:nth-child(5) {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.7s;
}

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

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--darker-bg);
    font-size: 1.8rem;
    font-weight: bold;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

.step-content {
    padding: 20px;
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.slot-guide-summary {
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 20px;
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slot-guide-section.active .slot-guide-summary {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

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

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

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

.slot-guide-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slot-guide-section.active .slot-guide-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.slot-guide-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .slot-guide-header h2 {
        font-size: 2rem;
    }
    
    .step-card {
        flex-direction: column;
    }
    
    .step-number {
        width: 100%;
        padding: 10px;
    }
    
    .slot-guide-cta {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .slot-guide-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .guide-badge {
        width: 70px;
        height: 70px;
    }
    
    .guide-badge i {
        font-size: 2rem;
    }
    
    .slot-guide-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-guide-text p, 
    .slot-guide-summary p {
        font-size: 1rem;
    }
}

/* Account Section */
.account-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color) 100%);
    overflow: hidden;
    color: #fff;
}

.account-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M25,30 L75,30 L75,70 L25,70 Z" stroke="rgba(255,255,255,0.05)" fill="none" stroke-width="2"/><circle cx="50" cy="50" r="15" stroke="rgba(255,255,255,0.05)" fill="none" stroke-width="2"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

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

.account-header {
    text-align: center;
    margin-bottom: 50px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease-out;
}

.account-section.active .account-header {
    transform: translateY(0);
    opacity: 1;
}

.account-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.account-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.account-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.account-icon i {
    font-size: 24px;
    color: #fff;
}

.account-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.account-dashboard {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.5s ease-out 0.2s;
}

.account-section.active .account-dashboard {
    transform: translateY(0);
    opacity: 1;
}

.dashboard-sidebar {
    width: 25%;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
}

.dashboard-tabs {
    display: flex;
    flex-direction: column;
}

.dashboard-tab {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dashboard-tab.active {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--accent-color);
}

.dashboard-tab i {
    font-size: 18px;
    margin-right: 15px;
}

.dashboard-tab span {
    font-weight: 500;
}

.dashboard-tab:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-content {
    width: 75%;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.account-text {
    width: 55%;
    padding-right: 30px;
}

.account-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

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

.dashboard-preview {
    width: 45%;
}

.dashboard-frame {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #333;
}

.dashboard-header {
    background: var(--accent-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.dashboard-user {
    display: flex;
    align-items: center;
    color: #fff;
}

.dashboard-user i {
    font-size: 18px;
    margin-right: 8px;
}

.dashboard-body {
    padding: 30px 20px;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-stat {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    flex: 1;
}

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

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 13px;
    color: #FFFFFF;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
}

.dashboard-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deposit-btn {
    background: var(--primary-color);
    color: #fff;
}

.withdraw-btn {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #ddd;
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.account-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.5s ease-out 0.4s;
}

.account-section.active .account-features {
    transform: translateY(0);
    opacity: 1;
}

.feature-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

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

.feature-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.account-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.5s ease-out 0.6s;
}

.account-section.active .account-cta {
    transform: translateY(0);
    opacity: 1;
}

.account-cta .btn {
    padding: 15px 30px;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .account-dashboard {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        padding: 20px 0;
    }
    
    .dashboard-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 0 20px;
    }
    
    .dashboard-tab {
        padding: 12px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .dashboard-tab.active {
        border-left: none;
        border-bottom: 3px solid var(--accent-color);
    }
    
    .dashboard-content {
        width: 100%;
        flex-direction: column;
    }
    
    .account-text, .dashboard-preview {
        width: 100%;
        padding-right: 0;
    }
    
    .account-text {
        margin-bottom: 30px;
    }
    
    .account-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .account-section {
        padding: 80px 0;
    }
    
    .account-header h2 {
        font-size: 28px;
    }
    
    .account-icons {
        gap: 20px;
    }
    
    .account-icon {
        width: 50px;
        height: 50px;
    }
    
    .account-icon i {
        font-size: 20px;
    }
    
    .account-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .account-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Strategy Section */
.strategy-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.strategy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.06), transparent 70%),
                radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.06), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.strategy-wrapper {
    position: relative;
    padding: 20px 0;
}

.strategy-header {
    margin-bottom: 40px;
}

.strategy-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.strategy-title-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.strategy-lamp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 2;
}

.strategy-lamp i {
    color: var(--text-color);
    font-size: 1.5rem;
}

.strategy-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

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

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

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

.strategy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
}

.strategy-cards-container {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-card-wrapper {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.strategy-section.active .strategy-card-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.strategy-section.active .strategy-card-wrapper:nth-child(1) {
    transition-delay: 0.1s;
}

.strategy-section.active .strategy-card-wrapper:nth-child(2) {
    transition-delay: 0.2s;
}

.strategy-section.active .strategy-card-wrapper:nth-child(3) {
    transition-delay: 0.3s;
}

.strategy-section.active .strategy-card-wrapper:nth-child(4) {
    transition-delay: 0.4s;
}

.strategy-section.active .strategy-card-wrapper:nth-child(5) {
    transition-delay: 0.5s;
}

.strategy-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7));
    border-radius: var(--border-radius);
    padding: 5px;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.strategy-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    width: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    position: relative;
}

.strategy-number::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--secondary-color);
}

.strategy-card-content {
    flex: 1;
    padding: 20px 25px;
}

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

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

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

.strategy-visual {
    flex: 2;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.strategy-section.active .strategy-visual {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.chart-container {
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.chart-header h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    text-align: center;
}

.chart-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-label {
    width: 150px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
    flex-shrink: 0;
}

.chart-bar {
    flex: 1;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.strategy-section.active .chart-fill {
    width: var(--width, 0%);
}

.chart-percent {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 1;
}

.strategy-conclusion {
    background: rgba(15, 23, 42, 0.7);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.strategy-section.active .strategy-conclusion {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

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

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

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

.strategy-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.strategy-section.active .strategy-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.strategy-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .strategy-content {
        flex-direction: column;
    }
    
    .strategy-visual {
        order: -1;
    }
    
    .chart-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .strategy-title-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .strategy-card {
        flex-direction: column;
    }
    
    .strategy-number {
        width: 100%;
        height: 50px;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .strategy-number::after {
        display: none;
    }
    
    .chart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .chart-label {
        width: 100%;
        text-align: left;
    }
    
    .strategy-cta {
        flex-direction: column;
    }
    
    .strategy-cta .btn {
        width: 100%;
    }
}

/* Mobile menu adjustments */
@media (max-width: 850px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding-top: 70px;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 0;
  }
  
  nav ul li {
    margin: 0;
    width: 100%;
  }
  
  nav ul li a {
    padding: 15px 25px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
  }
  
  .mobile-menu-btn i {
    color: var(--text-color);
    font-size: 24px;
  }
}

@media (min-width: 851px) {
  .mobile-menu-btn {
    display: none;
  }
  
  nav {
    display: block !important;
    position: relative;
  }
}
