/* Base Styles */
:root {
    --primary-color: #ff6b6b;      /* Coral Red */
    --secondary-color: #4ecdc4;    /* Teal */
    --accent-color: #ffd166;       /* Mustard Yellow */
    --dark-bg: #1a1b25;            /* Dark Blue-Gray */
    --darker-bg: #141520;          /* Darker Blue-Gray */
    --card-bg: #22232e;            /* Card background */
    --text-color: #ffffff;         /* White text */
    --text-secondary: #c8c9e0;     /* Light lavender text */
    --border-color: #32333e;       /* Border color */
    --transition: all 0.3s ease;
    --shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --gradient-bg: linear-gradient(135deg, #22232e 0%, #1a1b25 100%);
    --glow-primary: 0 0 10px rgba(255, 107, 107, 0.4);
    --glow-secondary: 0 0 10px rgba(78, 205, 196, 0.4);
    --glow-accent: 0 0 10px rgba(255, 209, 102, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', 'Kanit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
}

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

section {
    padding: 80px 0;
}

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

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

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

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

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff8e8e);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: none;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #ff8e8e, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.secondary-btn {
    background: linear-gradient(135deg, var(--secondary-color), #6edbd5);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #6edbd5, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(20, 21, 32, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

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

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--accent-color);
}

nav ul {
    display: flex;
}

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

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

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

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

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

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

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 107, 0.05) 0%,
        rgba(20, 21, 32, 0) 20%,
        rgba(78, 205, 196, 0.05) 40%,
        rgba(20, 21, 32, 0) 60%,
        rgba(255, 209, 102, 0.05) 80%,
        rgba(20, 21, 32, 0) 100%
    );
    animation: rotateGradient 20s linear infinite;
    z-index: 1;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
    max-width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

.hero-left {
    background: linear-gradient(135deg, rgba(20, 21, 32, 0.7), rgba(26, 27, 37, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background-image: radial-gradient(circle at right bottom, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding: 40px;
    background: rgba(34, 35, 46, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateZ(0);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        rgba(255, 107, 107, 0.3) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(78, 205, 196, 0.3) 100%);
    z-index: -1;
    border-radius: 25px;
    filter: blur(10px);
    opacity: 0.5;
}

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

.hero-title h5 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.hero-title h5::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 60px;
    background-color: var(--accent-color);
    left: 100%;
    top: 50%;
    margin-left: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-secondary);
    position: relative;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
}

.hero-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    background: rgba(78, 205, 196, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-buttons .btn {
    min-width: 150px;
}

.hero-right {
    position: relative;
    background-color: rgba(20, 21, 32, 0.8);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-card {
    position: absolute;
    width: 70%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 16/9;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-card:nth-child(1) {
    transform: translateZ(0) rotateY(-15deg) rotateX(5deg) translateX(-5%) translateY(-5%);
    z-index: 3;
}

.hero-card:nth-child(2) {
    transform: translateZ(-40px) rotateY(-5deg) rotateX(5deg) translateX(20%) translateY(10%);
    z-index: 2;
    filter: brightness(0.8);
}

.hero-card:nth-child(3) {
    transform: translateZ(-80px) rotateY(5deg) rotateX(5deg) translateX(40%) translateY(20%);
    z-index: 1;
    filter: brightness(0.6);
}

.hero-cards:hover .hero-card:nth-child(1) {
    transform: translateZ(30px) rotateY(-20deg) rotateX(10deg) translateX(-8%) translateY(-8%);
}

.hero-cards:hover .hero-card:nth-child(2) {
    transform: translateZ(-20px) rotateY(-8deg) rotateX(8deg) translateX(15%) translateY(5%);
}

.hero-cards:hover .hero-card:nth-child(3) {
    transform: translateZ(-60px) rotateY(0deg) rotateX(0deg) translateX(35%) translateY(15%);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

/* Media Queries for Hero Section */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .hero-left {
        padding: 100px 20px 60px;
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 30px;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-right {
        min-height: 60vh;
    }
    
    .hero-card {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-left {
        padding: 90px 20px 50px;
    }
    
    .hero-content {
        padding: 25px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-right {
        min-height: 50vh;
    }
    
    .hero-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-left {
        padding: 80px 15px 40px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-right {
        min-height: 40vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* About Section */
.about-section {
    background-color: var(--darker-bg);
    background-image: radial-gradient(circle at 90% 10%, rgba(52, 152, 219, 0.07) 0%, transparent 20%),
                      radial-gradient(circle at 10% 90%, rgba(142, 68, 173, 0.05) 0%, transparent 20%);
}

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

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

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

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

.feature-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    text-shadow: var(--glow-secondary);
}

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

.about-image img {
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

/* Games Section */
.games-section {
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle at 20% 80%, rgba(46, 204, 113, 0.07) 0%, transparent 20%),
                      radial-gradient(circle at 80% 30%, rgba(142, 68, 173, 0.05) 0%, transparent 20%);
}

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

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

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(142, 68, 173, 0.2);
}

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

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

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

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

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

/* Promotion Section */
.promotion-section {
    background-color: var(--darker-bg);
    background-image: radial-gradient(circle at 70% 20%, rgba(52, 152, 219, 0.07) 0%, transparent 20%),
                      radial-gradient(circle at 30% 70%, rgba(142, 68, 173, 0.05) 0%, transparent 20%);
}

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

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

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

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

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

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

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.07) 0%, transparent 20%),
                      radial-gradient(circle at 20% 20%, rgba(142, 68, 173, 0.05) 0%, transparent 20%);
}

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

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

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(142, 68, 173, 0.2);
}

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

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

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

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

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: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: stretch;
    background-color: rgba(20, 21, 32, 0.95);
    padding: 12px 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.row-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    gap: 0;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    flex: 1;
    text-align: center;
    transition: var(--transition);
    min-width: 0;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0.5;
    z-index: -1;
    transition: var(--transition);
}

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

.btn-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 2;
    transform: scaleX(0);
    opacity: 0.7;
    transition: var(--transition);
}

.sticky-btn:hover .btn-indicator {
    transform: scaleX(1);
    opacity: 1;
}

.sticky-btn i {
    font-size: 1.1rem;
    margin-right: 8px;
    position: relative;
    z-index: 2;
}

.sticky-btn span:not(.btn-indicator) {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 2;
}

.login-btn {
    color: var(--secondary-color);
    background-color: rgba(78, 205, 196, 0.25);
    box-shadow: 0 2px 5px rgba(78, 205, 196, 0.5);
    border-radius: 4px;
}

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

.login-btn:hover {
    color: var(--secondary-color);
    background-color: rgba(78, 205, 196, 0.15);
}

.register-btn {
    color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.25);
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.5);
    border-radius: 4px;
}

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

.register-btn:hover {
    color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.15);
}

.free-credit-btn {
    color: var(--accent-color);
    background-color: rgba(255, 209, 102, 0.25);
    box-shadow: 0 2px 5px rgba(255, 209, 102, 0.5);
    border-radius: 4px;
}

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

.free-credit-btn:hover {
    color: var(--accent-color);
    background-color: rgba(255, 209, 102, 0.15);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content, .hero-image {
        flex: 100%;
        padding-right: 0;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .about-text, .about-image {
        flex: 100%;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
}

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

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .sticky-buttons {
        padding: 8px 0;
    }
    
    .row-flex {
        padding: 0 8px;
        gap: 6px;
    }
    
    .sticky-btn {
        padding: 8px 4px;
    }
    
    .sticky-btn i {
        font-size: 0.9rem;
        margin-right: 4px;
    }
    
    .sticky-btn span:not(.btn-indicator) {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .sticky-buttons {
        padding: 6px 0;
    }
    
    .row-flex {
        padding: 0 6px;
        gap: 4px;
    }
    
    .sticky-btn {
        padding: 7px 2px;
    }
    
    .sticky-btn i {
        font-size: 0.85rem;
        margin-right: 3px;
    }
    
    .sticky-btn span:not(.btn-indicator) {
        font-size: 0.7rem;
    }
}

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

/* Online Gaming Section */
.online-gaming-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.online-gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(255, 107, 107, 0.03) 0%, transparent 30%),
                radial-gradient(circle at 90% 70%, rgba(78, 205, 196, 0.03) 0%, transparent 30%);
    z-index: 1;
}

.online-gaming-content {
    position: relative;
    z-index: 2;
}

.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.content-block {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.highlight-block {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.05) 100%);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 107, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.highlight-text {
    flex-grow: 1;
}

.highlight-text p {
    margin-bottom: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

.info-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 209, 102, 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card:nth-child(2) .info-card-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(78, 205, 196, 0.6) 100%);
}

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

.info-card-content {
    flex-grow: 1;
}

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

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

.content-cta {
    background: linear-gradient(135deg, rgba(34, 35, 46, 0.8) 0%, rgba(26, 27, 37, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.1);
    box-shadow: var(--shadow);
}

.content-cta p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Media Queries for Online Gaming Section */
@media (max-width: 992px) {
    .online-gaming-section {
        padding: 60px 0;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .info-card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .highlight-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-icon {
        margin-bottom: 15px;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-card-icon {
        margin-bottom: 15px;
    }
    
    .content-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .online-gaming-section {
        padding: 50px 0;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .content-block p {
        font-size: 0.95rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card-content p {
        font-size: 0.95rem;
    }
    
    .content-cta {
        padding: 25px 15px;
    }
}

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

.slot-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.slot-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
}

.slot-element-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation: floatElement 15s infinite alternate ease-in-out;
}

.slot-element-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -150px;
    animation: floatElement 20s infinite alternate-reverse ease-in-out;
}

.slot-element-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    top: 40%;
    left: 40%;
    animation: pulseElement 10s infinite alternate ease-in-out;
}

@keyframes floatElement {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(30px) translateX(30px) rotate(10deg);
    }
}

@keyframes pulseElement {
    0% {
        transform: scale(0.8);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

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

.slot-games-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.slot-games-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.slot-intro {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

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

.slot-game-card {
    background: rgba(34, 35, 46, 0.7);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(0);
}

.slot-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.slot-game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-bottom: 20px;
}

.slot-game-card:hover .game-overlay {
    opacity: 1;
}

.play-now {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.slot-game-card:hover .play-now {
    transform: translateY(0);
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.slot-features {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.slot-games-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slot-benefits {
    display: flex;
    gap: 20px;
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.slot-benefits:hover {
    transform: translateX(-5px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), rgba(255, 107, 107, 0.6));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.slot-benefits:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, var(--secondary-color), rgba(78, 205, 196, 0.6));
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

.slot-benefits:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, var(--accent-color), rgba(255, 209, 102, 0.6));
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.2);
}

.benefit-icon i {
    color: var(--dark-bg);
    font-size: 1.5rem;
}

.benefit-content {
    flex-grow: 1;
}

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

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.last-benefit {
    margin-bottom: 20px;
}

.slot-cta {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.slot-cta .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
}

/* Media Queries for Slot Games Section */
@media (max-width: 1200px) {
    .slot-games-wrapper {
        grid-template-columns: 1.6fr 1fr;
    }
}

@media (max-width: 992px) {
    .slot-games-section {
        padding: 60px 0;
    }
    
    .slot-games-wrapper {
        grid-template-columns: 1fr;
    }
    
    .slot-carousel {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
    
    .slot-games-sidebar {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .slot-benefits {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
    }
    
    .slot-carousel {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .slot-games-section {
        padding: 50px 0;
    }
    
    .slot-intro, 
    .slot-features, 
    .slot-benefits {
        padding: 20px;
    }
    
    .slot-carousel {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .slot-game-card {
        max-width: 100%;
    }
    
    .slot-game-card:hover {
        transform: translateY(-5px);
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .slot-intro p,
    .slot-features p,
    .benefit-content p {
        font-size: 0.95rem;
    }
}

/* Betting Hub Section */
.betting-hub-section {
    position: relative;
    background-color: var(--dark-bg);
    padding: 80px 0;
    overflow: hidden;
}

.betting-hub-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        linear-gradient(135deg, transparent 49.5%, rgba(255, 107, 107, 0.1) 49.5%, rgba(255, 107, 107, 0.1) 50.5%, transparent 50.5%),
        linear-gradient(45deg, transparent 49.5%, rgba(78, 205, 196, 0.08) 49.5%, rgba(78, 205, 196, 0.08) 50.5%, transparent 50.5%);
    background-size: 60px 60px, 60px 60px;
    opacity: 0.3;
    z-index: 1;
}

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

.betting-hub-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.betting-hub-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.betting-hub-main {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.betting-hub-main p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.betting-hub-main p:last-child {
    margin-bottom: 0;
}

.betting-hub-main strong {
    color: var(--primary-color);
    font-weight: 600;
}

.betting-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.betting-service-block {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.betting-service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.2);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.betting-service-block:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(78, 205, 196, 0.05) 100%);
    border: 1px solid rgba(78, 205, 196, 0.1);
}

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

.betting-service-block:nth-child(2) .service-icon i {
    color: var(--secondary-color);
}

.service-content {
    flex-grow: 1;
}

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

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

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

.betting-hub-accent {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.1) 0%, rgba(255, 209, 102, 0.02) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.accent-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    flex: 1;
}

.betting-hub-accent p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin: 0 20px;
    text-align: center;
    flex: 3;
    line-height: 1.6;
}

.betting-hub-accent strong {
    color: var(--accent-color);
    font-weight: 600;
}

.betting-hub-bottom {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.hub-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
}

.overlay-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.hub-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.betting-cta {
    background: linear-gradient(135deg, rgba(20, 21, 32, 0.95) 0%, rgba(34, 35, 46, 0.95) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 107, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 30%, rgba(255, 107, 107, 0.7) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

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

.betting-cta h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

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

.betting-cta .btn {
    width: 100%;
}

/* Media Queries for Betting Hub Section */
@media (max-width: 1100px) {
    .betting-hub-container {
        grid-template-columns: 1fr;
    }
    
    .betting-cta {
        position: static;
        padding: 30px;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .betting-service-grid {
        grid-template-columns: 1fr;
    }
    
    .betting-hub-bottom {
        grid-template-columns: 1fr;
    }
    
    .hub-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .betting-hub-section {
        padding: 60px 0;
    }
    
    .betting-hub-accent {
        flex-direction: column;
        gap: 15px;
    }
    
    .accent-line {
        width: 80%;
        height: 1px;
    }
    
    .betting-hub-accent p {
        margin: 15px 0;
    }
    
    .betting-service-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .betting-hub-section {
        padding: 50px 0;
    }
    
    .betting-hub-main, 
    .betting-service-block,
    .betting-hub-bottom {
        padding: 20px;
    }
    
    .betting-hub-main p,
    .hub-content p {
        font-size: 0.95rem;
    }
    
    .betting-hub-accent p {
        font-size: 0.95rem;
    }
    
    .betting-cta {
        padding: 25px 15px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 1.6rem;
    }
    
    .betting-cta h3 {
        font-size: 1.3rem;
    }
}

/* Mobile App Section */
.mobile-app-section {
    position: relative;
    background-color: var(--dark-bg);
    padding: 80px 0;
    overflow: hidden;
}

.mobile-app-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.08) 0%, transparent 25%);
    opacity: 0.6;
    z-index: 1;
}

.mobile-app-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
}

.mobile-app-visual {
    position: relative;
}

.phone-mockup {
    position: relative;
    padding-left: 30px;
}

.phone-frame {
    position: relative;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 280px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s ease;
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    filter: brightness(1.1) contrast(1.1);
}

.app-interface-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 28px;
}

.app-icon {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.app-icon i {
    font-size: 2.5rem;
    color: var(--dark-bg);
}

.floating-features {
    position: absolute;
    top: 10%;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-bg);
    padding: 12px 15px;
    border-radius: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateX(30px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateX(0);
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 107, 107, 0.2);
}

.feature-pill:nth-child(even) {
    transform: translateX(60px);
}

.feature-pill:nth-child(even):hover {
    transform: translateX(30px);
}

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

.feature-pill span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mobile-app-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.app-content-top {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.app-content-top p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.app-content-top strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.app-content-highlight {
    position: relative;
    padding: 25px 35px;
    background: linear-gradient(to right, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: var(--border-radius);
    text-align: center;
    overflow: hidden;
}

.highlight-glow-left, 
.highlight-glow-right {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    opacity: 0.5;
}

.highlight-glow-left {
    background-color: rgba(78, 205, 196, 0.4);
    top: -30px;
    left: -30px;
}

.highlight-glow-right {
    background-color: rgba(255, 107, 107, 0.4);
    bottom: -30px;
    right: -30px;
}

.app-content-highlight p {
    position: relative;
    z-index: 2;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

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

.app-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.app-service-card {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.app-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(78, 205, 196, 0.2);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.app-service-card:nth-child(2) .service-card-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.05) 100%);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

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

.app-service-card:nth-child(2) .service-card-icon i {
    color: var(--primary-color);
}

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

.service-card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

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

.app-content-bottom {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-right: 4px solid var(--accent-color);
}

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

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

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

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

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.app-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4);
}

.app-download-btn i {
    font-size: 1.3rem;
}

@media (max-width: 1100px) {
    .mobile-app-container {
        grid-template-columns: 300px 1fr;
    }
    
    .floating-features {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .mobile-app-container {
        grid-template-columns: 1fr;
    }
    
    .mobile-app-visual {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .phone-mockup {
        padding-left: 0;
    }
    
    .floating-features {
        position: static;
        margin-top: 30px;
        width: 100%;
    }
    
    .feature-pill,
    .feature-pill:nth-child(even) {
        transform: translateX(0);
    }
    
    .feature-pill:hover,
    .feature-pill:nth-child(even):hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .mobile-app-section {
        padding: 60px 0;
    }
    
    .app-content-row {
        grid-template-columns: 1fr;
    }
    
    .app-content-highlight {
        padding: 20px 25px;
    }
    
    .app-content-highlight p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .mobile-app-section {
        padding: 50px 0;
    }
    
    .app-content-top, 
    .app-content-bottom {
        padding: 25px;
    }
    
    .app-content-top p,
    .app-content-bottom p {
        font-size: 0.95rem;
    }
    
    .app-content-highlight p {
        font-size: 0.95rem;
    }
    
    .service-card-content h3 {
        font-size: 1.2rem;
    }
    
    .app-download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Expert Path Section */
.expert-path-section {
    position: relative;
    background-color: var(--dark-bg);
    padding: 80px 0;
    overflow: hidden;
}

.expert-path-overlay {
    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='%23ffffff' fill-opacity='0.03'%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"),
        radial-gradient(circle at 10% 30%, rgba(78, 205, 196, 0.07) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 30%);
    opacity: 1;
    z-index: 1;
}

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

.expert-path-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.expert-path-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.intro-text {
    position: relative;
}

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

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

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

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

.expert-icon-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
}

.expert-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 209, 102, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 209, 102, 0.4);
}

.expert-icon i {
    font-size: 3.5rem;
    color: var(--darker-bg);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 209, 102, 0.3);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.tips-container {
    background: linear-gradient(135deg, rgba(26, 27, 37, 0.7) 0%, rgba(34, 35, 46, 0.7) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

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

.tips-decoration {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.tips-decoration.right {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.tips-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 20px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

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

.tip-card {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.tip-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 107, 107, 0.7) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.tip-content {
    flex: 1;
}

.tip-content h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tip-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.expert-path-conclusion {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.conclusion-left,
.conclusion-right {
    background: var(--gradient-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.conclusion-left {
    border-left: 4px solid var(--secondary-color);
}

.conclusion-right {
    border-right: 4px solid var(--accent-color);
}

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

.conclusion-left p:last-child,
.conclusion-right p:last-child {
    margin-bottom: 0;
}

.conclusion-left strong {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.conclusion-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    gap: 15px;
}

.divider-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 107, 107, 0.7) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

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

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

.expert-path-cta .btn {
    padding: 14px 30px;
    font-size: 1.1rem;
}

/* Media Queries for Expert Path Section */
@media (max-width: 1200px) {
    .expert-path-conclusion {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .conclusion-divider {
        flex-direction: row;
        width: 100%;
        height: auto;
        gap: 15px;
    }
    
    .divider-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }
}

@media (max-width: 992px) {
    .expert-path-intro {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .expert-visual {
        display: none;
    }
    
    .tips-container {
        padding: 30px;
    }
    
    .tip-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tip-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .expert-path-section {
        padding: 60px 0;
    }
    
    .tips-header h3 {
        font-size: 1.5rem;
    }
    
    .tips-decoration {
        width: 40px;
    }
    
    .conclusion-left,
    .conclusion-right {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .expert-path-section {
        padding: 50px 0;
    }
    
    .expert-path-intro {
        padding: 25px;
    }
    
    .intro-text p {
        font-size: 0.95rem;
    }
    
    .tips-container {
        padding: 25px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-content h4 {
        font-size: 1.1rem;
    }
    
    .conclusion-left p,
    .conclusion-right p {
        font-size: 0.95rem;
    }
    
    .expert-path-cta .btn {
        width: 100%;
    }
}

/* Logo Styling */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.logo-link:hover, .footer-logo-link:hover {
  color: var(--accent-color);
}

.logo-link i, .footer-logo-link i {
  font-size: 1.8rem;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 3px rgba(255, 107, 107, 0.3));
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo-link:hover i, .footer-logo-link:hover i {
  transform: rotate(15deg);
  color: var(--accent-color);
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 1.5rem;
}

.logo-highlight {
  position: relative;
  font-weight: 800;
  background: var(--accent-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent-color);
  text-shadow: 0 1px 3px rgba(255, 209, 102, 0.5);
}

.logo-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-highlight::after,
.footer-logo-link:hover .logo-highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-logo-link {
  display: inline-flex;
}

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

.footer-logo-link i {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-link i, .footer-logo-link i {
    font-size: 1.6rem;
  }
  
  .footer-logo .logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-link i {
    font-size: 1.8rem;
  }
}

.logo-icon {
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon, 
.footer-logo-link:hover .logo-icon {
  transform: rotate(15deg);
}

.logo-icon i {
  position: absolute;
  transition: all 0.3s ease;
}

.logo-icon i:first-child {
  font-size: 1.4rem;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 3px rgba(255, 107, 107, 0.3));
  z-index: 2;
}

.logo-icon i:last-child {
  font-size: 1.1rem;
  top: 55%;
  left: 55%;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 3px rgba(255, 209, 102, 0.3));
  z-index: 1;
}

.logo-link:hover .logo-icon i:first-child {
  color: var(--accent-color);
}

.logo-link:hover .logo-icon i:last-child {
  color: var(--primary-color);
}

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

.footer-logo-link .logo-icon i:first-child {
  font-size: 1.6rem;
}

.footer-logo-link .logo-icon i:last-child {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .logo-icon {
    width: 30px;
    height: 30px;
  }
  
  .logo-icon i:first-child {
    font-size: 1.2rem;
  }
  
  .logo-icon i:last-child {
    font-size: 0.9rem;
  }
  
  .footer-logo-link .logo-icon {
    width: 35px;
    height: 35px;
  }
  
  .footer-logo-link .logo-icon i:first-child {
    font-size: 1.4rem;
  }
  
  .footer-logo-link .logo-icon i:last-child {
    font-size: 1.1rem;
  }
}

@media (max-width: 950px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
    background: transparent;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn:hover {
    color: var(--primary-color);
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--darker-bg);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  nav.active {
    max-height: 400px;
    padding: 15px 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  nav ul li {
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  nav ul li a:after {
    display: none;
  }
  
  nav ul li a:hover {
    background: rgba(255, 107, 107, 0.1);
  }
}
