/* Base Styles */
:root {
    --primary-color: #00ffea;
    --secondary-color: #7928ca;
    --accent-color: #ff0080;
    --dark-bg: #0f0e17;
    --darker-bg: #080810;
    --card-bg: #1a1a25;
    --text-color: #fffffe;
    --text-secondary: #a7a9be;
    --border-color: #33323e;
    --transition: all 0.3s ease;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    --border-radius: 4px;
    --neon-shadow: 0 0 8px rgba(0, 255, 234, 0.5);
    --neon-box-shadow: 0 0 15px rgba(0, 255, 234, 0.3);
    --accent-neon-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Kanit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 25% 10%, rgba(121, 40, 202, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 234, 0.05) 0%, transparent 50%);
}

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(--text-color);
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--neon-shadow);
}

.section-header h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    background: var(--accent-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--accent-neon-shadow);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: var(--neon-shadow);
}

.primary-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--neon-box-shadow);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 8px rgba(121, 40, 202, 0.5);
}

.secondary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(8, 8, 16, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 234, 0.1);
}

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

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: var(--neon-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a i {
    font-size: 1.8rem;
    color: var(--accent-color);
    animation: logoSpin 8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.6));
    position: relative;
}

.logo a i::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 128, 0.6), transparent 70%);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
    animation: pulse 2s ease-in-out infinite alternate;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--text-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2px rgba(0, 255, 234, 0.4));
}

.logo-accent {
    color: var(--accent-color);
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 3px rgba(255, 0, 128, 0.5));
    position: relative;
    display: inline-block;
    transform: skewX(-5deg);
}

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

.logo a span {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

nav ul li a:hover::after {
    width: 100%;
    box-shadow: var(--neon-shadow);
}

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

.mobile-menu-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--darker-bg);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 100;
        padding: 60px 0 0;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    nav ul li a:hover::after {
        width: 0;
    }
    
    nav ul li a.nav-link {
        position: relative;
    }
    
    nav ul li a.nav-link:hover {
        background-color: rgba(0, 255, 234, 0.05);
    }
    
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 101;
    }
    
    .mobile-menu-btn.active i::before {
        content: "\f00d";
    }
    
    nav::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }
    
    nav.active::before {
        opacity: 1;
        visibility: visible;
    }
}

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

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(8, 8, 16, 0.7), rgba(8, 8, 16, 0.6));
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(121, 40, 202, 0.15), transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(0, 255, 234, 0.1), transparent 70%);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(121, 40, 202, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 40, 202, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
}

.hero-section .container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content-wrapper {
    max-width: 800px;
    background-color: rgba(8, 8, 16, 0.92);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 234, 0.3);
    box-shadow: var(--neon-box-shadow), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 255, 234, 0.2);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero-content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.7);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 0, 128, 0.2);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: var(--accent-neon-shadow);
    animation: fadeIn 0.5s ease-out forwards, pulse 4s infinite;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.hero-content-wrapper h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 0.7s ease-out forwards;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-wrapper h1 .main-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
    display: block;
}

.hero-content-wrapper h1::first-letter,
.hero-content-wrapper h1 .main-title::first-letter {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.hero-content-wrapper h1 span span,
.hero-content-wrapper h1 .main-title span {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.7), 0 0 40px rgba(255, 0, 128, 0.3);
    font-weight: 900;
}

/* Combo999 specific styling */
.hero-content-wrapper h1 .main-title::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    bottom: 65%;
    left: -10%;
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.7;
    animation: pulse 3s infinite;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
    gap: 15px;
    animation: fadeIn 0.9s ease-out forwards;
    flex-wrap: wrap;
    width: 100%;
}

.hero-tagline span {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    padding: 0 5px;
}

.hero-separator {
    width: 4px;
    height: 20px;
    background-color: var(--primary-color);
    box-shadow: var(--neon-shadow);
}

.hero-content-wrapper .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.7), 0 0 10px rgba(0, 255, 234, 0.3);
    position: relative;
    font-weight: 700;
    padding: 3px 8px;
    background-color: rgba(0, 255, 234, 0.07);
    border-radius: 3px;
    border-bottom: 1px solid var(--primary-color);
}

.hero-content-wrapper p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeIn 1.1s ease-out forwards;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    background-color: rgba(8, 8, 16, 0.7);
    padding: 18px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    position: relative;
    z-index: 5;
}

.hero-content-wrapper p::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
                rgba(0, 255, 234, 0.05) 0%, 
                transparent 10%, 
                transparent 90%, 
                rgba(255, 0, 128, 0.05) 100%);
    z-index: -1;
    border-radius: var(--border-radius);
}

/* Enhance the link to Combo999 */
.hero-content-wrapper p strong, 
.hero-content-wrapper p b {
    color: var(--primary-color);
    font-weight: 700;
}

/* Make the hashtag in the heading stand out */
.hero-content-wrapper h1 {
    position: relative;
}

.hero-content-wrapper h1::first-letter {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

.hero-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 40px;
    animation: fadeIn 1.3s ease-out forwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 234, 0.7), 0 0 30px rgba(0, 255, 234, 0.3);
    margin-bottom: 5px;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s ease-out forwards;
    margin-top: 10px;
}

/* Enhanced Hero Buttons */
.hero-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    gap: 12px;
    min-width: 220px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    font-size: 1.1rem;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -100px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: btn-shine 3s infinite;
    z-index: 1;
}

.hero-buttons .primary-btn .btn-glow {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 234, 0.5), 
        transparent);
}

.hero-buttons .secondary-btn .btn-glow {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(121, 40, 202, 0.5), 
        transparent);
}

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

.hero-buttons .btn-text {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-buttons .primary-btn {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border: none;
    box-shadow: 0 0 25px rgba(0, 255, 234, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .primary-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: scanlineButton 2s linear infinite;
}

.hero-buttons .primary-btn:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 30px rgba(0, 255, 234, 0.7), 0 0 60px rgba(0, 255, 234, 0.4);
    border: none;
    letter-spacing: 2px;
}

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

.hero-buttons .secondary-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 25px rgba(121, 40, 202, 0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .secondary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--secondary-color), transparent);
    animation: scanlineButtonVertical 2s linear infinite;
}

.hero-buttons .secondary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 30px rgba(121, 40, 202, 0.7), 0 0 60px rgba(121, 40, 202, 0.4);
    letter-spacing: 2px;
}

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

@keyframes scanlineButton {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes scanlineButtonVertical {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Media queries for hero buttons responsiveness */
@media (max-width: 992px) {
    .hero-buttons .btn {
        padding: 14px 26px;
        min-width: 200px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        gap: 15px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        min-width: 180px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }
}

.hero-image {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.25;
    filter: blur(2px) brightness(0.7);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    mix-blend-mode: luminosity;
}

/* Media queries for hero section responsiveness */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content-wrapper {
        padding: 30px;
    }

    .hero-content-wrapper h1, 
    .hero-content-wrapper h1 .main-title {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }

    .hero-separator {
        width: 50px;
        height: 2px;
        margin: 5px 0;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-value {
        font-size: 1.8rem;
    }
    
    .hero-content-wrapper p {
        padding: 12px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 25px;
    }

    .hero-content-wrapper h1,
    .hero-content-wrapper h1 .main-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-content-wrapper p {
        font-size: 1rem;
        padding: 10px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 50px;
    }

    .hero-content-wrapper {
        padding: 20px 15px;
    }

    .hero-content-wrapper h1,
    .hero-content-wrapper h1 .main-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-badge {
        padding: 6px 12px;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
    
    .hero-content-wrapper p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 10px;
        margin-bottom: 25px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

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

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 255, 234, 0.03) 0%, transparent 50%),
        linear-gradient(245deg, rgba(255, 0, 128, 0.03) 0%, transparent 50%);
    z-index: 0;
}

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

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

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

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    background: rgba(26, 26, 37, 0.5);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--neon-box-shadow);
}

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

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

.about-image img {
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(0, 255, 234, 0.2));
}

.about-image img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 12px rgba(0, 255, 234, 0.3));
}

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

.games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(121, 40, 202, 0.05) 0%, transparent 50%),
        linear-gradient(245deg, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.game-category {
    background-color: rgba(26, 26, 37, 0.7);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.game-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
    z-index: 0;
}

.game-category:hover::before {
    height: 100%;
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-box-shadow);
    border-color: var(--primary-color);
}

.game-category i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.game-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.game-category p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

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

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

.games-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--neon-box-shadow);
    border-color: var(--primary-color);
}

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

.promotion-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 0, 128, 0.03) 0%, transparent 50%),
        linear-gradient(245deg, rgba(121, 40, 202, 0.03) 0%, transparent 50%);
    z-index: 0;
}

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

.promotion-card {
    background-color: rgba(26, 26, 37, 0.7);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.promotion-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.promotion-card:hover::after {
    width: 100%;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.2);
    border-color: var(--accent-color);
}

.promotion-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.3);
}

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

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

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

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 255, 234, 0.05) 0%, transparent 50%),
        linear-gradient(245deg, rgba(121, 40, 202, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.contact-method {
    background-color: rgba(26, 26, 37, 0.7);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-box-shadow);
    border-color: var(--primary-color);
}

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

.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;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 255, 234, 0.03) 0%, transparent 50%),
        linear-gradient(245deg, rgba(121, 40, 202, 0.03) 0%, transparent 50%);
    z-index: 0;
}

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

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

.footer-logo h2 a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo h2 a i {
    font-size: 1.6rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.6));
}

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

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

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

.footer-links h3::after, .footer-payment h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: var(--neon-shadow);
}

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

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

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

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

.payment-icons i {
    color: var(--text-secondary);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-shadow);
}

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

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(8, 8, 16, 0.9);
    padding: 12px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 255, 234, 0.1);
}

.sticky-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    width: 32%;
    text-align: center;
    transition: var(--transition);
    border-radius: 3px;
    gap: 8px;
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.sticky-btn span {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.login-btn {
    color: var(--text-color);
    border: 1px solid var(--secondary-color);
}

.login-btn:hover {
    color: var(--text-color);
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(121, 40, 202, 0.3);
}

.register-btn {
    color: var(--text-color);
    border: 1px solid var(--primary-color);
}

.register-btn:hover {
    color: var(--dark-bg);
    background-color: var(--primary-color);
    box-shadow: var(--neon-box-shadow);
}

.free-credit-btn {
    color: var(--text-color);
    border: 1px solid var(--accent-color);
}

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

/* Add cyberpunk glitch effect on hover */
.btn:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: glitch 0.5s ease forwards;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
    100% { transform: translate(0); }
}

/* Cyberpunk-style pulsing effect for interactive elements */
.sticky-btn:hover i {
    animation: pulse 1.5s infinite;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .sticky-buttons {
        padding: 12px 15px;
    }
    
    .sticky-btn {
        flex-direction: row;
        padding: 8px 12px;
        width: 32%;
        justify-content: center;
    }
}

@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;
    }
    
    section {
        padding: 60px 0;
    }
    
    .sticky-buttons {
        padding: 10px;
    }
    
    .sticky-btn {
        flex-direction: row;
        gap: 5px;
        padding: 8px 5px;
        width: 32%;
    }
    
    .sticky-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .sticky-buttons {
        padding: 8px 5px;
    }
    
    .sticky-btn {
        padding: 6px 3px;
        width: 32%;
        gap: 3px;
    }
    
    .sticky-btn i {
        font-size: 1rem;
        margin-right: 3px;
        margin-bottom: 0;
    }
    
    .sticky-btn span {
        font-size: 0.7rem;
    }
}

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

/* Flicker effect for neon elements */
.flicker {
    animation: flicker 0.2s ease-in-out;
}

@keyframes flicker {
    0% { opacity: 1; }
    25% { opacity: 0.5; }
    50% { opacity: 0.8; }
    75% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* Hero section animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

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

@keyframes borderGlow {
    0% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 15px var(--primary-color); }
    100% { box-shadow: 0 0 5px var(--primary-color); }
}

.hero-content-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    animation: scanline 8s linear infinite;
    opacity: 0.3;
}

.stat::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    animation: borderGlow 4s infinite;
}

/* Button extra effects */
.btn-extra-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    animation: extra-glow 0.3s ease-out forwards;
    pointer-events: none;
    z-index: 1;
}

.btn-click-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: click-ripple 0.4s ease-out forwards;
    pointer-events: none;
    z-index: 1;
}

@keyframes extra-glow {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes click-ripple {
    0% {
        opacity: 1;
        width: 5px;
        height: 5px;
    }
    100% {
        opacity: 0;
        width: 300px;
        height: 300px;
    }
}

/* Feature Section */
.feature-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.feature-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, transparent 70%),
        linear-gradient(245deg, rgba(0, 255, 234, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.feature-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 85%, rgba(121, 40, 202, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(0, 255, 234, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

.feature-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding: 0 15px 15px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.feature-header h2::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 20%;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.7), 0 0 20px rgba(0, 255, 234, 0.5);
}

.feature-header h2::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 1px;
    background: var(--accent-color);
    bottom: 5px;
    left: 10%;
    opacity: 0.5;
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 0.7; }
    100% { transform: translateX(100%); opacity: 0; }
}

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

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

.feature-text-content {
    background-color: rgba(15, 14, 23, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.feature-text-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    z-index: 1;
    transition: height 0.5s ease;
}

.feature-text-content:hover::after {
    height: 100%;
}

.feature-text-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.feature-text-content:hover p {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-text-content strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
    position: relative;
    display: inline-block;
}

.feature-text-content strong:hover {
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.6);
}

.feature-text-content strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.feature-text-content strong:hover::after {
    width: 100%;
}

.feature-highlight {
    background-color: rgba(121, 40, 202, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(121, 40, 202, 0.3);
    display: flex;
    gap: 20px;
    box-shadow: 0 0 20px rgba(121, 40, 202, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(121, 40, 202, 0.1),
        transparent
    );
    animation: sweep 5s linear infinite;
    z-index: 0;
}

@keyframes sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
    animation: pulse 3s infinite;
}

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

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

.feature-card {
    background-color: rgba(26, 26, 37, 0.7);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-card:hover .feature-card-icon {
    transform: rotateY(180deg);
}

.feature-card:hover .feature-card-icon i {
    transform: rotateY(180deg);
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.7);
}

.feature-card-icon {
    background: rgba(8, 8, 16, 0.5);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid rgba(0, 255, 234, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
    position: relative;
    transition: var(--transition);
}

.feature-card-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 234, 0.5);
    animation: pulse 2s infinite;
}

.feature-card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

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

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

.feature-cta {
    text-align: center;
    margin-top: 20px;
}

.feature-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    box-shadow: 0 0 30px rgba(0, 255, 234, 0.3);
}

/* Responsive styles for feature section */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-header h2 {
        font-size: 2rem;
    }
    
    .feature-elements {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-text-content p {
        font-size: 1rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .feature-header h2 {
        font-size: 1.5rem;
        padding: 0 10px 10px;
    }
    
    .feature-elements {
        grid-template-columns: 1fr;
    }
    
    .feature-text-content {
        padding: 20px 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
}

/* Popularity Section - Unique Layout */
.popularity-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.popularity-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(121, 40, 202, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 255, 234, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.popularity-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

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

.popularity-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.popularity-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.popularity-header-decoration span {
    display: block;
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-color),
        var(--primary-color),
        transparent
    );
    position: relative;
}

.popularity-header-decoration span::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.popularity-header-decoration i {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.6);
}

.popularity-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.popularity-side-decoration {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.line-decoration {
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        transparent
    );
    opacity: 0.5;
}

.dot-decoration {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot-decoration span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: block;
    animation: pulseOpacity 2s infinite alternate;
}

.dot-decoration span:nth-child(2) {
    background-color: var(--secondary-color);
    animation-delay: 0.7s;
}

.dot-decoration span:nth-child(3) {
    background-color: var(--accent-color);
    animation-delay: 1.4s;
}

@keyframes pulseOpacity {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.1); }
}

.popularity-text {
    margin-left: 30px;
    padding-bottom: 40px;
}

.popularity-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

.popularity-text strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.4);
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.popularity-text strong:hover {
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transform: translateY(-1px);
}

.popularity-visual {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    margin: 30px 0 40px;
}

.popularity-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.popularity-feature {
    background-color: rgba(26, 26, 37, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.popularity-feature::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent
    );
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.popularity-feature:hover::before {
    top: 100%;
    left: 100%;
}

.popularity-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.popularity-feature i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
}

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

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

.popularity-highlight {
    background: linear-gradient(135deg, 
        rgba(121, 40, 202, 0.15) 0%, 
        rgba(255, 0, 128, 0.1) 100%
    );
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(121, 40, 202, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popularity-highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center, 
        rgba(121, 40, 202, 0.1),
        transparent 70%
    );
    pointer-events: none;
}

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

.highlight-content i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 0 10px;
    display: block;
    opacity: 0.8;
}

.highlight-content i.fa-quote-right {
    text-align: right;
    margin: 10px 0 0;
}

.highlight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.highlight-content strong {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(121, 40, 202, 0.5);
    position: relative;
    display: inline-block;
}

.popularity-conclusion {
    position: relative;
    margin: 40px 0 0 30px;
    padding: 30px;
    background-color: rgba(15, 14, 23, 0.7);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
}

.pulse-decoration {
    position: absolute;
    top: 20px;
    left: -15px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
    animation: pulsate 2s infinite;
}

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

.popularity-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.popularity-conclusion p:last-of-type {
    margin-bottom: 30px;
}

.popularity-conclusion strong {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.4);
}

.popularity-cta {
    text-align: center;
    margin-top: 30px;
}

/* Accent button style for CTA */
.accent-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.accent-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: scanlineButton 2s linear infinite;
}

.accent-btn:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
    letter-spacing: 2px;
}

.accent-btn:hover i {
    animation: spin 1.5s ease infinite;
}

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

/* Responsive styles for popularity section */
@media (max-width: 992px) {
    .popularity-header h2 {
        font-size: 2.1rem;
    }
    
    .popularity-visual {
        grid-template-columns: 1fr;
    }
    
    .popularity-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popularity-header h2 {
        font-size: 1.8rem;
    }
    
    .popularity-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .popularity-side-decoration {
        display: none;
    }
    
    .popularity-text,
    .popularity-conclusion {
        margin-left: 0;
    }
    
    .popularity-text p,
    .popularity-conclusion p,
    .highlight-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .popularity-header h2 {
        font-size: 1.6rem;
    }
    
    .popularity-header-decoration span {
        width: 50px;
    }
    
    .popularity-features {
        grid-template-columns: 1fr;
    }
    
    .popularity-conclusion {
        padding: 25px 15px;
    }
}

/* Promo Highlights Section - Unique Layout */
.promo-highlights-section {
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding: 100px 0;
}

.promo-highlights-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 255, 234, 0.07) 0%, transparent 60%),
        linear-gradient(225deg, rgba(255, 0, 128, 0.07) 0%, transparent 60%);
    z-index: 0;
}

.promo-highlights-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

/* Unique header style for this section */
.promo-highlights-header {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.promo-title-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 0, 128, 0.1);
    margin-bottom: 15px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.promo-title-tag::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
    top: 0;
    left: -100%;
    transition: 0.5s;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-title-tag span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.promo-highlights-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    position: relative;
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Content area */
.promo-highlights-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.promo-intro {
    background-color: rgba(15, 14, 23, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.promo-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 234, 0.05), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.05), transparent 60%);
    z-index: -1;
}

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

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

.promo-intro strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.4);
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.promo-intro strong:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(0, 255, 234, 0.6);
}

/* List carousel style */
.promo-list-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 15px 0;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.carousel-container::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.promo-item {
    min-width: calc(33.333% - 20px);
    scroll-snap-align: start;
    background-color: rgba(26, 26, 37, 0.8);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform-origin: center;
}

.promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.promo-item:hover .promo-icon i {
    transform: rotate(15deg) scale(1.1);
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
}

.promo-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transition: height 0.3s ease-out;
}

.promo-item:hover::before {
    height: 100%;
}

.promo-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(15, 14, 23, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 128, 0.2);
}

.promo-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.carousel-indicators span {
    width: 30px;
    height: 3px;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators span.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

/* Special promo highlight */
.promo-special {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 234, 0.05) 0%, 
        rgba(121, 40, 202, 0.08) 50%,
        rgba(255, 0, 128, 0.05) 100%
    );
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.promo-special::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("placeholder-image.webp") center/cover no-repeat;
    opacity: 0.15;
    filter: blur(8px);
    z-index: 0;
}

.promo-special-content {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.special-badge {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(121, 40, 202, 0.2);
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(121, 40, 202, 0.3);
    position: relative;
    overflow: hidden;
}

.special-badge span {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(121, 40, 202, 0.4);
}

.promo-special-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(121, 40, 202, 0.5);
}

.promo-special-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.promo-special-content strong {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(121, 40, 202, 0.4);
}

.promo-special-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.glowing-border {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px rgba(121, 40, 202, 0.5), inset 0 0 30px rgba(121, 40, 202, 0.3);
    animation: pulseBorder 3s ease-in-out infinite alternate;
}

@keyframes pulseBorder {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* Conclusion */
.promo-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    position: relative;
}

.promo-conclusion::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.promo-conclusion::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.promo-conclusion strong {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.4);
}

.pulsing-btn {
    margin-top: 40px;
    position: relative;
}

.pulsing-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 0, 128, 0.05);
    animation: pulseRing 2s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

@keyframes pulseRing {
    0% { width: 30%; height: 100%; opacity: 0.8; }
    100% { width: 100%; height: 200%; opacity: 0; }
}

.neon-btn {
    position: relative;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5), 0 0 40px rgba(255, 0, 128, 0.2);
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.neon-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.5), 0 0 50px rgba(255, 0, 128, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.neon-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: neonGlow 3s infinite;
}

@keyframes neonGlow {
    0% { transform: translateX(-100%); }
    20%, 100% { transform: translateX(100%); }
}

/* Responsive styles for promo-highlights section */
@media (max-width: 992px) {
    .promo-highlights-header h2 {
        font-size: 2.4rem;
    }
    
    .promo-item {
        min-width: calc(50% - 20px);
    }
    
    .promo-special {
        grid-template-columns: 1fr;
    }
    
    .promo-special-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .promo-highlights-header {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    
    .promo-highlights-header::before {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background: var(--primary-color);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .promo-highlights-header h2 {
        font-size: 2rem;
    }
    
    .promo-item {
        min-width: calc(100% - 20px);
    }
    
    .promo-conclusion p {
        font-size: 1rem;
    }
    
    .promo-special-content {
        padding: 30px;
    }
    
    .promo-special-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .promo-highlights-header h2 {
        font-size: 1.8rem;
    }
    
    .promo-header-decoration span {
        width: 40px;
    }
    
    .promo-features {
        flex-direction: column;
    }
    
    .promo-conclusion {
        padding: 20px;
    }
}

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

.tips-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 255, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.tips-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(26, 26, 37, 0.7);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.tips-intro::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    border-radius: 8px;
    opacity: 0.3;
    transition: var(--transition);
}

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

.tips-intro strong {
    color: var(--primary-color);
    position: relative;
    padding: 0 3px;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.5);
}

.tips-strategies {
    margin-bottom: 50px;
}

.hexagon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
}

.tip-hexagon {
    width: 300px;
    height: 345px;
    position: relative;
    margin: 0 auto;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    transition: var(--transition);
    cursor: pointer;
}

.tip-hexagon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tip-hexagon::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--card-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hexagon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    text-align: center;
    z-index: 2;
}

.hexagon-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
    transition: var(--transition);
}

.tip-hexagon:hover .hexagon-content i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.hexagon-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.hexagon-content h3::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--accent-color);
    bottom: -5px;
    left: 25%;
    box-shadow: 0 0 8px var(--accent-color);
    transition: var(--transition);
}

.tip-hexagon:hover .hexagon-content h3::after {
    width: 80%;
    left: 10%;
}

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

.tips-conclusion {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-color: rgba(10, 10, 15, 0.7);
}

.tips-conclusion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: scanLine 3s infinite linear;
}

.tips-conclusion::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    animation: scanLine 3s infinite linear 1.5s;
}

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

.tips-conclusion strong {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

.tips-cta {
    margin-top: 30px;
    text-align: center;
}

.pulse-glow-btn {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.pulse-glow-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50%;
}

.pulse-glow-btn:hover {
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.pulse-glow-btn:hover::before {
    transform: scale(1.5);
    border-radius: 0;
}

.pulse-glow-btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.pulse-glow-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .hexagon-container {
        gap: 20px;
    }

    .tip-hexagon {
        width: 250px;
        height: 290px;
    }

    .hexagon-content i {
        font-size: 2rem;
    }

    .hexagon-content h3 {
        font-size: 1.2rem;
    }

    .hexagon-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hexagon-container {
        gap: 15px;
    }

    .tip-hexagon {
        width: 220px;
        height: 250px;
    }

    .hexagon-content i {
        font-size: 1.8rem;
    }

    .hexagon-content h3 {
        font-size: 1.1rem;
    }

    .hexagon-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .tips-intro p,
    .tips-conclusion p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hexagon-container {
        flex-direction: column;
        gap: 40px;
    }

    .tip-hexagon {
        width: 270px;
        height: 310px;
    }

    .tips-intro,
    .tips-conclusion {
        padding: 20px 15px;
    }

    .tips-intro p,
    .tips-conclusion p {
        font-size: 0.95rem;
    }
}

/* Service Section - Unique Design */
.service-section {
    position: relative;
    background-color: var(--darker-bg);
    padding: 100px 0;
    overflow: hidden;
}

.service-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(121, 40, 202, 0.05) 0%, transparent 30%),
        linear-gradient(270deg, rgba(0, 255, 234, 0.05) 0%, transparent 30%);
    z-index: 0;
}

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

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

.service-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.service-header h2::before {
    content: "{";
    position: absolute;
    left: -15px;
    color: var(--accent-color);
    font-size: 3rem;
    top: -10px;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.service-header h2::after {
    content: "}";
    position: absolute;
    right: -15px;
    color: var(--accent-color);
    font-size: 3rem;
    top: -10px;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.service-header-subtitle {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

.service-header-subtitle span {
    font-size: 1.3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    font-weight: 500;
    background-color: rgba(0, 255, 234, 0.05);
    padding: 5px 15px;
    border-radius: 4px;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.service-header-subtitle::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: -8px;
    left: -20%;
    z-index: 0;
}

.service-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 25px;
    background: rgba(26, 26, 37, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-intro::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(0, 255, 234, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

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

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.service-intro strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.4);
}

/* Unique 3D Card Flip Effect */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card-wrapper {
    height: auto;
    min-height: 280px;
}

.service-card {
    position: relative;
    width: 100%;
    height: auto;
    background: linear-gradient(45deg, rgba(26, 26, 37, 0.9), rgba(15, 14, 23, 0.9));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(121, 40, 202, 0.2), rgba(0, 255, 234, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.service-icon::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 18px;
    border: 1px dashed var(--primary-color);
    animation: spin 10s linear infinite;
    opacity: 0.5;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.6);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.service-card h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: center;
    margin-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.service-card strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

/* Responsive styles for service card */
@media (max-width: 992px) {
    .service-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .service-card-wrapper {
        height: auto;
        min-height: auto;
    }
    
    .service-card {
        height: 100%;
        min-height: auto;
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        width: 100%;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-header-subtitle span {
        font-size: 1.1rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card-wrapper {
        height: auto;
        min-height: auto;
    }
    
    .service-card {
        height: auto;
        min-height: auto;
        padding: 25px 20px;
        overflow: visible;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        width: 100%;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .service-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .service-header h2::before, 
    .service-header h2::after {
        font-size: 2.5rem;
    }
    
    .service-header-subtitle span {
        font-size: 1rem;
    }
    
    .service-intro {
        padding: 20px 15px;
    }
    
    .service-intro p {
        font-size: 1rem;
    }
    
    .service-cards {
        gap: 20px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-highlights-content p {
        font-size: 1rem;
    }
    
    .holographic-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Service Highlights - Unique Design */
.service-highlights {
    max-width: 800px;
    margin: 60px auto;
    position: relative;
    display: flex;
    align-items: center;
}

.service-highlights-decoration {
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.service-highlight-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 5px 0;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.7);
}

.service-highlight-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    margin: 5px 0;
}

.service-highlights-content {
    flex: 1;
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    background: rgba(26, 26, 37, 0.5);
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-highlights-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent, rgba(255, 0, 128, 0.05), transparent);
    z-index: -1;
}

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

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

.service-highlights-content strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 234, 0.3);
}

/* CTA Section with Holographic Button */
.service-cta {
    text-align: center;
    margin-top: 60px;
}

.holographic-btn {
    position: relative;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        var(--secondary-color),
        var(--primary-color));
    background-size: 400% 100%;
    border: none;
    border-radius: 5px;
    color: var(--dark-bg);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 255, 234, 0.5);
    animation: gradient-shift 8s linear infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.holographic-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent);
    transform: translateX(-100%);
    animation: holographic-shine 3s infinite;
    z-index: 1;
}

@keyframes holographic-shine {
    0% { transform: translateX(-100%); }
    20%, 100% { transform: translateX(100%); }
}

.holographic-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 255, 234, 0.6), 0 15px 40px rgba(121, 40, 202, 0.4);
}

.holographic-btn .btn-text {
    position: relative;
    z-index: 2;
}

.holographic-btn i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

/* Responsive Styles for Service Section */
@media (max-width: 992px) {
    .service-header h2 {
        font-size: 2.3rem;
    }
    
    .service-header-subtitle span {
        font-size: 1.2rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .service-card-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-header-subtitle span {
        font-size: 1.1rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card-wrapper {
        height: 250px;
    }
    
    .service-highlights {
        flex-direction: column;
    }
    
    .service-highlights-decoration {
        width: 100%;
        height: 30px;
        flex-direction: row;
        margin-right: 0;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .service-highlight-dot {
        margin: 0 5px;
    }
    
    .service-highlight-line {
        width: 100px;
        height: 2px;
        margin: 0 5px;
    }
    
    .service-highlights-content {
        border-left: none;
        border-top: 3px solid var(--accent-color);
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 576px) {
    .service-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .service-header h2::before, 
    .service-header h2::after {
        font-size: 2.5rem;
    }
    
    .service-header-subtitle span {
        font-size: 1rem;
    }
    
    .service-intro {
        padding: 20px 15px;
    }
    
    .service-intro p {
        font-size: 1rem;
    }
    
    .service-highlights-content p {
        font-size: 1rem;
    }
    
    .service-card-back p {
        font-size: 0.95rem;
    }
    
    .holographic-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

