/* Reset and Base Styles */
:root {
    --primary-color: #00c6ff;
    --secondary-color: #121212;
    --accent-color: #7928ca;
    --dark-bg: #0f1923;
    --darker-bg: #070d13;
    --light-text: #e6f1ff;
    --gray-text: #8892b0;
    --card-bg: #162736;
    --header-height: 80px;
    --button-primary: #00c6ff;
    --button-secondary: #162736;
}

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

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--light-text);
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    background-color: var(--darker-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    text-decoration: none;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

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

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
}

.logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo .logo-text span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.logo:hover h1 {
    transform: translateX(5px);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: var(--header-height);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(121, 40, 202, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    width: 100%;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(90deg, var(--primary-color), #36d6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 198, 255, 0.2);
    line-height: 1.2;
}

.hero-content p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.7;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.primary-btn {
    background: linear-gradient(90deg, var(--primary-color), #36d6ff);
    color: white;
    border: none;
}

.primary-btn:hover {
    background: linear-gradient(90deg, #36d6ff, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.hero-image {
    width: 100%;
    margin-top: 20px;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s ease;
    animation: fadeIn 1.2s ease-out;
}

.hero-image:hover {
    transform: perspective(1000px) rotateX(0);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 16/9;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media queries for hero section */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 28px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 30px auto 0;
    }
    
    .btn {
        width: 100%;
    }
}

/* Games Section */
.games {
    background-color: var(--darker-bg);
    padding: 100px 0;
}

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

.game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.game-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

/* Promotion Section */
.promotion {
    background-color: var(--dark-bg);
    padding: 100px 0;
}

.promotion-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

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

.promotion-text ul {
    margin: 20px 0 30px;
}

.promotion-text ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.promotion-text ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

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

.promotion-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

footer a {
    color: var(--light-text);
}

footer a:hover {
    color: var(--primary-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo-container {
    margin-bottom: 15px;
}

.footer-logo h2 {
    text-align: left;
    margin-bottom: 10px;
    color: white;
    font-size: 1.8rem;
}

.footer-logo h2 span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

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

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    margin: 0 5px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.login-btn {
    background-color: var(--accent-color);
    color: white;
}

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

.free-credit-btn {
    background-color: #00b894;
    color: white;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    color: white;
}

/* Add Thai font support */
@font-face {
    font-family: 'Kanit';
    src: url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');
}

@font-face {
    font-family: 'Prompt';
    src: url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .promotion-content {
        flex-direction: column;
    }
    
    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px 5px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .sticky-btn {
        font-size: 0.8rem;
        padding: 8px 5px;
    }
}

/* About Section */
.about-section {
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.about-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #36d6ff);
}

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

.about-text {
    max-width: 900px;
    margin: 0 auto 50px;
}

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

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

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

.feature-card {
    background: linear-gradient(145deg, rgba(22, 39, 54, 0.8), rgba(15, 25, 35, 0.8));
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

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

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

.about-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: rgba(0, 198, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 198, 255, 0.1);
}

.about-conclusion p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

@media (max-width: 992px) {
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-conclusion p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
}

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

.verification-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.verification-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.verification-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.verification-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

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

/* Timeline Styles */
.verification-steps {
    max-width: 900px;
    margin: 0 auto 60px;
}

.step-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline-item:hover .marker-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.timeline-content {
    background: rgba(22, 39, 54, 0.5);
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.verification-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(22, 39, 54, 0.6), rgba(15, 25, 35, 0.6));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.verification-conclusion p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-text);
}

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

/* Responsive styles for verification section */
@media (max-width: 992px) {
    .verification-header h2 {
        font-size: 2.2rem;
    }
    
    .verification-intro p {
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .verification-section {
        padding: 80px 0;
    }
    
    .verification-header h2 {
        font-size: 2rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .marker-icon {
        width: 40px;
        height: 40px;
    }
    
    .marker-icon i {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .verification-conclusion {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .verification-header h2 {
        font-size: 1.8rem;
    }
    
    .verification-intro p {
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .verification-conclusion p {
        font-size: 1rem;
    }
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 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='%2300c6ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

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

.reviews-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

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

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

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

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

.reviews-intro p:last-child {
    font-weight: 500;
    margin-top: 20px;
    color: var(--primary-color);
}

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

/* Benefits Cards */
.reviews-benefits {
    margin-bottom: 60px;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(22, 39, 54, 0.6);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(121, 40, 202, 0.1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(121, 40, 202, 0.2));
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

/* Sources Section */
.reviews-sources {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: linear-gradient(145deg, rgba(15, 25, 35, 0.7), rgba(22, 39, 54, 0.7));
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sources-content {
    flex: 1;
    min-width: 300px;
}

.sources-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

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

.sources-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.sources-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.source-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(121, 40, 202, 0.1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.source-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.source-icon:hover {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(121, 40, 202, 0.2));
    transform: translateY(-5px);
}

.source-icon:hover i {
    color: white;
}

.sources-image {
    flex: 1;
    min-width: 300px;
}

.sources-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sources-image img:hover {
    transform: scale(1.03);
}

/* Conclusion */
.reviews-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(0, 198, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 198, 255, 0.1);
    position: relative;
}

.reviews-conclusion::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(0, 198, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.reviews-conclusion::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 6rem;
    color: rgba(0, 198, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.reviews-conclusion p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    z-index: 2;
}

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

/* Responsive styles for reviews section */
@media (max-width: 992px) {
    .reviews-header h2 {
        font-size: 2.2rem;
    }
    
    .reviews-intro p {
        font-size: 1.1rem;
    }
    
    .sources-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.6rem;
    }
    
    .sources-icons {
        justify-content: center;
    }
    
    .reviews-conclusion {
        padding: 30px 20px;
    }
    
    .reviews-conclusion::before,
    .reviews-conclusion::after {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .reviews-intro p {
        font-size: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .sources-content h3 {
        font-size: 1.4rem;
    }
    
    .source-icon {
        width: 50px;
        height: 50px;
    }
    
    .source-icon i {
        font-size: 1.4rem;
    }
    
    .reviews-conclusion p {
        font-size: 1rem;
    }
}

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

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

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

.techniques-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.techniques-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.techniques-main {
    flex: 2;
    min-width: 300px;
}

.techniques-intro {
    margin-bottom: 40px;
}

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

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

/* Tips List Styles */
.techniques-tips {
    background: rgba(22, 39, 54, 0.4);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.tip-item {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-left: 3px solid transparent;
}

.tip-item:hover {
    transform: translateX(10px);
    border-left: 3px solid var(--primary-color);
    background: rgba(0, 198, 255, 0.05);
}

.tip-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(121, 40, 202, 0.1));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.tip-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tip-item:hover .tip-icon {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(121, 40, 202, 0.2));
    transform: scale(1.1) rotate(5deg);
}

.tip-item:hover .tip-icon i {
    color: white;
}

.tip-content {
    flex: 1;
}

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

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

/* Sidebar Styles */
.techniques-sidebar {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: linear-gradient(145deg, rgba(22, 39, 54, 0.8), rgba(15, 25, 35, 0.8));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
}

.card-content {
    padding: 25px;
}

.card-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin: 0;
}

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

/* Jackpot Card Specific */
.jackpot-card .card-header {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.jackpot-card:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Games Card Specific */
.games-card .card-header {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.games-card:hover {
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.2);
}

/* Conclusion Styles */
.techniques-conclusion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.techniques-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.05) 0%, transparent 100%);
    z-index: -1;
    border-radius: 16px;
}

.techniques-conclusion p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-text);
}

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

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

/* Responsive styles for techniques section */
@media (max-width: 992px) {
    .techniques-header h2 {
        font-size: 2.2rem;
    }
    
    .techniques-content {
        flex-direction: column;
    }
    
    .techniques-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .techniques-section {
        padding: 80px 0;
    }
    
    .techniques-header h2 {
        font-size: 2rem;
    }
    
    .tip-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tip-icon {
        margin-bottom: 15px;
    }
    
    .techniques-sidebar {
        grid-template-columns: 1fr;
    }
    
    .techniques-conclusion {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .techniques-header h2 {
        font-size: 1.8rem;
    }
    
    .techniques-intro p {
        font-size: 1rem;
    }
    
    .tip-content h3 {
        font-size: 1.2rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .techniques-conclusion p {
        font-size: 1rem;
    }
}

/* Special Promotions Section */
.special-promotions-section {
    background: linear-gradient(135deg, var(--darker-bg), #0a1520);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

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

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

.promotions-header h2 {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

.promotions-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

.promotions-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

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

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

/* Hexagon Grid */
.promotions-grid {
    margin: 60px 0;
    position: relative;
}

.hexagon-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hexagon-item {
    position: relative;
    width: 100%;
    padding-bottom: 115%; /* Maintain aspect ratio */
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hexagon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(121, 40, 202, 0.1));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    transition: background 0.3s ease;
}

.hexagon-item:hover {
    transform: translateY(-10px);
    z-index: 2;
}

.hexagon-item:hover::before {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(121, 40, 202, 0.2));
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hexagon-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15% 10%;
    text-align: center;
    z-index: 2;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(15, 25, 35, 0.8);
    transition: background 0.3s ease;
}

.hexagon-item:hover .hexagon-content {
    background: rgba(22, 39, 54, 0.9);
}

.hex-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hexagon-item:hover .hex-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 198, 255, 0.3);
}

.hexagon-content h3 {
    font-size: 1.4rem;
    margin: 10px 0;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.hexagon-item:hover .hexagon-content h3 {
    color: white;
}

.hexagon-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

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

/* Promotions Footer */
.promotions-footer {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.promotions-note {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promotions-note::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 198, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.promotions-note::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(0, 198, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.promotions-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

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

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

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

/* Responsive styles for special promotions section */
@media (max-width: 992px) {
    .promotions-header h2 {
        font-size: 2.2rem;
    }
    
    .hexagon-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hexagon-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .special-promotions-section {
        padding: 80px 0;
    }
    
    .promotions-header h2 {
        font-size: 2rem;
    }
    
    .promotions-intro p {
        font-size: 1.1rem;
    }
    
    .hexagon-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .hexagon-item {
        padding-bottom: 100%;
    }
    
    .hex-icon {
        width: 60px;
        height: 60px;
    }
    
    .hex-icon i {
        font-size: 1.6rem;
    }
    
    .promotions-note {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .promotions-header h2 {
        font-size: 1.8rem;
    }
    
    .promotions-intro p {
        font-size: 1rem;
    }
    
    .hexagon-content h3 {
        font-size: 1.2rem;
    }
    
    .hexagon-content p {
        font-size: 0.9rem;
    }
    
    .promotions-note p {
        font-size: 1rem;
    }
}

/* Responsive Navigation */
@media (max-width: 900px) {
    header .container {
        position: relative;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--darker-bg);
        padding: 20px 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 101;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}
