/* 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: #ff5e7d;
    --secondary-color: #21d4fd;
    --accent-color: #7a19f1;
    --dark-bg: #121418;
    --darker-bg: #0a0c10;
    --card-bg: #1c1e24;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2d35;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    --border-radius: 10px;
    --gradient-bg: linear-gradient(135deg, #121418, #0a0c10);
    --gradient-card: linear-gradient(145deg, #1c1e24, #16181e);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', 'Kanit', sans-serif;
    background: var(--gradient-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;
    box-shadow: var(--shadow);
}

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

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

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

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

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: 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;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 94, 125, 0.4);
}

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

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(33, 212, 253, 0.4);
}

.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 212, 253, 0.6);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.logo a i {
    color: var(--secondary-color);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(33, 212, 253, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover i {
    transform: rotate(20deg);
    filter: drop-shadow(0 0 8px rgba(33, 212, 253, 0.8));
}

.logo-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 5px rgba(33, 212, 253, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: rotate(20deg);
    filter: drop-shadow(0 0 8px rgba(33, 212, 253, 0.8));
}

.logo-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    font-weight: 800;
}

.thai-text {
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
}

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

.logo a:hover .thai-text::after {
    transform-origin: left;
    transform: scaleX(1);
}

nav ul {
    display: flex;
}

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

nav ul li a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.5px;
}

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);
    z-index: 1001;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.03;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
}

.hero-section:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.03;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 50% 0);
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    align-items: center;
}

.hero-content {
    order: 2;
    text-align: left;
    max-width: 560px;
    padding: 40px;
    border-radius: var(--border-radius);
    background: rgba(28, 30, 36, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--primary-color);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0.5px;
    word-break: break-word;
}

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

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

.hero-buttons .btn {
    min-width: 160px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-buttons .primary-btn:before,
.hero-buttons .secondary-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: var(--transition);
    z-index: -1;
}

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

.hero-image {
    order: 1;
    position: relative;
    max-width: 100%;
}

.hero-image:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.1;
    top: -50px;
    left: -80px;
    z-index: -1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: perspective(800px) rotateY(0deg) translateZ(0);
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    border: 3px solid var(--border-color);
    position: relative;
    overflow: hidden;
    filter: brightness(1.05);
}

.hero-image img:hover {
    transform: perspective(800px) rotateY(10deg) translateZ(30px);
    box-shadow: -15px 15px 25px rgba(0, 0, 0, 0.3);
}

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

.intro-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(122, 25, 241, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 60%, rgba(255, 94, 125, 0.05) 0%, transparent 30%);
    z-index: 0;
}

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

.intro-heading {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    transition: transform 0.5s ease;
}

.intro-heading.animated h2::after {
    animation: gradient-flow 3s ease infinite;
    background-size: 200% auto;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
}

@keyframes gradient-flow {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.intro-heading h2 {
    font-size: 2.4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.intro-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.intro-text {
    max-width: 100%;
    margin-bottom: 50px;
}

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

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

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.intro-features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: -25px;
    left: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.feature {
    background-color: rgba(28, 30, 36, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

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

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

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

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature p {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    filter: blur(150px);
    opacity: 0.03;
    z-index: 0;
}

.access-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    filter: blur(120px);
    opacity: 0.03;
    z-index: 0;
}

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

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

.access-header h2 {
    font-size: 2.6rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.access-container {
    max-width: 900px;
    margin: 0 auto;
}

.access-text {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.access-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    display: flex;
    background: rgba(28, 30, 36, 0.4);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 94, 125, 0.2);
}

.step-icon {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: linear-gradient(145deg, rgba(33, 212, 253, 0.1), rgba(255, 94, 125, 0.1));
    position: relative;
}

.step-icon i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

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

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

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

.access-conclusion {
    background: rgba(28, 30, 36, 0.3);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border-left: 3px solid var(--secondary-color);
    border-right: 3px solid var(--primary-color);
    position: relative;
    box-shadow: var(--shadow);
}

.access-conclusion::before,
.access-conclusion::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 50%;
    top: 0;
}

.access-conclusion::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.access-conclusion::after {
    right: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

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

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

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

@media (max-width: 992px) {
    .access-header h2 {
        font-size: 2.3rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
    }
    
    .step-icon {
        flex: 0 0 auto;
        width: 100%;
        padding: 20px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .step-icon i {
        margin-bottom: 0;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .access-header h2 {
        font-size: 2rem;
    }
    
    .access-text p {
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p,
    .access-conclusion p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .access-header h2 {
        font-size: 1.8rem;
    }
    
    .access-conclusion {
        padding: 30px 20px;
    }
}

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

.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);
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition);
}

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

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

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

.game-category {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-category:hover {
    transform: translateY(-10px);
}

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

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

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

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

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

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

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

.promotion-card {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promotion-card:hover {
    transform: translateY(-10px);
}

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

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

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

/* Contact Section */
.contact-section {
    background: var(--gradient-bg);
}

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

.contact-method {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method:hover {
    transform: translateY(-10px);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

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

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 120px;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo h2 a {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-logo h2 a i {
    color: var(--secondary-color);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 5px rgba(33, 212, 253, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo h2 a:hover i {
    transform: rotate(20deg);
    filter: drop-shadow(0 0 8px rgba(33, 212, 253, 0.8));
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px rgba(33, 212, 253, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo h2 a:hover .logo-icon {
    transform: rotate(20deg);
    filter: drop-shadow(0 0 8px rgba(33, 212, 253, 0.8));
}

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

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

.footer-links h3, .footer-payment h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-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;
    color: var(--text-secondary);
}

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

.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: rgba(13, 13, 13, 0.95);
    padding: 15px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin: 0 10px;
    border-radius: 50px;
    transition: var(--transition);
    min-width: 120px;
    box-shadow: var(--shadow);
}

.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 {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.login-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(33, 212, 253, 0.6);
}

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

.register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 94, 125, 0.6);
}

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

.free-credit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(122, 25, 241, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
    }

    .hero-content, .hero-image {
        order: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .hero-image:before {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-heading h2 {
        font-size: 2.2rem;
    }
    
    .intro-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    section {
        padding: 60px 0;
    }
    
    .sticky-btn {
        padding: 10px 15px;
        min-width: 100px;
    }
    
    .sticky-btn span {
        font-size: 0.8rem;
    }

    .intro-heading h2 {
        font-size: 2rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .sticky-buttons {
        padding: 10px;
    }
    
    .sticky-btn {
        margin: 0 5px;
        padding: 8px 12px;
        min-width: 90px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-right: 5px;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }

    .intro-heading h2 {
        font-size: 1.8rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
}

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

.promotions-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 180%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.03;
    transform: rotate(-30deg);
    border-radius: 100px;
    z-index: 0;
}

.promotions-info-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 80%;
    height: 180%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0.03;
    transform: rotate(30deg);
    border-radius: 100px;
    z-index: 0;
}

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

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

.promotions-info-header h2 {
    font-size: 2.6rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
    display: inline-block;
    position: relative;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

.promotions-info-main {
    background: rgba(18, 20, 24, 0.4);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.promotions-info-text {
    margin-bottom: 30px;
}

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

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

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

.promo-card {
    display: flex;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

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

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

.promo-icon {
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 25, 241, 0.1);
    transition: var(--transition);
}

.promo-card:hover .promo-icon {
    background: rgba(122, 25, 241, 0.2);
}

.promo-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.promo-card:hover .promo-icon i {
    transform: scale(1.2);
}

.promo-details {
    flex: 1;
    padding: 15px;
}

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

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

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

.promotions-info-conclusion {
    background: rgba(28, 30, 36, 0.3);
    border-radius: var(--border-radius);
    padding: 25px;
    position: relative;
    margin-top: 20px;
}

.promotions-info-conclusion p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

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

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

.promotions-info-side {
    position: relative;
}

.promotions-showcase {
    position: sticky;
    top: 100px;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-highlight {
    padding: 20px;
}

.promo-highlight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-highlight-header i {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.promo-highlight-header h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0;
}

.promo-highlight-item {
    background: rgba(28, 30, 36, 0.5);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    transition: var(--transition);
}

.promo-highlight-item:hover {
    background: rgba(28, 30, 36, 0.8);
    transform: translateY(-3px);
}

.badge {
    position: absolute;
    top: 0;
    right: 15px;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: var(--text-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.promo-highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.promo-highlight-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.promo-action {
    padding: 0 20px 20px;
}

.promo-action .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.promo-action .btn i {
    transition: var(--transition);
}

.promo-action .btn:hover i {
    transform: translateX(5px);
}

/* Attribution for different promo types */
.promo-card[data-promo="welcome"] .promo-icon {
    background: rgba(255, 94, 125, 0.1);
}

.promo-card[data-promo="welcome"] .promo-icon i {
    color: var(--primary-color);
}

.promo-card[data-promo="welcome"]:hover .promo-icon {
    background: rgba(255, 94, 125, 0.2);
}

.promo-card[data-promo="daily"] .promo-icon {
    background: rgba(33, 212, 253, 0.1);
}

.promo-card[data-promo="daily"] .promo-icon i {
    color: var(--secondary-color);
}

.promo-card[data-promo="daily"]:hover .promo-icon {
    background: rgba(33, 212, 253, 0.2);
}

.promo-card[data-promo="referral"] .promo-icon {
    background: rgba(122, 25, 241, 0.1);
}

.promo-card[data-promo="referral"] .promo-icon i {
    color: var(--accent-color);
}

.promo-card[data-promo="referral"]:hover .promo-icon {
    background: rgba(122, 25, 241, 0.2);
}

.promo-card[data-promo="special"] .promo-icon {
    background: rgba(255, 193, 7, 0.1);
}

.promo-card[data-promo="special"] .promo-icon i {
    color: #ffc107;
}

.promo-card[data-promo="special"]:hover .promo-icon {
    background: rgba(255, 193, 7, 0.2);
}

@media (max-width: 1100px) {
    .promotions-info-layout {
        grid-template-columns: 1fr;
    }
    
    .promotions-info-side {
        order: -1;
    }
    
    .promotions-showcase {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .promotions-info-header h2 {
        font-size: 2.2rem;
    }
    
    .promotions-cards {
        grid-template-columns: 1fr;
    }
    
    .promo-highlight-item {
        padding: 20px 15px;
    }
    
    .badge {
        position: relative;
        display: inline-block;
        top: 0;
        right: 0;
        transform: none;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .promotions-info-header h2 {
        font-size: 1.8rem;
    }
    
    .promo-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .promo-icon {
        flex: 0 0 auto;
        width: 100%;
        padding: 20px 0;
    }
    
    .promo-details {
        padding: 20px 15px;
    }
}

/* Experience Section */
.experience-section {
    position: relative;
    background: var(--gradient-bg);
    padding: 100px 0;
    overflow: hidden;
}

.experience-section::before,
.experience-section::after {
    content: '';
    position: absolute;
    z-index: 0;
}

.experience-section::before {
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 25, 241, 0.1) 0%, rgba(122, 25, 241, 0) 70%);
}

.experience-section::after {
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 94, 125, 0.1) 0%, rgba(255, 94, 125, 0) 70%);
}

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

.experience-header h2 {
    display: inline-block;
    font-size: 2.6rem;
    position: relative;
    padding-bottom: 20px;
    color: var(--text-color);
}

.experience-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    border-radius: 2px;
}

.experience-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.experience-content {
    flex: 1;
    position: relative;
}

.experience-text {
    background: rgba(28, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
    z-index: 1;
}

.experience-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

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

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

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

.visual-cube {
    width: 100%;
    height: 300px;
    perspective: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube-wrapper {
    width: 250px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    animation: initial-rotate 2s ease-in-out forwards;
}

@keyframes initial-rotate {
    0% {
        transform: rotateX(0) rotateY(0);
    }
    50% {
        transform: rotateX(180deg) rotateY(90deg);
    }
    100% {
        transform: rotateX(0) rotateY(0);
    }
}

.cube-wrapper.show-front {
    transform: rotateY(0);
}

.cube-wrapper.show-back {
    transform: rotateY(180deg);
}

.cube-wrapper.show-right {
    transform: rotateY(-90deg);
}

.cube-wrapper.show-left {
    transform: rotateY(90deg);
}

.cube-wrapper.show-top {
    transform: rotateX(-90deg);
}

.cube-wrapper.show-bottom {
    transform: rotateX(90deg);
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    background: rgba(28, 30, 36, 0.8);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.cube-face::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 94, 125, 0.1) 0%, 
        rgba(33, 212, 253, 0.1) 50%, 
        rgba(122, 25, 241, 0.1) 100%);
    opacity: 0.3;
    z-index: 0;
}

.cube-face.front {
    transform: translateZ(125px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(125px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(125px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(125px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(125px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(125px);
}

.cube-content {
    padding: 20px;
    text-align: center;
    z-index: 1;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cube-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.cube-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 200px;
}

.cube-content.logo-face {
    background: radial-gradient(circle, var(--dark-bg), var(--darker-bg));
}

.cube-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.cube-logo .thai {
    color: var(--primary-color);
    font-size: 2rem;
}

.cube-content.action-face {
    background-color: rgba(28, 30, 36, 0.9);
}

.cube-btn {
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 94, 125, 0.4);
    transition: all 0.3s ease;
}

.cube-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 94, 125, 0.6);
}

.visual-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--card-bg);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.control-btn.active {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

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

@media (max-width: 1200px) {
    .experience-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    
    .cube-wrapper {
        width: 230px;
        height: 230px;
    }
    
    .cube-face.front {
        transform: translateZ(115px);
    }
    
    .cube-face.back {
        transform: rotateY(180deg) translateZ(115px);
    }
    
    .cube-face.right {
        transform: rotateY(90deg) translateZ(115px);
    }
    
    .cube-face.left {
        transform: rotateY(-90deg) translateZ(115px);
    }
    
    .cube-face.top {
        transform: rotateX(90deg) translateZ(115px);
    }
    
    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(115px);
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .cube-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .cube-face.front {
        transform: translateZ(100px);
    }
    
    .cube-face.back {
        transform: rotateY(180deg) translateZ(100px);
    }
    
    .cube-face.right {
        transform: rotateY(90deg) translateZ(100px);
    }
    
    .cube-face.left {
        transform: rotateY(-90deg) translateZ(100px);
    }
    
    .cube-face.top {
        transform: rotateX(90deg) translateZ(100px);
    }
    
    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(100px);
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .cube-content i {
        font-size: 2.5rem;
    }
    
    .cube-content h3 {
        font-size: 1.2rem;
    }
    
    .cube-content p {
        font-size: 0.85rem;
    }
}

/* Connect lines between circles - removed */
.experience-circle::before,
.experience-circle::after {
    display: none;
}

/* Tips Section */
.tips-section {
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg), var(--darker-bg) 80%);
    padding: 90px 0;
    overflow: hidden;
}

.tips-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 400px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    top: -120px;
    transform: skewY(-5deg);
    z-index: 0;
}

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

.tips-title-box {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.tips-title-box h2 {
    font-size: 2.6rem;
    color: var(--text-color);
    position: relative;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tips-title-box::before,
.tips-title-box::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.tips-title-box::before {
    left: -70px;
}

.tips-title-box::after {
    right: -70px;
}

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

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

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

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

.tips-container {
    position: relative;
    z-index: 1;
    background: rgba(28, 30, 36, 0.5);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.tips-tabs {
    display: flex;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.9), rgba(28, 30, 36, 0.9));
    position: relative;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.tips-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.tips-tab {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    min-width: 160px;
    border-bottom: 3px solid transparent;
}

.tips-tab.active {
    background: rgba(122, 25, 241, 0.1);
    border-bottom: 3px solid var(--accent-color);
}

.tips-tab:hover:not(.active) {
    background: rgba(28, 30, 36, 0.8);
}

.tab-icon {
    margin-bottom: 10px;
}

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

.tips-tab.active .tab-icon i {
    color: var(--accent-color);
}

.tips-tab h3 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition);
    margin: 0;
}

.tips-tab.active h3 {
    color: var(--text-color);
}

.tips-content {
    position: relative;
    padding: 30px;
    min-height: 300px;
}

.tip-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tip-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tip-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-panel-header h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin: 0;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(28, 30, 36, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
}

.game-icon i {
    font-size: 1.8rem;
}

.baccarat-icon i {
    color: var(--primary-color);
}

.slot-icon i {
    color: var(--secondary-color);
}

.mindset-icon i {
    color: var(--accent-color);
}

.tip-panel-content {
    line-height: 1.8;
}

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

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

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

.tips-list li {
    display: flex;
    margin-bottom: 20px;
    background: rgba(13, 13, 13, 0.3);
    border-radius: var(--border-radius);
    padding: 15px;
    transition: var(--transition);
}

.tips-list li:hover {
    background: rgba(13, 13, 13, 0.5);
    transform: translateX(5px);
}

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

.tip-bullet {
    flex: 0 0 30px;
    margin-right: 15px;
    color: var(--primary-color);
}

.tip-bullet i {
    font-size: 1.2rem;
}

.tip-text {
    flex: 1;
}

.tip-text strong {
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.tips-footer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.tips-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.tips-action .btn i {
    transition: var(--transition);
}

.tips-action .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .tips-title-box h2 {
        font-size: 2.3rem;
    }
    
    .tips-title-box::before,
    .tips-title-box::after {
        width: 40px;
    }
    
    .tips-title-box::before {
        left: -50px;
    }
    
    .tips-title-box::after {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .tips-title-box h2 {
        font-size: 2rem;
    }
    
    .tips-title-box::before,
    .tips-title-box::after {
        display: none;
    }
    
    .tips-tab {
        min-width: 140px;
        padding: 15px 10px;
    }
    
    .tab-icon i {
        font-size: 1.5rem;
    }
    
    .tips-tab h3 {
        font-size: 1rem;
    }
    
    .tips-content {
        padding: 20px;
    }
    
    .tip-panel-header h3 {
        font-size: 1.4rem;
    }
    
    .game-icon {
        width: 50px;
        height: 50px;
    }
    
    .game-icon i {
        font-size: 1.5rem;
    }
    
    .tip-panel-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tips-title-box h2 {
        font-size: 1.8rem;
    }
    
    .tips-intro p {
        font-size: 1rem;
    }
    
    .tips-tab {
        padding: 12px 8px;
        min-width: 110px;
    }
    
    .tips-tab h3 {
        font-size: 0.9rem;
    }
    
    .tip-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tip-panel-header h3 {
        font-size: 1.3rem;
    }
    
    .tips-list li {
        flex-direction: column;
    }
    
    .tip-bullet {
        margin-bottom: 10px;
    }
}

/* New media query for nav menu at 900px */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--darker-bg);
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding-top: 80px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 8px 0;
        width: 100%;
        font-size: 1.2rem;
    }
}
