/* Base Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --dark-bg: #0f0f1a;
    --darker-bg: #070714;
    --light-text: #f8f9fa;
    --gray-text: #ced4da;
    --card-bg: #1a1a2e;
    --card-hover: #16213e;
    --header-height: 80px;
    --footer-height: 300px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --neon-shadow: 0 0 10px rgba(108, 92, 231, 0.7);
    --border-radius: 12px;
    --card-1-color: #ff6b6b;
    --card-2-color: #4facfe;
    --card-3-color: #43e97b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', 'Prompt', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(0, 206, 201, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 30% 80%, rgba(253, 121, 168, 0.1) 0%, transparent 20%);
    background-attachment: fixed;
}

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

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

.img-responsive {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    filter: brightness(0.9);
}

.img-responsive:hover {
    transform: scale(1.02);
    filter: brightness(1);
}

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

ul {
    list-style: none;
}

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;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    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;
    letter-spacing: 1px;
}

.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: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

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

.secondary-btn:hover {
    background: rgba(108, 92, 231, 0.1);
    transform: translateY(-3px);
}

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

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

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
}

.logo a i {
    font-size: 1.4rem;
    margin-right: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 8px rgba(0, 255, 213, 0.4));
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.logo:hover h1 i {
    transform: rotate(0deg) scale(1.1);
}

.logo a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 2px;
}

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

.logo a span::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: 2px;
    opacity: 0.5;
}

nav ul {
    display: flex;
}

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

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

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

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-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(--light-text);
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
}

/* Add responsive navigation styles */
@media (max-width: 1100px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(7, 7, 20, 0.98);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    nav ul li a::after {
        display: none;
    }
}

/* Hero Section - New Design */
.hero-section {
    padding-top: var(--header-height);
    background-color: var(--darker-bg);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    background: var(--primary-color);
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 80%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 40%;
    left: -5%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    opacity: 0.1;
    animation-delay: 4s;
    animation-duration: 30s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 15%;
    left: 70%;
    background: var(--secondary-color);
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    background: var(--primary-color);
    opacity: 0.15;
    animation-delay: 8s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 50%;
    background: var(--accent-color);
    opacity: 0.1;
    animation-delay: 10s;
    animation-duration: 28s;
}

.particle:nth-child(7) {
    width: 90px;
    height: 90px;
    top: 30%;
    left: 85%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    animation-delay: 12s;
    animation-duration: 24s;
}

.particle:nth-child(8) {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 15%;
    background: var(--secondary-color);
    animation-delay: 14s;
    animation-duration: 26s;
}

.particle:nth-child(9) {
    width: 110px;
    height: 110px;
    top: 10%;
    left: 40%;
    background: var(--primary-color);
    opacity: 0.1;
    animation-delay: 16s;
    animation-duration: 32s;
}

.particle:nth-child(10) {
    width: 65px;
    height: 65px;
    top: 75%;
    left: 65%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    animation-delay: 18s;
    animation-duration: 23s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(20px) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(30px) translateX(40px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-main {
    padding-right: 20px;
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--light-text), var(--light-text));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title h1 span:first-child {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-title h1 span:first-child::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.7;
}

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

.hero-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    min-width: 180px;
}

.hero-buttons .btn i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.hero-buttons .btn:hover i {
    transform: translateX(3px);
}

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

.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(26, 26, 46, 0.5);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 450px;
}

.game-preview-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.game-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    transition: all 0.5s ease;
    z-index: 0;
}

.card-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.card-1::before {
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.3), transparent 70%);
}

.card-2 {
    grid-column: 2;
    grid-row: 1;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.card-2::before {
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.3), transparent 70%);
}

.card-3 {
    grid-column: 2;
    grid-row: 2;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.card-3::before {
    background: radial-gradient(circle at center, rgba(67, 233, 123, 0.3), transparent 70%);
}

.game-preview-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-1:hover::before {
    opacity: 0.9;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.5), rgba(26, 26, 46, 0.8) 70%);
}

.card-2:hover::before {
    opacity: 0.9;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.5), rgba(26, 26, 46, 0.8) 70%);
}

.card-3:hover::before {
    opacity: 0.9;
    background: radial-gradient(circle at center, rgba(67, 233, 123, 0.5), rgba(26, 26, 46, 0.8) 70%);
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    text-align: center;
    transition: all 0.5s ease;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.card-1 .card-icon {
    color: var(--card-1-color);
}

.card-2 .card-icon {
    color: var(--card-2-color);
}

.card-3 .card-icon {
    color: var(--card-3-color);
}

.game-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light-text);
    transition: all 0.5s ease;
}

.card-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.card-1 .card-badge {
    background-color: rgba(255, 107, 107, 0.2);
    color: var(--card-1-color);
    border: 1px solid var(--card-1-color);
}

.card-2 .card-badge {
    background-color: rgba(79, 172, 254, 0.2);
    color: var(--card-2-color);
    border: 1px solid var(--card-2-color);
}

.card-3 .card-badge {
    background-color: rgba(67, 233, 123, 0.2);
    color: var(--card-3-color);
    border: 1px solid var(--card-3-color);
}

.game-preview-card:hover .card-icon {
    transform: translateY(-10px) scale(1.1);
}

.game-preview-card:hover h3 {
    transform: translateY(-5px);
}

.game-preview-card:hover .card-badge {
    transform: scale(1.1);
}

.hero-features {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.5);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
}

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

.feature span {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Responsive Styles for Hero Section */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cards {
        height: 400px;
        margin-top: 30px;
    }
    
    .hero-title h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-features {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .feature {
        width: calc(50% - 10px);
    }
    
    .hero-title h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: auto;
        gap: 15px;
    }
    
    .card-1, .card-2, .card-3 {
        grid-column: 1;
        height: 180px;
    }
    
    .card-1 {
        grid-row: 1;
    }
    
    .card-2 {
        grid-row: 2;
    }
    
    .card-3 {
        grid-row: 3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

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

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

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

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

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

.feature-item {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-item-content {
    flex: 1;
}

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

.feature-item p {
    color: var(--gray-text);
}

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

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

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

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: -1;
}

.game-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
}

.game-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.game-card p {
    color: var(--gray-text);
}

/* Promotions Section */
.promotions-section {
    background-color: var(--dark-bg);
    position: relative;
}

.promotions-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.promotion-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

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

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

.promotion-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.promotion-item:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
}

.promotion-item i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.promotion-item-content {
    flex: 1;
}

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

.promotion-item p {
    color: var(--gray-text);
}

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

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.contact-item:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
}

.contact-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.contact-item p {
    color: var(--gray-text);
}

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

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

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

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

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

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

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

.footer-links ul li a {
    color: var(--gray-text);
    transition: var(--transition);
    display: inline-block;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
}

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

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

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

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

.sticky-btn {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    margin: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    gap: 8px;
}

.sticky-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sticky-btn:hover i {
    transform: scale(1.2);
}

.sticky-btn span {
    transition: opacity 0.3s ease;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    pointer-events: none;
}

.sticky-btn:hover::before {
    opacity: 1;
}

.login-btn {
    background-color: var(--card-bg);
    color: var(--light-text);
    border: 1px solid rgba(108, 92, 231, 0.3);
    position: relative;
}

.login-btn:hover {
    background-color: var(--card-hover);
    border-color: var(--primary-color);
}

.register-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    position: relative;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

.free-credit-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.3);
    position: relative;
}

.free-credit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 206, 201, 0.4);
}

/* Responsive styles for sticky buttons */
@media (max-width: 992px) {
    .sticky-buttons {
        padding: 12px 10px;
    }
    
    .sticky-btn {
        padding: 12px 8px;
        margin: 0 6px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .sticky-buttons {
        padding: 10px 8px;
    }
    
    .sticky-btn {
        padding: 10px 5px;
        margin: 0 4px;
        font-size: 0.9rem;
        letter-spacing: 0;
    }
}

@media (max-width: 576px) {
    .sticky-buttons {
        padding: 8px 5px;
    }
    
    .sticky-btn {
        padding: 10px 3px;
        margin: 0 3px;
        font-size: 0.8rem;
        border-radius: 6px;
        flex-direction: column;
        gap: 5px;
    }
    
    .sticky-btn i {
        font-size: 1.2rem;
    }
    
    .login-btn {
        flex: 0.8;
    }
    
    .register-btn {
        flex: 1.2;
    }
    
    .free-credit-btn {
        flex: 1;
    }
    
    .sticky-btn:hover {
        transform: none;
    }
}

@media (max-width: 380px) {
    .sticky-buttons {
        padding: 6px 3px;
    }
    
    .sticky-btn {
        padding: 8px 2px;
        margin: 0 2px;
        font-size: 0.75rem;
        border-radius: 5px;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
    }
    
    .sticky-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .sticky-btn span {
        display: none;
    }
    
    .sticky-btn {
        padding: 10px 5px;
    }
    
    .sticky-btn i {
        font-size: 1.3rem;
    }
}

/* Font Import for Thai Language */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;700&family=Prompt:wght@300;400;500;700&display=swap');

/* Casino World Section */
.casino-world-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.casino-world-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.casino-world-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

.casino-world-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

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

.casino-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.casino-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
}

.casino-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    margin-bottom: 20px;
}

.casino-card-icon i {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.casino-card-content {
    flex: 1;
}

.casino-card-content p {
    color: var(--gray-text);
    line-height: 1.7;
}

.casino-card-content p strong {
    color: var(--light-text);
    font-weight: 600;
}

.casino-world-image {
    margin: 30px auto;
    max-width: 800px;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-container::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.5;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 7, 20, 0.3), rgba(7, 7, 20, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.overlay-icon i {
    filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.7));
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.casino-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.casino-feature:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
}

.casino-feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.casino-feature-icon i {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.casino-feature-content {
    flex: 1;
}

.casino-feature-content p {
    color: var(--gray-text);
    line-height: 1.7;
}

.casino-feature-content p strong {
    color: var(--light-text);
    font-weight: 600;
}

.casino-world-cta {
    text-align: center;
    margin-top: 40px;
}

.casino-world-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.casino-world-cta .btn i {
    transition: var(--transition);
}

.casino-world-cta .btn:hover i {
    transform: translateX(5px);
}

/* Responsive styles for Casino World Section */
@media (max-width: 992px) {
    .casino-world-header h2 {
        font-size: 2.2rem;
    }
    
    .casino-world-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .casino-world-header h2 {
        font-size: 1.8rem;
    }
    
    .casino-card {
        padding: 25px 20px;
    }
    
    .casino-feature {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .casino-world-header h2 {
        font-size: 1.6rem;
    }
    
    .casino-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .casino-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .casino-feature-icon {
        margin-bottom: 15px;
    }
}

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

.credibility-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.credibility-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 121, 168, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

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

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

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

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

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

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

.credibility-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.trust-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 206, 201, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    color: white;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.credibility-factors {
    padding: 20px;
}

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

.factor-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

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

.factor-item:hover {
    transform: translateX(10px);
    background-color: var(--card-hover);
}

.factor-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.1), rgba(253, 121, 168, 0.1));
    border-radius: 50%;
}

.factor-icon i {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.factor-content {
    flex: 1;
}

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

.factor-content p {
    color: var(--gray-text);
    line-height: 1.7;
}

.credibility-conclusion {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 206, 201, 0.1);
}

.conclusion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.05), rgba(253, 121, 168, 0.05));
    border-radius: var(--border-radius);
    z-index: -1;
}

.conclusion-card p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.conclusion-card p strong {
    color: var(--light-text);
    font-weight: 600;
}

.credibility-cta {
    text-align: center;
    margin-top: 40px;
}

.credibility-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.credibility-cta .btn i {
    transition: var(--transition);
}

.credibility-cta .btn:hover i {
    transform: scale(1.2);
}

/* Responsive styles for Credibility Section */
@media (max-width: 992px) {
    .credibility-header h2 {
        font-size: 2.2rem;
    }
    
    .credibility-grid {
        grid-template-columns: 1fr;
    }
    
    .credibility-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .credibility-header h2 {
        font-size: 1.8rem;
    }
    
    .credibility-intro p {
        font-size: 1rem;
    }
    
    .factor-item {
        padding: 20px;
    }
    
    .factor-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .factor-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .credibility-header h2 {
        font-size: 1.6rem;
    }
    
    .factor-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .factor-icon {
        margin-bottom: 15px;
    }
    
    .conclusion-card {
        padding: 20px;
    }
}

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

.slot-promotions-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.slot-promotions-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 121, 168, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

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

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

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

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

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

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

/* Slot Machine Animation */
.slot-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.slot-machine {
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #2c2c54, #474787);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                inset 0 5px 10px rgba(255, 255, 255, 0.1),
                inset 0 -5px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid #34345c;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0) 20%, 
                rgba(255, 255, 255, 0) 80%, 
                rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.slot-screen {
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
    border: 3px solid #34345c;
}

.slot-symbols {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 10px;
}

.symbol-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 33.33%;
    padding: 5px 0;
}

.symbol-row i {
    font-size: 2rem;
    color: #ddd;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.symbol-row.highlight {
    background-color: rgba(108, 92, 231, 0.2);
    border-radius: 5px;
}

.symbol-row.highlight i {
    color: #fff;
    text-shadow: 0 0 15px rgba(108, 92, 231, 0.8);
    animation: pulse 2s infinite;
}

.win-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, 
                transparent 0%, 
                var(--primary-color) 20%, 
                var(--accent-color) 80%, 
                transparent 100%);
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0.7;
}

.jackpot-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: transparent;
    text-shadow: 0 0 10px var(--accent-color);
    opacity: 0;
    animation: jackpot-flash 3s infinite;
}

@keyframes jackpot-flash {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.slot-handle {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    height: 120px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.handle-grip {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.handle-stem {
    width: 8px;
    height: 90px;
    background: linear-gradient(to bottom, #a5a5a5, #7f8fa6);
    margin-top: -5px;
    border-radius: 4px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.handle-grip:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.slot-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, var(--card-bg), var(--card-hover));
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-content i {
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
}

/* Promotions List */
.promotions-list {
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.promotions-list::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

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

.promotions-list h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 50px;
}

.promo-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    z-index: -1;
}

.promo-item:hover {
    transform: translateX(10px);
    background-color: rgba(22, 33, 62, 0.7);
}

.promo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
}

.promo-icon i {
    font-size: 1.3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.promo-content {
    flex: 1;
}

.promo-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light-text);
}

.promo-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.5;
}

/* Conclusion Section */
.slot-conclusion {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-wrapper {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.conclusion-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(253, 121, 168, 0.05));
    border-radius: var(--border-radius);
    z-index: -1;
}

.conclusion-wrapper p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.conclusion-wrapper p strong {
    color: var(--light-text);
    font-weight: 600;
}

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

.pulse-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(108, 92, 231, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

/* Responsive styles for Slot Promotions Section */
@media (max-width: 992px) {
    .slot-promotions-header h2 {
        font-size: 2.2rem;
    }
    
    .slot-promotions-wrapper {
        grid-template-columns: 1fr;
    }
    
    .slot-showcase {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .slot-promotions-header h2 {
        font-size: 1.8rem;
    }
    
    .slot-intro p {
        font-size: 1rem;
    }
    
    .slot-machine {
        width: 260px;
        height: 320px;
    }
    
    .symbol-row i {
        font-size: 1.7rem;
    }
    
    .conclusion-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .slot-promotions-header h2 {
        font-size: 1.6rem;
    }
    
    .slot-machine {
        width: 240px;
        height: 300px;
    }
    
    .symbol-row i {
        font-size: 1.5rem;
    }
    
    .promo-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .promo-icon {
        margin-bottom: 10px;
    }
    
    .conclusion-wrapper {
        padding: 20px;
    }
}

/* Gaming Tips Section */
.gaming-tips-section {
    position: relative;
    padding: 80px 0;
    background-color: #0a0e17;
    overflow: hidden;
    z-index: 1;
}

.gaming-tips-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 213, 0.15) 0%, rgba(0, 255, 213, 0) 70%);
    z-index: -1;
}

.gaming-tips-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, rgba(255, 0, 128, 0) 70%);
    z-index: -1;
}

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

.gaming-tips-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #00ffd5, #ff0080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 213, 0.3);
}

.gaming-tips-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00ffd5, #ff0080);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 213, 0.5);
}

.gaming-tips-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.gaming-tips-intro p {
    color: #b8c2cc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.gaming-tips-intro p strong {
    color: #00ffd5;
    font-weight: 600;
}

.gaming-experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.experience-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.device-mockup {
    position: relative;
    width: 280px;
    height: 500px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.device-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.device-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(145deg, #1a1f2e, #0d1018);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.5),
        0 6px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 10px;
}

.device-screen {
    width: 100%;
    height: calc(100% - 40px);
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0e17, #1a1f2e);
    padding: 20px;
}

.game-preview {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.game-reel {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.game-reel i {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

.game-reel:nth-child(1) i {
    animation-delay: 0s;
}

.game-reel:nth-child(2) i {
    animation-delay: 0.3s;
}

.game-reel:nth-child(3) i {
    animation-delay: 0.6s;
}

.game-controls {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.control-btn {
    padding: 8px 15px;
    background: linear-gradient(135deg, #00ffd5, #00a389);
    color: #0a0e17;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 255, 213, 0.3);
    transition: all 0.3s ease;
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 255, 213, 0.4);
}

.spin-btn {
    background: linear-gradient(135deg, #ff0080, #a3005e);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 0, 128, 0.3);
}

.spin-btn:hover {
    box-shadow: 0 6px 15px rgba(255, 0, 128, 0.4);
}

.device-home {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.device-shadow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    filter: blur(10px);
    border-radius: 50%;
}

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

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1f2e, #0d1018);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #00ffd5;
}

.highlight-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.experience-description {
    padding: 0 20px;
}

.description-card {
    background: rgba(26, 31, 46, 0.5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 213, 0.05), rgba(255, 0, 128, 0.05));
    z-index: -1;
}

.description-card p {
    color: #b8c2cc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.description-card p strong {
    color: #00ffd5;
    font-weight: 600;
}

.gaming-benefits {
    padding: 30px 0;
}

.benefits-hexagon {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hexagon-item {
    width: 300px;
    height: 260px;
    position: relative;
    margin: 20px 0;
}

.hexagon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(13, 16, 24, 0.8));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hexagon-item:hover::before {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hexagon-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.hexagon-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffd5, #00a389);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.4);
    padding: 10px;
}

.hexagon-icon i {
    font-size: 2rem;
    color: #0a0e17;
}

.hexagon-content h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hexagon-content p {
    color: #b8c2cc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hexagon-content p strong {
    color: #00ffd5;
    font-weight: 600;
}

.gaming-conclusion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.conclusion-box {
    background: linear-gradient(135deg, rgba(0, 255, 213, 0.1), rgba(255, 0, 128, 0.1));
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0080, #a3005e);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.conclusion-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.conclusion-text p {
    color: #b8c2cc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.conclusion-text p strong {
    color: #00ffd5;
    font-weight: 600;
}

.gaming-cta {
    margin-top: 20px;
}

.glow-btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.4);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 213, 0.4);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 255, 213, 0.7);
    }
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

@media (max-width: 992px) {
    .gaming-tips-header h2 {
        font-size: 2.2rem;
    }
    
    .gaming-experience {
        grid-template-columns: 1fr;
    }
    
    .experience-visual {
        order: 1;
    }
    
    .experience-description {
        order: 2;
    }
    
    .hexagon-item {
        width: 250px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gaming-tips-header h2 {
        font-size: 1.8rem;
    }
    
    .gaming-tips-intro p {
        font-size: 1rem;
    }
    
    .device-mockup {
        width: 240px;
        height: 430px;
    }
    
    .game-reel i {
        font-size: 1.7rem;
    }
    
    .conclusion-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .promotions-list {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .gaming-tips-header h2 {
        font-size: 1.6rem;
    }
    
    .device-mockup {
        width: 200px;
        height: 360px;
    }
    
    .game-reel i {
        font-size: 1.5rem;
    }
    
    .hexagon-item {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 0.9;
        margin: 15px 0;
    }
    
    .hexagon-icon {
        width: 50px;
        height: 50px;
    }
    
    .hexagon-icon i {
        font-size: 1.5rem;
    }
    
    .hexagon-content h3 {
        font-size: 1.1rem;
    }
    
    .hexagon-content p {
        font-size: 0.9rem;
    }
}

/* Thai Gambling Trends Section */
.gambling-trends-section {
    background-color: var(--darker-bg);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.gambling-trends-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.gambling-trends-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.trends-container {
    position: relative;
    z-index: 1;
}

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

.trends-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.trends-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.trends-text {
    position: relative;
}

.trends-text p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(108, 92, 231, 0.3);
}

.trends-text p strong {
    color: var(--light-text);
    font-weight: 600;
    position: relative;
}

.trends-text p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.trends-visual {
    position: relative;
}

.trends-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.trends-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.trends-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    z-index: -1;
}

.trends-card-header {
    margin-bottom: 30px;
    text-align: center;
}

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

.trends-card-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.trends-features {
    margin-top: 30px;
}

.trends-features ul {
    list-style: none;
}

.trends-features ul li {
    position: relative;
    padding: 15px 0 15px 35px;
    color: var(--gray-text);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trends-features ul li:last-child {
    border-bottom: none;
}

.trends-features ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.8;
}

.trends-features ul li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
    font-size: 0.8rem;
    font-weight: bold;
}

.trends-features ul li strong {
    color: var(--light-text);
    font-weight: 600;
}

.trends-conclusion {
    margin-top: 60px;
    text-align: center;
}

.trends-conclusion p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

.trends-conclusion p strong {
    color: var(--light-text);
    font-weight: 600;
}

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

.trends-cta .btn {
    position: relative;
    overflow: hidden;
}

.trends-cta .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.trends-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.trend-stat {
    background: rgba(26, 26, 46, 0.6);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    flex: 1;
    max-width: 200px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(108, 92, 231, 0.1);
    transition: transform 0.3s ease;
}

.trend-stat:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 92, 231, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

@media (max-width: 992px) {
    .trends-header h2 {
        font-size: 2.2rem;
    }
    
    .trends-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trends-visual {
        order: 1;
    }
    
    .trends-text {
        order: 2;
    }
    
    .trends-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .trend-stat {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .trends-header h2 {
        font-size: 1.8rem;
    }
    
    .trends-text p {
        font-size: 1rem;
    }
    
    .trends-card {
        padding: 30px;
    }
    
    .trends-card-header h3 {
        font-size: 1.5rem;
    }
    
    .trends-features ul li {
        font-size: 1rem;
        padding: 12px 0 12px 30px;
    }
    
    .trends-conclusion p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .trends-header h2 {
        font-size: 1.6rem;
    }
    
    .trends-card {
        padding: 25px;
    }
    
    .trends-card-header h3 {
        font-size: 1.3rem;
    }
    
    .trends-features ul li {
        font-size: 0.95rem;
        padding: 10px 0 10px 28px;
    }
    
    .trends-features ul li::before {
        width: 18px;
        height: 18px;
    }
    
    .trends-features ul li::after {
        left: 5px;
        font-size: 0.7rem;
    }
    
    .trends-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trend-stat {
        width: 100%;
        max-width: 100%;
    }
}
