/* Base Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #00d9ff;
    --accent-color: #ff6584;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --text-color: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --transition: all 0.3s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 16px;
    --gradient-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --button-gradient: linear-gradient(135deg, #6c63ff 0%, #8b5cf6 100%);
    --secondary-button-gradient: linear-gradient(135deg, #00d9ff 0%, #38bdf8 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', 'Kanit', sans-serif;
    background-color: var(--dark-bg);
    background-image: 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;
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

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

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

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

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

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.primary-btn {
    background-image: var(--button-gradient);
    color: var(--text-color);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-image: var(--secondary-button-gradient);
    color: var(--text-color);
}

.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c63ff 0%, #3b3582 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.logo-icon i {
    color: #ffffff;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.logo-text {
    display: flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-g {
    font-size: 24px;
    background: linear-gradient(to right, #6c63ff, #00d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-bet {
    font-size: 24px;
    color: #ffffff;
    position: relative;
}

.logo-numbers {
    font-size: 24px;
    background: linear-gradient(to right, #ff6584, #ff9f45);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

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

@media (max-width: 576px) {
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }
    
    .logo-g, .logo-bet, .logo-numbers {
        font-size: 20px;
    }
}

nav ul {
    display: flex;
}

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

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

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

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    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;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.mobile-menu-btn i {
    transition: transform 0.3s ease;
}

.mobile-menu-btn i.fa-times {
    transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: var(--darker-bg);
}

.hero-section .container {
    position: relative;
    z-index: 5;
    width: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.4;
}

.hero-shapes .shape-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(108, 99, 255, 0.3);
    animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-2 {
    bottom: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: rgba(0, 217, 255, 0.3);
    animation: float 10s ease-in-out infinite;
}

.hero-shapes .shape-3 {
    top: 40%;
    left: 25%;
    width: 180px;
    height: 180px;
    background: rgba(255, 101, 132, 0.3);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
}

.hero-badge {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(108, 99, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Fix for hero title */
h1.hero-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-color);
    font-weight: 700;
    word-break: break-word;
    white-space: normal;
    display: block;
    max-width: 100%;
}

h1.hero-title .highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 700;
}

h1.hero-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(108, 99, 255, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 41, 59, 0.5);
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

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

.hero-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
}

.hero-buttons .btn i {
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow);
    border: 2px solid rgba(108, 99, 255, 0.2);
    transition: transform 0.5s ease;
    margin-bottom: 30px;
}

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

.hero-image-container:hover .trusted-badge {
    transform: translateX(-50%) translateY(-5px);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    transition: transform 0.5s ease;
    overflow: hidden;
}

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

.floating-element {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float-element 6s ease-in-out infinite;
}

.slot-icon {
    top: 10%;
    left: -30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    animation-delay: 0s;
}

.cards-icon {
    top: 70%;
    right: -20px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    animation-delay: 1s;
}

.sports-icon {
    bottom: -20px;
    left: 30%;
    width: 55px;
    height: 55px;
    background: var(--accent-color);
    animation-delay: 2s;
}

.floating-element i {
    font-size: 1.5rem;
    color: white;
}

.bonus-badge {
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: #ff9500;
    animation-delay: 1.5s;
    animation: pulse 2s infinite;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    line-height: 1.2;
}

.bonus-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.bonus-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.trusted-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    z-index: 10;
    white-space: nowrap;
    width: auto;
    max-width: 90%;
    transition: transform 0.3s ease;
}

.trusted-badge i {
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.trusted-badge span {
    font-weight: 500;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 149, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0);
    }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: rgba(108, 99, 255, 0.5);
    border-radius: 50%;
    animation: particle-animation linear infinite;
}

@keyframes particle-animation {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(20vw);
        opacity: 0;
    }
}

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: icon-pulse 1s infinite;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    h1.hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 80px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    h1.hero-title {
        font-size: 2.4rem;
        max-width: 100%;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    
    .hero-visual {
        order: 0;
        display: flex;
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 90px;
        padding-bottom: 60px;
    }
    
    h1.hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .hero-feature {
        flex: 0 0 calc(50% - 10px);
        box-sizing: border-box;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    h1.hero-title {
        font-size: 1.9rem;
        line-height: 1.4;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-features {
        margin-bottom: 20px;
    }
    
    .hero-feature {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    
    .stat {
        flex: 0 0 calc(50% - 5px);
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    h1.hero-title {
        font-size: 1.7rem;
    }
    
    .hero-feature {
        padding: 8px 12px;
    }
    
    .hero-feature i {
        font-size: 0.9rem;
    }
    
    .hero-feature span {
        font-size: 0.85rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .about-text, .about-image {
        flex: 100%;
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .trusted-badge {
        padding: 10px 20px;
        bottom: -15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .trusted-badge {
        padding: 6px 12px;
        bottom: -10px;
        max-width: 80%;
    }
    
    .trusted-badge i {
        font-size: 0.8rem;
    }
    
    .trusted-badge span {
        font-size: 0.75rem;
    }
    
    .hero-image-container {
        margin-bottom: 25px;
    }
    
    .hero-visual {
        margin-bottom: 15px;
    }
}

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

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

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

.about-text {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background-image: var(--card-gradient);
    border: 1px solid var(--border-color);
}

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

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

.feature-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    background: rgba(0, 217, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}

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

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: transform 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--secondary-color);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
}

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

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 101, 132, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

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

.game-category {
    background-color: var(--card-bg);
    background-image: var(--card-gradient);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

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

.game-category i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: rgba(108, 99, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

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

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

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

.games-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(108, 99, 255, 0.2);
    margin: 0 auto;
    max-width: 80%;
}

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

.promotion-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

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

.promotion-card {
    background-color: var(--card-bg);
    background-image: var(--card-gradient);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.promotion-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 101, 132, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

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

.promotion-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    background: rgba(255, 101, 132, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

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

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

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

.contact-method {
    background-color: var(--card-bg);
    background-image: var(--card-gradient);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

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

.contact-method i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    background: rgba(0, 217, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

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

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

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

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

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

.footer-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    width: fit-content;
}

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

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

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

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

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

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

.footer-links ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.payment-icons {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
    color: var(--text-secondary);
}

.payment-icons i {
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

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

.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: space-around;
    background-color: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-top: 1px solid rgba(108, 99, 255, 0.2);
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    width: 33.333%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.sticky-btn:hover::before {
    height: 100%;
}

.sticky-btn i {
    font-size: 24px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.sticky-btn span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.login-btn {
    color: #38bdf8;
}

.login-btn:hover {
    color: #38bdf8;
    transform: translateY(-3px);
}

.register-btn {
    color: #8b5cf6;
}

.register-btn:hover {
    color: #8b5cf6;
    transform: translateY(-3px);
}

.free-credit-btn {
    color: #f472b6;
}

.free-credit-btn:hover {
    color: #f472b6;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .sticky-buttons {
        padding: 10px 0;
    }
    
    .sticky-btn {
        padding: 6px 3px;
    }
    
    .sticky-btn i {
        font-size: 22px;
        margin-bottom: 4px;
    }
    
    .sticky-btn span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .sticky-buttons {
        padding: 8px 0;
    }
    
    .sticky-btn {
        padding: 5px 2px;
    }
    
    .sticky-btn i {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .sticky-btn span {
        font-size: 11px;
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .sticky-buttons {
        padding: 8px 0;
    }
    
    .sticky-btn {
        padding: 5px 0;
    }
    
    .sticky-btn i {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .sticky-btn span {
        font-size: 10px;
        opacity: 0.9;
    }
}

@media (max-width: 375px) {
    .sticky-btn i {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .sticky-btn span {
        font-size: 9px;
    }
}

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

/* Platform Section */
.platform-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.platform-content {
    display: flex;
    flex-direction: column;
}

.section-header.text-left {
    text-align: left;
    margin-bottom: 30px;
}

.section-header.text-left h2 {
        font-size: 2.2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.section-header.text-left h2::after {
    left: 0;
    transform: none;
    width: 60px;
}

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

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

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

.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.platform-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

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

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

.platform-cta {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(108, 99, 255, 0.2);
    text-align: center;
    margin-top: 20px;
}

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

.platform-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
}

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

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

@media (max-width: 768px) {
    .platform-section {
        padding: 80px 0;
    }
    
    .section-header.text-left h2 {
        font-size: 1.8rem;
    }
    
    .platform-text p {
        font-size: 1rem;
    }
    
    .platform-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .platform-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .platform-card h3 {
        font-size: 1.2rem;
    }
    
    .platform-cta {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .platform-section {
        padding: 60px 0;
    }
    
    .section-header.text-left h2 {
        font-size: 1.6rem;
    }
    
    .platform-cards {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        margin-bottom: 15px;
    }
    
    .platform-cta p {
        font-size: 1rem;
    }
}

/* Redesigned Games Variety Section */
.games-variety-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.games-variety-section::before {
    content: '';
    position: absolute;
        top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%),
                radial-gradient(circle at bottom left, rgba(0, 217, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.games-variety-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
        flex-direction: column;
    gap: 60px;
}

/* Intro Text */
.games-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

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

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

/* Game Categories with 3D Flip Cards */
.game-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.game-card {
    height: 350px;
    position: relative;
    cursor: pointer;
}

.game-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

.game-card:hover .game-card-inner {
    transform: rotateY(180deg);
}

.game-card-front, .game-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    display: flex;
        flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.game-card-front {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(20, 30, 48, 1) 100%);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.game-card-back {
    background: linear-gradient(145deg, rgba(20, 30, 48, 1) 0%, var(--card-bg) 100%);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transform: rotateY(180deg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.game-card:hover .game-icon {
    animation: pulse 1.5s infinite;
}

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

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

.flip-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 20px;
        display: block;
    position: absolute;
    bottom: 20px;
}

.game-card-back p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-card-back strong {
    color: var(--primary-color);
    font-weight: 600;
}

.card-back-btn {
    background: rgba(108, 99, 255, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-back-btn:hover {
    background: rgba(108, 99, 255, 0.3);
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 50%;
    animation: pulse-slow 3s infinite;
}

.feature-icon-wrapper i {
        font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

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

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

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

/* CTA Section */
.games-cta {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.8) 0%, rgba(10, 15, 25, 0.8) 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(108, 99, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.cta-particle {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 8px;
    height: 8px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

.cta-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
    background: rgba(108, 99, 255, 0.2);
}

.cta-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
    background: rgba(0, 217, 255, 0.2);
}

.cta-particle:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: 4s;
    animation-duration: 16s;
    background: rgba(255, 101, 132, 0.2);
}

.cta-particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 22s;
    background: rgba(108, 99, 255, 0.2);
}

.cta-particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 8s;
    animation-duration: 24s;
    background: rgba(0, 217, 255, 0.2);
}

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

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

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

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
}

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

@keyframes float-particle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .game-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-card {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .games-variety-section {
        padding: 80px 0;
    }
    
    .games-intro p {
        font-size: 1.1rem;
    }
    
    .game-categories {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        height: 300px;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 25px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.6rem;
    }
    
    .games-cta {
        padding: 30px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .games-variety-section {
        padding: 60px 0;
    }
    
    .games-intro p {
        font-size: 1rem;
    }
    
    .game-card {
        height: 280px;
    }
    
    .game-icon {
        width: 60px;
        height: 60px;
    }
    
    .game-icon i {
        font-size: 1.8rem;
    }
    
    .game-card-front h3 {
        font-size: 1.3rem;
    }
    
    .game-card-back p {
        font-size: 0.95rem;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .games-cta {
        padding: 25px;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Special Section */
.special-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

.special-header {
        margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.special-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

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

.special-divider::before,
.special-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.special-divider::before {
    left: -15px;
}

.special-divider::after {
    right: -15px;
}

.special-wrapper {
    position: relative;
    padding: 40px 0;
}

.special-text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
        margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.special-actions {
    margin-top: 40px;
}

.special-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.special-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.special-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.4);
}

.special-button:hover::before {
    transform: translateX(100%);
}

.button-text {
    position: relative;
    z-index: 1;
    margin-right: 10px;
}

.button-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.special-button:hover .button-icon {
    transform: translateX(5px);
}

/* Special Section Animations */
.animate-special {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.7);
    }
    
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(76, 201, 240, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
    }
}

.support-button.pulse {
    animation: support-pulse 2s infinite;
}

@keyframes support-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(76, 201, 240, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
    }
}

/* Special shapes styling for parallax effect */
.special-shape {
    position: absolute;
    transition: transform 0.2s ease-out;
    z-index: 1;
}

.shape1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9d00, #ff0058);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.6;
}

.shape2 {
    top: 60%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00e1ff, #0040ff);
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    opacity: 0.5;
}

.shape3 {
    bottom: 20%;
    left: 20%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff3d00, #ff03c8);
    border-radius: 50% 50% 34% 66% / 63% 36% 64% 37%;
    opacity: 0.4;
}

.shape4 {
    top: 30%;
    right: 30%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff87, #00b3ff);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    opacity: 0.3;
}

/* Responsive adjustments for special section animations */
@media (max-width: 768px) {
    .special-shape {
        transform: scale(0.8);
    }
}

@media (max-width: 576px) {
    .special-shape {
        transform: scale(0.6);
    }
}

/* Responsive styles for special section */
@media (max-width: 992px) {
    .special-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .special-section {
        padding: 80px 0;
    }
    
    .special-header h2 {
        font-size: 2.5rem;
    }
    
    .special-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .special-section {
        padding: 60px 0;
    }
    
    .special-header h2 {
        font-size: 2rem;
    }
    
    .special-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .special-text {
        font-size: 1rem;
    }
}

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

.benefits-section::before {
    content: '';
    position: absolute;
        top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm32-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

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

.benefits-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.benefits-divider::before,
.benefits-divider::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.benefits-divider::before {
    left: -20px;
}

.benefits-divider::after {
    right: -20px;
}

.benefits-wrapper {
    position: relative;
    padding: 40px 0;
}

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

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

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

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

.benefits-content {
    padding: 20px;
}

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

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

.benefits-list {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.benefits-list li {
    display: flex;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9d00, #ff0058);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ff9d00;
}

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

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 350px;
    margin: 0 auto;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 157, 0, 0.3) 0%, rgba(255, 0, 88, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.benefit-card:hover .card-glow {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

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

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9d00, #ff0058);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .card-icon {
    transform: scale(1.1);
}

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

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

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

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

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

.benefits-footer strong {
    color: #ff9d00;
    font-weight: 600;
}

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

.benefits-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ff9d00, #ff0058);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 157, 0, 0.3);
}

.benefits-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 157, 0, 0.4);
}

.benefits-cta .btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive styles for benefits section */
@media (max-width: 992px) {
    .benefits-header h2 {
        font-size: 2.4rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-visual {
        order: -1;
    }
    
    .benefits-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 0;
    }
    
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefits-intro p {
        font-size: 1rem;
    }
    
    .benefits-cards {
        grid-template-columns: repeat(1, 1fr);
        max-width: 350px;
    }
    
    .benefits-content p {
        font-size: 1rem;
    }
    
    .benefit-icon {
        flex: 0 0 50px;
        height: 50px;
    }
    
    .benefit-text strong {
        font-size: 1.1rem;
    }
    
    .benefits-footer p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .benefits-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Support Section */
.support-section {
    position: relative;
    background: linear-gradient(135deg, #0a1128 0%, #1c2541 100%);
    padding: 100px 0;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
        left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c63ff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S50 55.523 50 50zm0-40c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S50 15.523 50 10zm-40 40c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S10 55.523 10 50zm0-40c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S10 15.523 10 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

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

.support-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.support-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4cc9f0, #4361ee);
    border-radius: 2px;
}

.support-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.support-left {
    display: flex;
        flex-direction: column;
    gap: 30px;
}

.support-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4cc9f0;
}

.support-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.support-text strong {
    color: #4cc9f0;
    font-weight: 600;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-feature {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4361ee;
}

.support-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.support-icon {
    flex: 0 0 70px;
    height: 70px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
}

.support-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-details {
    flex: 1;
}

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

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

.feature-details strong {
    color: #4cc9f0;
    font-weight: 600;
}

.support-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(67, 97, 238, 0.1));
    z-index: 0;
}

.support-card-inner {
    position: relative;
    z-index: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-hours {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.2), rgba(67, 97, 238, 0.2));
    padding: 15px;
    border-radius: 15px;
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
}

.hours-icon i {
    font-size: 1.8rem;
    color: white;
}

.hours-text {
    flex: 1;
}

.hours-text span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
        display: block;
    margin-bottom: 5px;
}

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

.support-channels {
    margin-bottom: 30px;
}

.support-channels h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.channels-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.channels-list li {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.channels-list li:hover {
    transform: translateY(-3px);
    background: rgba(76, 201, 240, 0.1);
}

.channels-list li i {
    font-size: 1.2rem;
    color: #4cc9f0;
    margin-right: 10px;
}

.channels-list li span {
    font-size: 0.95rem;
    color: var(--text-color);
}

.support-cta {
    margin-top: auto;
    text-align: center;
}

.support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
}

.support-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.4);
}

.support-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.support-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-bubble {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
}

.testimonial-bubble p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-bubble strong {
    color: #4cc9f0;
    font-weight: 600;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.user-avatar i {
    font-size: 1.5rem;
    color: white;
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.rating {
    display: flex;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
    margin-right: 2px;
}

.support-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.support-footer strong {
    color: #4cc9f0;
    font-weight: 600;
}

/* Responsive styles for support section */
@media (max-width: 992px) {
    .support-header h2 {
        font-size: 2.4rem;
    }
    
    .support-container {
        grid-template-columns: 1fr;
    }
    
    .support-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .support-card {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 80px 0;
    }
    
    .support-header h2 {
        font-size: 2rem;
    }
    
    .support-text p {
        font-size: 1rem;
    }
    
    .support-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .support-icon {
        margin-right: 0;
        margin-bottom: 15px;
        padding: 20px;
    }
    
    .support-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .support-card-inner {
        padding: 20px;
    }
    
    .channels-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .support-footer p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .support-section {
        padding: 60px 0;
    }
    
    .support-header h2 {
        font-size: 1.8rem;
    }
    
    .channels-list {
        grid-template-columns: 1fr;
    }
    
    .support-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .testimonial-bubble p {
        font-size: 0.95rem;
    }
}

/* Game Charm Section */
.game-charm-section {
  padding: 100px 0;
  position: relative;
  background-color: #0a0e1a;
  overflow: hidden;
}

.game-charm-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(2, 6, 23, 0.1) 100%);
  z-index: 1;
}

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

.game-charm-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.game-charm-text {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(108, 99, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-charm-text p {
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.game-charm-text strong {
  color: #6c63ff;
  font-weight: 600;
}

.game-charm-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.charm-feature {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(108, 99, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.charm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff 0%, #3b3582 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
  transition: transform 0.3s ease;
}

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

.charm-icon i {
  font-size: 28px;
  color: #ffffff;
}

.charm-content h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.charm-content p {
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.6;
}

.game-charm-cta {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(59, 53, 130, 0.2) 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(108, 99, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.game-charm-cta p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.game-charm-cta .btn {
  min-width: 200px;
}

@media (max-width: 992px) {
  .game-charm-section {
    padding: 80px 0;
  }
  
  .charm-feature {
    padding: 25px;
  }
  
  .game-charm-cta {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .game-charm-section {
    padding: 60px 0;
  }
  
  .game-charm-text p {
    font-size: 15px;
  }
  
  .game-charm-features {
    grid-template-columns: 1fr;
  }
  
  .charm-icon {
    width: 60px;
    height: 60px;
  }
  
  .charm-icon i {
    font-size: 24px;
  }
  
  .charm-content h3 {
    font-size: 18px;
  }
  
  .game-charm-cta p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .game-charm-section {
    padding: 50px 0;
  }
  
  .game-charm-text {
    padding: 20px;
  }
  
  .charm-feature {
    padding: 20px;
  }
  
  .game-charm-cta {
    padding: 25px;
  }
  
  .game-charm-cta .btn {
    min-width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 1050px) {
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(2, 6, 23, 0.95);
        transition: left 0.3s ease;
        z-index: 100;
        overflow-y: auto;
        display: block; /* Ensure it's displayed as block */
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        display: flex; /* Ensure flex display is maintained */
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 101; /* Ensure it's above the nav */
        cursor: pointer;
    }
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 700;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(108, 99, 255, 0.3);
    z-index: -1;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .highlight-text {
        display: inline;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .highlight-text::after {
        height: 6px;
        bottom: 3px;
    }
}

@media (max-width: 992px) {
    .hero-shapes .shape-1 {
        width: 200px;
        height: 200px;
        right: 5%;
    }
    
    .hero-shapes .shape-2 {
        width: 150px;
        height: 150px;
        left: 5%;
    }
    
    .hero-shapes .shape-3 {
        width: 120px;
        height: 120px;
        left: 40%;
    }
}

@media (max-width: 576px) {
    .hero-shapes .shape-1 {
        width: 150px;
        height: 150px;
        opacity: 0.3;
    }
    
    .hero-shapes .shape-2 {
        width: 100px;
        height: 100px;
        opacity: 0.3;
    }
    
    .hero-shapes .shape-3 {
        width: 80px;
        height: 80px;
        opacity: 0.3;
    }
}

/* Financial System Section */
.financial-system-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c1019 0%, #1a2030 100%);
  position: relative;
  overflow: hidden;
}

.financial-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAzNGM0LjQxOCAwIDgtMy41ODIgOC04cy0zLjU4Mi04LTgtOC04IDMuNTgyLTggOCAzLjU4MiA4IDggOHptMC0yYTYgNiAwIDEgMCAwLTEyIDYgNiAwIDAgMCAwIDEyeiIgZmlsbD0iIzI5MmY0YSIgZmlsbC1vcGFjaXR5PSIuMTUiLz48L2c+PC9zdmc+');
  opacity: 0.2;
}

.financial-intro {
  text-align: center;
  margin-bottom: 40px;
}

.financial-intro p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #f0f0f0;
}

.financial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.financial-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #e0e0e0;
}

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

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

.transaction-card {
  background: rgba(30, 40, 70, 0.6);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-header {
  background: linear-gradient(135deg, #422a7d 0%, #2a4a7d 100%);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.transaction-header i {
  font-size: 24px;
  color: #ffdd59;
}

.transaction-header h3 {
  margin: 0;
  font-size: 20px;
}

.transaction-body {
  padding: 20px;
}

.transaction-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.transaction-item:last-child {
  border-bottom: none;
}

.transaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.transaction-icon.deposit {
  background: rgba(46, 213, 115, 0.2);
  color: #2ed573;
}

.transaction-icon.withdraw {
  background: rgba(255, 71, 87, 0.2);
  color: #ff4757;
}

.transaction-info {
  display: flex;
  flex-direction: column;
}

.transaction-type {
  font-weight: bold;
  color: white;
}

.transaction-time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.transaction-footer {
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffdd59;
  font-weight: 500;
  font-size: 14px;
}

.security-badge i {
  font-size: 16px;
}

.payment-methods {
  background: rgba(30, 40, 70, 0.6);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.payment-methods h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: white;
  font-size: 20px;
  text-align: center;
}

.payment-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.payment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.payment-icon i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffdd59;
}

.payment-icon span {
  font-size: 14px;
  color: white;
}

.financial-footer {
  text-align: center;
  padding: 0 30px;
}

.financial-footer p {
  margin-bottom: 20px;
  color: #e0e0e0;
  line-height: 1.7;
}

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

.financial-cta .btn {
  padding: 14px 30px;
  font-size: 16px;
}

@media (max-width: 992px) {
  .financial-system-section {
    padding: 60px 0;
  }
  
  .financial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .financial-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .financial-intro p {
    font-size: 16px;
  }
  
  .payment-icons {
    grid-template-columns: 1fr 1fr;
  }
  
  .financial-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .financial-system-section {
    padding: 40px 0;
  }
  
  .transaction-header {
    padding: 15px;
  }
  
  .transaction-header h3 {
    font-size: 18px;
  }
  
  .transaction-body {
    padding: 15px;
  }
  
  .payment-icons {
    grid-template-columns: 1fr;
  }
}
