/* Reset and Base Styles */
:root {
    --primary-color: #ffd700;
    --secondary-color: #ff9500;
    --accent-color: #ff4500;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --bg-color: #121212;
    --bg-secondary: #1e1e2d;
    --bg-accent: #2a2a3c;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    --transition-speed: 0.3s;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

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

p {
    margin-bottom: 15px;
}

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

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

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

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

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

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

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
    opacity: 0;
    animation: pulse-logo 2s infinite;
}

@keyframes pulse-logo {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.logo-icon i {
    font-size: 20px;
    color: #333;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, #ffffff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.logo h1 span {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    font-weight: 800;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    position: relative;
    padding: 5px 0;
}

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

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

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--darker-bg);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(74, 0, 224, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

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

.hero-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content-centered.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-content-centered h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.hero-content-centered h1:after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.hero-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-centered {
    margin: 40px auto;
    position: relative;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(5deg) translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.hero-image-centered.animate {
    opacity: 1;
    transform: perspective(1000px) rotateX(5deg) translateY(0);
}

.hero-image-centered:hover {
    transform: perspective(1000px) rotateX(0) translateY(0);
}

.hero-image-centered img {
    width: 100%;
    border-radius: 12px;
    transition: var(--transition);
}

.hero-image-centered:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
    border-radius: 12px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

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

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

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

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.accent-btn {
    background: linear-gradient(to right, var(--secondary-color), #8a2be2);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 0, 224, 0.3);
}

.accent-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 0, 224, 0.4);
}

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

.about-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="20" height="20" viewBox="0 0 20 20"><rect width="1" height="1" fill="%23ffffff05"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

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

.about-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "image content"
        "stats stats";
    gap: 40px;
    align-items: center;
}

.about-image {
    grid-area: image;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark-bg);
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.about-content {
    grid-area: content;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text {
    margin-bottom: 30px;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.feature-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.about-stats {
    grid-area: stats;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 5px;
}

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

.about-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cta p {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.cta-button {
    background: var(--accent);
    color: var(--dark-bg);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--accent-hover);
}

.cta-button:hover::before {
    left: 100%;
}

/* Media Queries for About Section */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"
            "stats";
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
}

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

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

.game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.promotion-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.promotion-image {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.promotion-details {
    flex: 1;
    min-width: 300px;
}

.promotion-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.promotion-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.promotion-item h3 {
    margin-bottom: 10px;
}

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

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

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

.footer-logo .logo-icon i {
    font-size: 18px;
}

.footer-logo h2 {
    font-size: 22px;
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 0;
    background: linear-gradient(to right, #ffffff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo h2:after {
    display: none;
}

.footer-logo h2 span {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    font-weight: 800;
}

.footer-logo > p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-description {
    margin-top: 10px;
}

.footer-description p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    padding-left: 20px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
}

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

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.footer-links ul li a:hover::before {
    transform: translateY(-50%) rotate(90deg);
}

.footer-contact {
    grid-column: 4 / 5;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact ul li i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.payment-icons span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.payment-icons span i {
    margin-right: 8px;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Media Queries for Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo, .footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links, .footer-contact {
        padding-left: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: var(--darker-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.login-btn {
    background-color: #2a2a3c;
    color: var(--text-color);
    border-bottom: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #3a3a4c;
    transform: translateY(-2px);
}

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

.register-btn:hover {
    background-color: #ff8533;
}

.free-credit-btn {
    background-color: var(--secondary-color);
    color: white;
}

.free-credit-btn:hover {
    background-color: #5c1cff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 30px;
    }
    
    .hero-content-centered h1 {
        font-size: 36px;
    }
    
    .hero-content, .hero-image,
    .about-content, .about-image,
    .promotion-content, .promotion-image {
        width: 100%;
    }
    
    .hero-image, .about-image, .promotion-image {
        margin-top: 30px;
    }
    
    .hero-content, .about-content, .promotion-details {
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--bg-secondary);
        transition: all 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        padding-top: 80px;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-content-centered h1 {
        font-size: 1.8rem;
    }
    
    .hero-content-centered p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
    }
    
    .btn {
        flex: 1 0 calc(50% - 10px);
        margin-bottom: 10px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin-top: 20px;
    }
    
    .social-icons a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content-centered h1 {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .sticky-btn {
        font-size: 0.9rem;
        padding: 12px 5px;
    }
}

/* Add Font */
@font-face {
    font-family: 'Kanit';
    src: url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');
}

@font-face {
    font-family: 'Prompt';
    src: url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');
}

/* Avengers Slot Section */
.avengers-slot-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.avengers-slot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('0128_1_a-photo-of-a-very-sexy-asian-woman-with-_dlvwoWgIQbmLMk9wd9dX-A_vn2YqGXATsWVavf8Rj89Kg.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

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

.avengers-slot-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.avengers-slot-text h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.avengers-slot-text h2:after {
    left: 0;
    transform: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    width: 100px;
}

.avengers-slot-paragraphs {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.avengers-slot-paragraphs p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.avengers-slot-paragraphs p:last-child {
    margin-bottom: 0;
}

.avengers-slot-paragraphs strong {
    color: var(--primary-color);
    font-weight: 600;
}

.avengers-characters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.character-card {
    background: linear-gradient(145deg, var(--card-bg), #2a2a2a);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), rgba(74, 0, 224, 0.1));
    z-index: -1;
}

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

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

.character-icon i {
    font-size: 2rem;
    color: white;
}

.character-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.character-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.ironman .character-icon {
    background: linear-gradient(to right, #ff0000, #ffcc00);
}

.hulk .character-icon {
    background: linear-gradient(to right, #00cc00, #006600);
}

.thor .character-icon {
    background: linear-gradient(to right, #3366ff, #00ccff);
}

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

/* Media Queries for Avengers Slot Section */
@media (max-width: 992px) {
    .avengers-slot-content {
        grid-template-columns: 1fr;
    }
    
    .avengers-characters {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .character-card {
        flex: 1;
        min-width: 200px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .avengers-slot-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .avengers-slot-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .character-card {
        min-width: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .avengers-characters {
        flex-direction: column;
    }
    
    .character-card {
        max-width: 100%;
    }
}

/* Avengers Games Section */
.avengers-games-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.avengers-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    z-index: 0;
}

.avengers-games-section .container {
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    font-size: 2.5rem;
    padding: 0 30px;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-header h2::before {
    left: -10px;
    transform: translateY(-50%) rotate(45deg);
}

.section-header h2::after {
    right: -10px;
    transform: translateY(-50%) rotate(-45deg);
}

/* New Grid Layout */
.avengers-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 30px;
    margin-bottom: 40px;
    grid-template-areas:
        "image content"
        "features features"
        "text-secondary text-secondary";
}

.avengers-games-image-container {
    grid-area: image;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avengers-games-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.avengers-games-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.avengers-games-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.avengers-games-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.avengers-games-text {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
}

.avengers-games-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.avengers-games-features-container {
    grid-area: features;
    margin: 20px 0;
}

.avengers-games-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Hexagon Feature Style */
.feature-hexagon {
    width: 200px;
    height: 230px;
    position: relative;
    margin: 20px 10px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.feature-hexagon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 0;
}

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

.feature-hexagon:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

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

.feature-text h3 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
    color: var(--text-color);
}

.avengers-games-text-secondary {
    grid-area: text-secondary;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--secondary-color);
    margin-top: 20px;
}

.avengers-games-text-secondary p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.avengers-games-text-secondary p:last-child {
    margin-bottom: 0;
}

.avengers-games-text-secondary strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    position: relative;
}

.cta-container .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    z-index: 1;
}

.cta-badge {
    position: absolute;
    top: -15px;
    right: calc(50% - 100px);
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

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

/* Media Queries for Avengers Games Section */
@media (max-width: 1200px) {
    .feature-hexagon {
        width: 180px;
        height: 207px;
    }
}

@media (max-width: 992px) {
    .avengers-games-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content"
            "features"
            "text-secondary";
    }
    
    .avengers-games-image {
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0);
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .feature-hexagon {
        width: 160px;
        height: 184px;
        margin: 15px 8px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .avengers-games-features {
        gap: 15px;
    }
    
    .feature-hexagon {
        width: 140px;
        height: 161px;
        margin: 10px 5px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 1.4rem;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
    
    .cta-container .btn {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
    
    .cta-badge {
        right: calc(50% - 80px);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .avengers-games-features {
        gap: 10px;
    }
    
    .feature-hexagon {
        width: 120px;
        height: 138px;
        margin: 8px 4px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-text h3 {
        font-size: 0.9rem;
    }
    
    .avengers-games-text,
    .avengers-games-text-secondary {
        padding: 20px;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 4px 12px;
        top: -12px;
        right: calc(50% - 70px);
    }
}

@media (max-width: 400px) {
    .avengers-games-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-hexagon {
        width: 150px;
        height: 173px;
        margin: 10px 0;
    }
}

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

.promotions-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"><circle cx="50" cy="50" r="2" fill="%23ffffff10"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.promotions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.promotions-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 30px;
}

.promotions-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
    display: inline-block;
}

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

.promotions-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    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;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.promotions-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.promotions-content:hover::before {
    opacity: 1;
}

.promotions-text {
    margin-bottom: 25px;
}

.promotions-text h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
}

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

.promotions-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.promotions-image-container:hover {
    transform: scale(1.03);
}

.promotions-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.promotions-image-container:hover .promotions-image {
    transform: scale(1.05);
}

.promo-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--dark-bg);
    font-weight: bold;
    padding: 8px 30px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.promotions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

/* Animation for promotions list items */
@keyframes slideInRight {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.promotions-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInRight 0.5s forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.promotions-list li:nth-child(1) {
    --item-index: 1;
}

.promotions-list li:nth-child(2) {
    --item-index: 2;
}

.promotions-list li:nth-child(3) {
    --item-index: 3;
}

.promotions-list li:nth-child(4) {
    --item-index: 4;
}

.promotions-list li:nth-child(5) {
    --item-index: 5;
}

.promotions-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.promotions-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promotions-list li:hover::after {
    transform: translateX(100%);
}

.promotions-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.promotions-list li:hover i {
    transform: scale(1.2);
}

.promotions-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.claim-btn {
    background: var(--accent);
    color: var(--dark-bg);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--accent-hover);
}

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

/* Media Queries for Promotions Section */
@media (max-width: 992px) {
    .promotions-container {
        grid-template-columns: 1fr;
    }
    
    .promotions-header h2 {
        font-size: 2.2rem;
    }
    
    .promotions-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promotions-image-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 60px 0;
    }
    
    .promotions-header h2 {
        font-size: 2rem;
    }
    
    .promotions-text h3 {
        font-size: 1.6rem;
    }
    
    .promotions-list-container h3 {
        font-size: 1.4rem;
    }
    
    .promotions-list li {
        padding: 12px;
    }
    
    .promo-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .promotions-section {
        padding: 40px 0;
    }
    
    .promotions-header h2 {
        font-size: 1.8rem;
    }
    
    .promotions-content {
        padding: 20px;
    }
    
    .promotions-text h3 {
        font-size: 1.4rem;
    }
    
    .promotions-text p {
        font-size: 1rem;
    }
    
    .promotions-list-container {
        padding: 20px;
    }
    
    .promotions-list li {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .promotions-list li i {
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .promo-text {
        font-size: 0.9rem;
    }
}

/* Animation Classes for Promotions Section */
.promotions-header,
.promotions-content,
.promotions-image-container,
.promotions-footer,
.promotions-list li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right {
    opacity: 1;
    transform: translateX(0) !important;
}

.promotions-list li {
    transform: translateX(-20px);
}

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

.pulse {
    animation: pulse 0.6s ease-in-out;
}

/* Animation Classes for About Section */
.about-header,
.about-image,
.about-content,
.about-stats,
.about-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-image {
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.about-stats {
    transform: translateY(30px) scale(0.98);
}

.feature-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

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

.about-image.fade-in-up {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.stat-number {
    display: inline-block;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.fade-in-up .stat-number::after {
    width: 50%;
    transition-delay: 2s;
}

.promotions-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.promotions-list-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotions-list-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.promotions-list-container:hover::before {
    opacity: 1;
}

.promotions-list-container h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.promotions-list-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.promotions-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promotions-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    border-left: 3px solid var(--accent);
}

.promotions-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promotions-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.promo-text {
    font-size: 1.05rem;
    color: var(--text-color);
    flex: 1;
}

.promo-text strong {
    color: var(--accent);
    font-weight: bold;
}

/* Wallet Section */
.wallet-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wallet-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="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="%23ffffff08"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

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

.wallet-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.wallet-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wallet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.wallet-text {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.wallet-text strong {
    color: var(--accent);
    font-weight: bold;
}

.wallet-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wallet-card {
    perspective: 1000px;
    width: 100%;
    height: 200px;
}

.wallet-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.wallet-card:hover .wallet-card-inner {
    transform: rotateY(5deg);
}

.wallet-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: linear-gradient(135deg, #2a2a40 0%, #1a1a2e 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.wallet-card-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
}

.wallet-card-header, .wallet-card-number, .wallet-card-footer {
    position: relative;
    z-index: 1;
}

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

.wallet-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wallet-chip {
    color: var(--accent);
    font-size: 1.2rem;
}

.wallet-card-number {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-color);
    letter-spacing: 4px;
}

.wallet-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wallet-holder {
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wallet-valid {
    font-size: 0.9rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
}

.wallet-balance {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-display {
    text-align: center;
    margin-bottom: 20px;
}

.balance-label {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.balance-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
}

.wallet-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.wallet-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.withdraw-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.withdraw-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wallet-security {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.wallet-security::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

.security-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.security-text strong {
    color: var(--accent);
    font-weight: bold;
}

.wallet-features {
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    border-left: 3px solid var(--accent);
}

.features-list li:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

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

.wallet-cta {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wallet-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
}

.wallet-cta strong {
    color: var(--accent);
    font-weight: bold;
}

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

/* Media Queries for Wallet Section */
@media (max-width: 992px) {
    .wallet-content {
        grid-template-columns: 1fr;
    }
    
    .wallet-header h2 {
        font-size: 2.2rem;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wallet-section {
        padding: 60px 0;
    }
    
    .wallet-header h2 {
        font-size: 2rem;
    }
    
    .wallet-text p {
        font-size: 1rem;
    }
    
    .balance-amount {
        font-size: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .wallet-section {
        padding: 40px 0;
    }
    
    .wallet-header h2 {
        font-size: 1.8rem;
    }
    
    .wallet-text, .wallet-security {
        padding: 20px;
    }
    
    .wallet-card {
        height: 180px;
    }
    
    .wallet-logo {
        font-size: 1.2rem;
    }
    
    .wallet-card-number {
        font-size: 1.1rem;
    }
    
    .wallet-holder, .wallet-valid {
        font-size: 0.8rem;
    }
    
    .balance-amount {
        font-size: 1.8rem;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.5s ease forwards;
}

/* Wallet section animations */
.wallet-header, .wallet-content, .wallet-security, .wallet-features, .wallet-cta {
    opacity: 0;
}

.wallet-card {
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.wallet-card-inner {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.features-list li {
    opacity: 0;
}

/* Add 3D effect to wallet card */
.wallet-card:hover .wallet-card-inner {
    transform: rotateY(15deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Add glow effect to wallet card on hover */
.wallet-card:hover::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2), transparent 70%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* Add shine effect to wallet card */
.wallet-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.testimonials-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
}

/* Testimonials animations */
.testimonials-header, 
.testimonial-card, 
.testimonials-navigation, 
.testimonials-cta {
    opacity: 0;
}

.testimonial-card {
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.testimonial-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-avatar img {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-rating i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    animation: starPulse 1s infinite alternate;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
        color: #ffcc00;
    }
}

/* Staggered star animation */
.testimonial-rating i:nth-child(1) {
    animation-delay: 0s;
}
.testimonial-rating i:nth-child(2) {
    animation-delay: 0.1s;
}
.testimonial-rating i:nth-child(3) {
    animation-delay: 0.2s;
}
.testimonial-rating i:nth-child(4) {
    animation-delay: 0.3s;
}
.testimonial-rating i:nth-child(5) {
    animation-delay: 0.4s;
}

/* Dot animation */
.dot {
    position: relative;
    overflow: hidden;
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: all 0.3s ease;
}

.dot:hover::after {
    left: 100%;
}

/* Button animations */
.prev-btn, .next-btn {
    overflow: hidden;
    position: relative;
}

.prev-btn::after, .next-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.3s ease;
}

.prev-btn:hover::after, .next-btn:hover::after {
    left: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a1a2e, #16213e);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.faq-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.faq-content {
    margin-bottom: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-icon {
    color: #ffd700;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.faq-answer p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 20px;
}

.faq-item.active .faq-question {
    background: rgba(255, 215, 0, 0.1);
}

.faq-item.active .faq-question h3 {
    color: #ffd700;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 215, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-more {
    text-align: center;
    margin-top: 30px;
}

.faq-more p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 20px;
}

.contact-button {
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #333;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive styles for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-header p {
        font-size: 16px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-header h2 {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .contact-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* FAQ animations */
.faq-header, 
.faq-item, 
.faq-more {
    opacity: 0;
}

.faq-item {
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.faq-item.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple effect for FAQ question */
.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 215, 0, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.faq-question:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}

/* Pulse animation for FAQ icon */
.faq-icon {
    position: relative;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    animation: pulse 2s infinite;
    opacity: 0;
}

.faq-item:hover .faq-icon::before {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Smooth transition for answer */
.faq-answer {
    transition: max-height 0.5s ease, opacity 0.3s ease 0.2s, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-top: 10px;
}

/* Contact button animation */
.contact-button {
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Gameplay Tips Section */
.gameplay-tips-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e1e2f, #2a2a45);
    position: relative;
    overflow: hidden;
}

.gameplay-tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.gameplay-tips-container {
    position: relative;
    z-index: 2;
}

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

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.decoration-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0));
    margin: 0 15px;
}

.header-decoration i {
    color: #ffd700;
    font-size: 24px;
}

.gameplay-tips-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.gameplay-tips-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.gameplay-tips-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gameplay-tips-content p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gameplay-tips-content p:last-child {
    margin-bottom: 0;
}

.gameplay-tips-content strong {
    color: #ffd700;
    font-weight: bold;
}

.gameplay-tips-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tips-card {
    width: 100%;
    max-width: 400px;
    height: 100%;
    perspective: 1000px;
}

.tips-card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a45, #3a3a60);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.tips-card:hover .tips-card-inner {
    transform: rotateY(10deg);
}

.tips-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.tips-icon i {
    font-size: 36px;
    color: #ffd700;
}

.tips-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.tips-steps {
    width: 100%;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    margin-right: 15px;
    min-width: 40px;
}

.step-text {
    color: #fff;
    font-size: 16px;
}

.gameplay-tips-checklist {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checklist-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checklist-header i {
    font-size: 28px;
    color: #ffd700;
    margin-right: 15px;
}

.checklist-header h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tips-list li:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tip-icon {
    flex: 0 0 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.tip-icon i {
    font-size: 24px;
    color: #ffd700;
}

.tips-list li:hover .tip-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.tip-content {
    flex: 1;
}

.tip-content h4 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
}

.tip-content p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.tip-content strong {
    color: #ffd700;
    font-weight: bold;
}

.gameplay-tips-promotion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.gameplay-tips-promotion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: pulse 4s infinite;
    z-index: -1;
}

.gameplay-tips-promotion p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gameplay-tips-promotion p:last-child {
    margin-bottom: 0;
}

.gameplay-tips-promotion strong {
    color: #ffd700;
    font-weight: bold;
}

.money-management {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.money-management-header {
    margin-bottom: 25px;
    position: relative;
}

.money-management-header h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
}

.money-management-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.money-management-content p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.money-management-content strong {
    color: #ffd700;
    font-weight: bold;
}

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

.money-tip {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.money-tip:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.money-tip-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.money-tip:hover .money-tip-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.money-tip-icon i {
    font-size: 24px;
    color: #ffd700;
}

.money-tip-content h4 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
}

.money-tip-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.money-tip-content strong {
    color: #ffd700;
    font-weight: bold;
}

.gameplay-tips-footer {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gameplay-tips-footer p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gameplay-tips-footer strong {
    color: #ffd700;
    font-weight: bold;
}

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

/* Responsive styles for gameplay tips */
@media (max-width: 992px) {
    .gameplay-tips-main {
        grid-template-columns: 1fr;
    }
    
    .gameplay-tips-visual {
        margin-top: 30px;
    }
    
    .money-tips {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gameplay-tips-section {
        padding: 60px 0;
    }
    
    .gameplay-tips-header h2 {
        font-size: 28px;
    }
    
    .tips-card-inner {
        padding: 20px;
    }
    
    .tips-icon {
        width: 60px;
        height: 60px;
    }
    
    .tips-icon i {
        font-size: 28px;
    }
    
    .tips-title {
        font-size: 20px;
    }
    
    .step {
        padding: 12px;
    }
    
    .step-number {
        font-size: 20px;
    }
    
    .checklist-header h3 {
        font-size: 20px;
    }
    
    .tip-icon {
        flex: 0 0 50px;
        height: 50px;
    }
    
    .tip-content h4 {
        font-size: 16px;
    }
    
    .money-management-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .gameplay-tips-header h2 {
        font-size: 24px;
    }
    
    .decoration-line {
        width: 50px;
    }
    
    .tips-list li {
        flex-direction: column;
    }
    
    .tip-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .tips-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .tips-cta .btn {
        width: 100%;
    }
}

/* Gameplay tips animations */
.gameplay-tips-header,
.gameplay-tips-content,
.gameplay-tips-visual,
.gameplay-tips-checklist,
.gameplay-tips-promotion,
.money-management,
.gameplay-tips-footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.tips-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tips-list li.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

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

.money-tip.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.step {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

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

.tips-card-inner {
    animation: float 6s ease-in-out infinite;
}