/* Base Styles & Variables */
:root {
    --primary: #3fb072;
    /* New primary green */
    --secondary: #2a7f5c;
    /* Darker green */
    --accent: #f5a623;
    /* Warm accent */
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --light-bg: #f8f9fa;
    --light-card: #ffffff;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    transition: var(--transition);
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition:
        width 0.3s,
        height 0.3s,
        border 0.3s;
    mix-blend-mode: difference;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

body.light-mode header {
    background-color: rgba(248, 249, 250, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* .logo {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        } */

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--primary);
    /* color: inherit; */
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.4rem;
}

.auth-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-outline {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(63, 176, 114, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 176, 114, 0.6);
}

/* Hero Section */
.hero {
    padding: 10rem 5% 5rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-slider {
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.swiper {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide1 {
    background-image: url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80');
    background-size: cover no-repeat;
}

.slide2 {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover no-repeat;
}

.slide3 {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1115&q=80');
    background-size: cover no-repeat;
}

.swiper-slide img {
    object-fit: cover;
    ba
}

/* Packages Section */
.section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 1.1rem;
}

.packages-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.package-card {
    background: var(--dark-card);
    border-radius: 1rem;
    padding: 2.5rem;
    width: 350px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.light-mode .package-card {
    background: var(--light-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 127, 92, 0.2);
}

.package-card.popular {
    border: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2.5rem;
    background: var(--accent);
    color: var(--dark-bg);
    padding: 0.25rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.package-price span {
    font-size: 1rem;
    opacity: 0.7;
}

.package-features {
    margin-bottom: 2rem;
}

.package-features li {
    list-style: none;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--secondary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--dark-card);
    border-radius: 1rem;
    padding: 2rem;
    width: 300px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .step-card {
    background: var(--light-card);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(63, 176, 114, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-slider {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .testimonial-card {
    background: var(--light-card);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 1rem;
}

.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
}

body.light-mode .swiper-pagination-bullet {
    background: var(--text-dark);
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .faq-item {
    background: var(--light-card);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(63, 176, 114, 0.1);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* About Us */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact */
.contact-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-card);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: inherit;
    text-decoration: none;
}

body.light-mode .social-link {
    background: #f0f0f0;
}

.social-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 1rem;
}

body.light-mode .contact-form {
    background: var(--light-card);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    transition: var(--transition);
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(42, 127, 92, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 5rem 5% 2rem;
    text-align: center;
}

body.light-mode footer {
    background: #e9ecef;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

body.light-mode .copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1200px) {
    .cursor-ring, .cursor-dot{
        display: none;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        display: flex;
        padding: 1rem;
        align-items: center;
    }

    ul li a {
        color: #3fb072 !important;
    }

    .btn-outline {
        margin-bottom: 10px;
    }

    .theme-toggle {
        margin-top: -14px;
        margin-left: 50px;
    }

    nav {
        margin: 1rem 0;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions {
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}


/* // --------------------------------------------------------------------------------------------------------  // */
/* // --------------------------------------------------------------------------------------------------------  // */
/* // --------------------------------------------------------------------------------------------------------  // */
/* // --------------------------------------------------------------------------------------------------------  // */
/* // --------------------------------------------------------------------------------------------------------  // */
/* // --------------------------------------------------------------------------------------------------------  // */
/* // --------------------------------------------------------------------------------------------------------  // */


/* Testimonial Slider Section */
.testimonial-slider-section {
    background: linear-gradient(135deg, rgba(110, 11, 214, 0.03), rgba(0, 198, 255, 0.03));
    padding-bottom: 6rem;
}

.testimonial-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.testimonial-slide {
    padding: 0;
    height: auto;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: all 0.5s ease;
    transform: scale(0.95);
    opacity: 0.7;
}

body.light-mode .testimonial-card {
    background: var(--light-card);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.swiper-slide-active .testimonial-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.2);
}

.creator-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.creator-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

.creator-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.creator-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.creator-niche {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 198, 255, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
}

.platform-tag i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

body.light-mode .testimonial-stats {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 2rem 0;
    padding: 0 1rem;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-quote::before {
    top: -1.5rem;
    left: -0.5rem;
}

.testimonial-quote::after {
    bottom: -2.5rem;
    right: -0.5rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.stars {
    color: var(--accent);
    margin-right: 0.75rem;
    position: relative;
}

.stars i {
    margin: 0 0.1rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: var(--secondary);
    background: rgba(0, 198, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

body.light-mode .swiper-pagination-bullet {
    background: var(--text-dark);
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Star Animation */
@keyframes starPop {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.stars i {
    display: inline-block;
    animation: starPop 0.5s ease backwards;
}

.stars i:nth-child(1) {
    animation-delay: 0.1s;
}

.stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.stars i:nth-child(3) {
    animation-delay: 0.3s;
}

.stars i:nth-child(4) {
    animation-delay: 0.4s;
}

.stars i:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slider-container {
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .creator-header {
        flex-direction: column;
        text-align: center;
    }

    .creator-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .testimonial-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-card);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 2rem;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    color: inherit;
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
    }

    .header-actions .auth-buttons {
        display: none;
    }
}