/* Update Root Variables for Purple Neon Theme */
:root {
    --primary-color: #8bc34a;    /* Light Green */
    --secondary-color: #f8bbd0;  /* Baby Pink */
    --accent-color: #4caf50;     /* Darker Green */
    --background-color: #f0f4c3; /* Light Green Background */
    --dark-bg: #c8e6c9;          /* Light Green Background */
    --text-color: #212121;       /* Dark Text */
    --text-muted: #757575;       /* Muted Text */
    --glass-bg: rgba(240, 244, 195, 0.9); /* Match background color for invisibility */
    --glass-border: rgba(139, 195, 74, 0.2);
    --glass-shadow: rgba(139, 195, 74, 0.15);
    --neon-glow: 0 0 20px rgba(139, 195, 74, 0.5),
                 0 0 40px rgba(139, 195, 74, 0.3);
    --neon-text-glow: 0 0 10px rgba(139, 195, 74, 0.8),
                      0 0 20px rgba(139, 195, 74, 0.5);
    --card-gradient: linear-gradient(135deg, 
        rgba(139, 195, 74, 0.1), 
        rgba(248, 187, 208, 0.1)
    );
    --text-gradient: linear-gradient(135deg,
        var(--primary-color),
        var(--secondary-color)
    );
}

/* Add Cyberpunk Font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cyberpunk Grid Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(184, 41, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 41, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--neon-glow);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Styles */
header.glass {
    background-color: var(--glass-bg);
    box-shadow: 0 2px 4px var(--glass-shadow);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px var(--primary-color),
                 0 0 30px var(--primary-color);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header.glass {
        padding: 0.5rem 1rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .logo span {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .desktop-nav {
        gap: 0.5rem;
    }

    .desktop-nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    /* Adjust main content margin */
main {
        margin-top: 0.5rem;
}

.container {
        padding: 0.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-gradient);
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-text-glow);
    letter-spacing: 3px;
    animation: textPulse 4s infinite;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(184, 41, 255, 0.4);
    transition: all 0.3s ease;
    animation: imagePulse 4s infinite;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary-color);
}

/* Enhanced Cards */
.file-card, .doc-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    height: 100%;
}

.file-image, .doc-image {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Enhanced Buttons */
.btn, .download-btn, .doc-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg,
        rgba(184, 41, 255, 0.2),
        rgba(112, 0, 255, 0.2)
    );
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--neon-glow);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.btn:hover, .download-btn:hover, .doc-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    border-color: var(--primary-color);
    background: linear-gradient(135deg,
        rgba(184, 41, 255, 0.3),
        rgba(112, 0, 255, 0.3)
    );
    box-shadow: 0 0 30px rgba(184, 41, 255, 0.5);
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        height: 45px;
    padding: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-container {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .logo span {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-color);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-shadow: none;
    }

    .desktop-nav {
        display: flex;
        gap: 0.5rem;
        flex: 1;
        justify-content: flex-end;
    }

    .desktop-nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    color: var(--text-color);
    text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
        color: var(--primary-color);
        background: var(--card-gradient);
    }

    /* Remove mobile nav */
    .mobile-nav {
        display: none;
    }

    /* Adjust main content margin */
    main {
        margin-top: 45px;
    padding: 0.5rem;
    }
}

/* Animations */
@keyframes neonPulse {
    0% { text-shadow: var(--neon-text-glow); }
    50% { text-shadow: 0 0 20px var(--primary-color); }
    100% { text-shadow: var(--neon-text-glow); }
}

@keyframes borderGlow {
    0% { border-color: var(--glass-border); }
    50% { border-color: var(--primary-color); }
    100% { border-color: var(--glass-border); }
}

/* Active nav link styles */
.desktop-nav a.active {
    color: var(--primary-color);
    background: var(--card-gradient);
    text-shadow: var(--neon-text-glow);
}

/* Consistent animation classes */
.animate {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Ensure consistent spacing across pages */
    .container {
    max-width: 1200px;
    margin: 0 auto;
        padding: 1rem;
    display: grid;
    gap: 1rem;
}

    section {
        position: relative;
    padding: 1.5rem 1rem;
        margin: 0.5rem 0;
        border-radius: 20px;
        overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 1rem 0.5rem;
        margin: 0.3rem 0;
        border-radius: 15px;
    }

    .container {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    /* VPN Files Section Mobile */
.vpn-files {
        gap: 1rem;
}

.vpn-files h2 {
    font-size: 1.2rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    cursor: pointer;
}

    .vpn-files h2::after {
        content: '⌄';
        font-size: 1.4rem;
    transition: transform 0.3s ease;
}

    .vpn-files.collapsed h2::after {
    transform: rotate(180deg);
}

.files-container {
    display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0.5rem;
        gap: 1rem;
        margin: 0 -0.5rem;
    }

    .vpn-files.collapsed .files-container {
        max-height: 0;
    }

    /* Card size reduction */
.file-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 1.5rem;
        margin: 0.5rem;
}

.file-image {
        width: 60px;
        height: 60px;
        padding: 0.8rem;
    }

    .file-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .file-card p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .file-details {
        font-size: 0.7rem;
        margin: 0.3rem 0;
    }

    .file-features ul li {
        font-size: 0.8rem;
        margin: 0.3rem 0;
}

.download-btn {
        padding: 0.8rem 1.2rem;
        min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    }

    /* Other sections size reduction */
    .hero {
        min-height: auto;
        padding: 1rem 0.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .profile-image {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
        border-width: 2px;
    }

    .hero-buttons {
    display: flex;
    justify-content: center;
        gap: 0.5rem;
    }

    .hero-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-height: 40px;
    }

    /* Optimize animations for mobile */
    .hero h1 {
        animation: textPulse 6s infinite;
    }

    .profile-image {
        animation: imagePulse 6s infinite;
    }

    @keyframes textPulse {
        0%, 100% { text-shadow: 0 0 5px rgba(184, 41, 255, 0.6); }
        50% { text-shadow: 0 0 10px rgba(184, 41, 255, 0.4); }
    }

    @keyframes imagePulse {
        0%, 100% { box-shadow: 0 0 10px rgba(184, 41, 255, 0.3); }
        50% { box-shadow: 0 0 20px rgba(184, 41, 255, 0.4); }
    }

    .docs-tutorials {
    padding: 0.8rem;
}

    .doc-card {
        padding: 0.8rem;
    }
}

/* New Animations */
@keyframes borderPulse {
    0%, 100% { border-color: rgba(184, 41, 255, 0.2); }
    50% { border-color: rgba(184, 41, 255, 0.5); }
}

@keyframes textPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(184, 41, 255, 0.8); }
    50% { text-shadow: 0 0 20px rgba(184, 41, 255, 0.5); }
}

@keyframes imagePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(184, 41, 255, 0.4); }
    50% { box-shadow: 0 0 40px rgba(184, 41, 255, 0.6); }
}

/* Enhanced Section Headers */
section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #000000;
    letter-spacing: 2px;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .desktop-nav a.active {
        background: linear-gradient(135deg,
            rgba(184, 41, 255, 0.2),
            rgba(112, 0, 255, 0.2)
        );
        box-shadow: var(--neon-glow);
    }

    .file-card, .doc-card {
        background: linear-gradient(135deg,
            rgba(184, 41, 255, 0.1),
            rgba(112, 0, 255, 0.1)
        );
    }
}

/* VPN Files Section */
.vpn-files {
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.files-container.sliding-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

/* Mobile Styles for VPN Files */
@media (max-width: 768px) {
    .vpn-files {
        padding: 1rem;
    }

    .files-container.sliding-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding: 0.3rem;
        margin: 0 -0.2rem;
    }

    .files-container.sliding-wrapper::-webkit-scrollbar {
        display: none;
}

.file-card {
        min-width: calc(100% - 2rem);
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin: 0.3rem;
        transform: translateX(100%);
        animation: slideIn 0.3s forwards;
    }

    .file-card-header {
    display: flex;
    align-items: center;
        gap: 1rem;
}

.file-image {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }

    .file-content {
        margin-top: 1rem;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeIn 0.3s 0.2s forwards;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
}

.file-features ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
}

.file-features li {
        font-size: 0.9rem;
    display: flex;
    align-items: center;
        gap: 0.5rem;
}

    .download-btn {
    width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    /* Enhanced slide indicators */
    .slide-indicators {
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
    display: flex;
        justify-content: center;
    gap: 0.5rem;
        padding: 0.5rem;
    }

    .slide-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--glass-border);
    transition: all 0.3s ease;
        cursor: pointer;
    }

    .slide-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--primary-color);
        box-shadow: 0 0 10px var(--primary-color);
    }
}

/* Documentation Section */
.docs-tutorials {
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.docs-container.sliding-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

/* Mobile Styles for Docs */
@media (max-width: 768px) {
    .docs-tutorials {
        padding: 1rem;
    }

    .docs-container.sliding-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding: 0.3rem;
        margin: 0 -0.2rem;
    }

    .docs-container.sliding-wrapper::-webkit-scrollbar {
        display: none;
    }

    .doc-card {
        min-width: calc(100% - 2rem);
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin: 0.3rem;
        transform: translateX(100%);
        animation: slideIn 0.3s forwards;
    }

    .doc-card-header {
    display: flex;
    align-items: center;
        gap: 1rem;
    }

    .doc-image {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }

    .doc-content {
        margin-top: 1rem;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeIn 0.3s 0.2s forwards;
    }

    .doc-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .doc-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }
}

/* Modern Grid Layout for Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 1rem;
    transition: all 0.3s ease;
}

/* Pricing Grid Layout */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
}

/* Contact Section Layout */
.contact-section {
    display: grid;
    gap: 1rem;
    padding: 1.5rem 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

/* Add smooth transitions */
.file-card, .doc-card, .feature-card, .price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .features-grid,
    .pricing-container {
    display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0.3rem;
        gap: 0.5rem;
        margin: 0 -0.2rem;
    }

    .feature-card,
    .price-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 0.8rem;
        margin: 0.3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Enhanced Image Handling */
.file-image img, 
.doc-image img, 
.app-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Background Image Handling */
.section-bg {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate;
}

.section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 0, 20, 0.85),
        rgba(20, 0, 41, 0.95)
    );
    z-index: -1;
}

/* App Cards Specific */
.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.app-image {
    width: 100px;
    height: 100px;
    padding: 1rem;
    background: rgba(184, 41, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Page Specific */
.profile-section {
    text-align: center;
    padding: 2rem;
}

.profile-section .profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid var(--primary-color);
    box-shadow: var(--neon-glow);
}

.profile-section .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .app-image {
        width: 80px;
        height: 80px;
        padding: 0.8rem;
    }

    .profile-section .profile-image {
        width: 120px;
        height: 120px;
    }

    .app-card {
        min-width: 280px;
        scroll-snap-align: start;
        padding: 1.5rem;
    }
}

/* Mobile Slide Mode */
@media (max-width: 768px) {
    /* Container adjustments for sliding */
    .container {
        padding: 0.5rem;
        overflow: hidden;
    }

    /* Horizontal sliding sections */
    .sliding-sections {
    display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0 -0.5rem;
    }

    /* Section adjustments for sliding */
    .sliding-sections section {
        min-width: calc(100% - 2rem);
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        transform: translateX(100%);
        animation: slideIn 0.3s forwards;
    }

    /* Hide scrollbar but keep functionality */
    .sliding-sections {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .sliding-sections::-webkit-scrollbar {
        display: none;
    }

    /* Slide indicators */
    .slide-indicators {
    display: flex;
    justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .slide-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--glass-border);
        transition: all 0.3s ease;
    }

    .slide-dot.active {
        background: var(--primary-color);
        box-shadow: 0 0 10px var(--primary-color);
    }

    /* Slide animations */
    @keyframes slideIn {
    from {
            transform: translateX(100%);
        opacity: 0;
    }
    to {
            transform: translateX(0);
        opacity: 1;
        }
    }
}

/* Why Choose VPN Section - Mobile Adjustments */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 1rem;
    }

    .section-header {
        margin-bottom: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0;
        overflow: visible;
    }

    .feature-card {
        min-width: unset;
        padding: 0.8rem;
        margin: 0;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .feature-card .feature-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .feature-card h3 {
        font-size: 0.9rem;
        margin: 0;
    }

    .feature-card p {
        font-size: 0.75rem;
        margin: 0;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Apps Grid Layout */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

/* Pricing Overlay */
.pricing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 0, 20, 0.9);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-overlay.active {
    display: flex;
        opacity: 1;
}

.pricing-modal {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    animation: modalSlideIn 0.3s ease;
}

.close-pricing {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
        transition: all 0.3s ease;
    }

.close-pricing:hover {
    transform: scale(1.1);
    text-shadow: var(--neon-text-glow);
}

.pricing-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.pricing-section.active {
    display: block;
}

/* Animations */
@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .pricing-modal {
        width: 95%;
        padding: 1.5rem;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Apps Mobile Sliding */
@media (max-width: 768px) {
    .apps-grid.sliding-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding: 0.3rem;
        margin: 0 -0.2rem;
    }

    .apps-grid.sliding-wrapper::-webkit-scrollbar {
        display: none;
    }

    .app-card {
        min-width: calc(100% - 2rem);
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin: 0.3rem;
        transform: translateX(100%);
        animation: slideIn 0.3s forwards;
    }

    .app-card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .app-image {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }

    .app-content {
        margin-top: 1rem;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeIn 0.3s 0.2s forwards;
    }

    .app-features ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .app-features li {
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .view-pricing-btn {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Mobile Section Adjustments */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    /* Apps section */
    .apps-container {
        padding: 1rem 0.5rem;
    }

    .apps-container h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    text-align: center;
    }

    .app-card {
        min-height: auto;
        padding: 1rem;
    }

    .app-card-header {
        margin-bottom: 0.5rem;
    }

    .app-image {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }

    .app-card h3 {
        font-size: 1rem;
    }

    .app-card p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .app-features ul {
        margin: 0.5rem 0;
    }

    .app-features li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }

    /* Coming Soon section */
    .coming-soon-section {
        padding: 1rem 0.5rem;
    }

    .coming-soon-section h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .coming-soon-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
        padding: 0;
    }

    .coming-soon-card {
        padding: 0.8rem;
    }

    .coming-soon-card .app-image {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }

    .coming-soon-card p {
        font-size: 0.75rem;
    }

    /* Slide indicators adjustment */
    .slide-indicators {
        margin: 0.5rem 0;
        padding: 0;
    }

    .slide-dot {
        width: 6px;
        height: 6px;
    }

    .slide-dot.active {
        width: 18px;
    }

    /* Button adjustments */
    .view-pricing-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        height: 36px;
    }
}

/* VPN Apps Section Mobile Adjustments */
@media (max-width: 768px) {
    .apps-container {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .apps-container h2 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
        letter-spacing: 1px;
    }

    .app-card {
        min-height: auto;
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .app-card-header {
        margin-bottom: 0.3rem;
    }

    .app-image {
        width: 35px;
        height: 35px;
        padding: 0.3rem;
    }

    .app-card h3 {
        font-size: 0.9rem;
        margin: 0;
    }

    .app-card p {
        font-size: 0.75rem;
        margin: 0;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .app-features {
        margin: 0.3rem 0;
    }

    .app-features ul {
        margin: 0;
        padding-left: 0.5rem;
    }

    .app-features li {
        font-size: 0.75rem;
        padding: 0.2rem 0;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .view-pricing-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        height: 32px;
        margin-top: 0.3rem;
    }

    /* Slide indicators for apps */
    .apps-container .slide-indicators {
        margin: 0.3rem 0 0;
    }

    .apps-container .slide-dot {
        width: 5px;
        height: 5px;
    }

    .apps-container .slide-dot.active {
        width: 15px;
    }

    /* Adjust spacing between cards */
    .apps-grid.sliding-wrapper {
        gap: 0.5rem;
        padding: 0.3rem;
    }

    .app-card {
        min-width: calc(100% - 1rem);
        margin: 0.3rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Global container adjustments */
    .container {
        padding: 0.3rem;
        gap: 0.5rem;
    }

    /* All sections common adjustments */
    section {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    section h2 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    text-align: center;
        letter-spacing: 1px;
    }

    /* Card common styles */
    .app-card, .file-card, .doc-card {
        min-height: auto;
        padding: 0.6rem;
        gap: 0.4rem;
        min-width: calc(100% - 0.8rem);
        margin: 0.2rem;
    }

    /* Card headers */
    .card-header, .app-card-header, .file-card-header {
        margin-bottom: 0.3rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Images in cards */
    .app-image, .file-image, .doc-image {
        width: 32px;
        height: 32px;
        padding: 0.2rem;
        margin: 0;
        flex-shrink: 0;
    }

    /* Text elements */
    h3 {
        font-size: 0.85rem;
        margin: 0;
    }

    p {
        font-size: 0.7rem;
        margin: 0;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Features lists */
    .app-features, .file-features {
        margin: 0.2rem 0;
    }

    .app-features ul, .file-features ul {
        margin: 0;
        padding-left: 0.4rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .app-features li, .file-features li {
        font-size: 0.7rem;
        padding: 0.2rem 0;
    display: flex;
    align-items: center;
        gap: 0.3rem;
    }

    /* Buttons */
    .btn, .view-pricing-btn, .download-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        height: 28px;
        margin-top: 0.2rem;
    width: 100%;
    justify-content: center;
    }

    /* Sliding containers */
    .sliding-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0.4rem;
        padding: 0.2rem;
        margin: 0 -0.2rem;
    }

    .sliding-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Slide indicators */
    .slide-indicators {
        margin: 0.3rem 0 0;
        padding: 0;
    }

    .slide-dot {
        width: 4px;
        height: 4px;
    }

    .slide-dot.active {
        width: 12px;
    }

    /* Coming soon section */
    .coming-soon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
        padding: 0;
    }

    .coming-soon-card {
        padding: 0.5rem;
    }

    .coming-soon-card p {
        font-size: 0.7rem;
    }
}

/* Contact Page Enhancements */
.profile-link {
    display: block;
    transition: transform 0.3s ease;
}

.profile-link:hover {
    transform: scale(1.05);
}

.profile-image {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.profile-image::after {
    content: 'Click to Chat';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(184, 41, 255, 0.8);
    color: white;
    padding: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.profile-image:hover::after {
    transform: translateY(0);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    background: linear-gradient(135deg,
        rgba(184, 41, 255, 0.2),
        rgba(112, 0, 255, 0.2)
    );
}

.contact-btn .icon {
    font-size: 1.5rem;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .profile-image::after {
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    .contact-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .contact-btn .icon {
        font-size: 1.2rem;
    }

    .quick-contact {
        gap: 0.8rem;
    }
}

/* Contact Icons */
.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-icon {
        width: 20px;
        height: 20px;
    }
}

/* Apps Section Styles */
.apps-container {
    padding: 2rem;
}

.apps-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: var(--neon-text-glow);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.app-image {
    width: 80px;
    height: 80px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.app-card p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.app-features {
    width: 100%;
    margin: 1rem 0;
}

.app-features ul {
    list-style: none;
    padding: 0;
}

.app-features li {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Price List Styles */
.price-list {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.price-option {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-option:last-child {
    margin-bottom: 0;
}

.price-option:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.price-option h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price-option .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-option .buy-btn {
    width: 100%;
    padding: 0.5rem;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .pricing-modal {
        padding: 1.5rem;
        margin: 1rem;
    }

    .price-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-option {
        padding: 1rem;
    }

    .price-option .price {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Pricing Page Styles */
.pricing-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--neon-glow);
    border-radius: 15px;
}

.pricing-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000; /* Black text for section headers */
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.app-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.selector-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #000000; /* Black text on buttons */
    cursor: pointer;
    transition: all 0.3s ease;
}

.selector-btn.active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.pricing-section {
    display: none;
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--neon-glow);
    border-radius: 15px;
}

.pricing-section.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.price-card {
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--neon-glow);
    border-radius: 15px;
}

.price-card h3 {
    margin-bottom: 1rem;
    color: #000000; /* Black text for card titles */
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #000000; /* Black text for prices */
}

.features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    color: #000000; /* Black text for features */
}

.features li {
    margin: 0.5rem 0;
    color: #000000; /* Ensure list items are black */
}

.buy-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color); /* Baby pink buttons */
    color: #000000; /* Black text on buttons */
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
    border: 1px solid var(--glass-border);
}

.buy-btn:hover {
    background: rgba(248, 187, 208, 0.8); /* Darker baby pink on hover */
    box-shadow: 0 0 30px rgba(248, 187, 208, 0.5);
}

/* Mobile Adjustments for Header */
@media (max-width: 768px) {
    .logo {
        display: flex;
        align-items: center;
        gap: 0.3rem; /* Reduce gap for compactness */
    }

    .logo img {
        width: 28px; /* Slightly smaller for better fit */
        height: 28px;
    }

    .logo span {
        font-size: 0.9rem; /* Smaller font size for mobile */
        font-weight: 600;
        color: var(--text-color);
        text-transform: uppercase;
        letter-spacing: 0.5px; /* Slightly reduced letter spacing */
        text-shadow: none;
    }

    .nav-container {
        padding: 0.3rem 0.8rem; /* Reduce padding for compactness */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .desktop-nav {
        display: flex;
        gap: 0.5rem; /* Reduce gap between nav items */
    }

    .desktop-nav a {
        font-size: 0.8rem; /* Smaller font size for nav links */
        padding: 0.3rem 0.5rem; /* Reduce padding for nav links */
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Adjustments for Pricing Page */
@media (max-width: 768px) {
    .pricing-header {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .pricing-header h1 {
        font-size: 1.5rem; /* Adjust font size for mobile */
        margin-bottom: 0.5rem;
    }

    .app-selector {
        flex-direction: column; /* Stack buttons vertically */
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .selector-btn {
        font-size: 0.9rem; /* Adjust font size for buttons */
        padding: 0.6rem 1rem; /* Adjust padding for buttons */
    }

    .pricing-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 1rem;
    }

    .price-card {
        padding: 1rem;
    }

    .price-card h3 {
        font-size: 1.2rem; /* Adjust font size for card titles */
    }

    .price {
        font-size: 1.5rem; /* Adjust font size for prices */
    }

    .features li {
        font-size: 0.9rem; /* Adjust font size for list items */
    }

    .buy-btn {
        font-size: 0.9rem; /* Adjust font size for buttons */
        padding: 0.6rem 1rem; /* Adjust padding for buttons */
    }
}

/* Remove margin between header and first section */
header + main {
    margin-top: 0; /* Remove any top margin */
}

main .container > section:first-child {
    margin-top: 0; /* Ensure no margin at the top of the first section */
    padding-top: 0; /* Remove any top padding if necessary */
}

/* Mobile Adjustments for Sliding Section */
@media (max-width: 768px) {
    .sliding-wrapper {
        padding: 0.5rem; /* Reduce padding for compactness */
        overflow-x: auto; /* Allow horizontal scrolling if needed */
    }

    .file-card, .doc-card {
        min-width: 90%; /* Reduce width to fit better on mobile */
        margin: 0.5rem auto; /* Center cards and reduce margin */
    }

    .file-card-header, .doc-card-header {
        display: flex;
        align-items: center;
        gap: 0.5rem; /* Reduce gap for compactness */
    }

    .file-logo, .doc-logo {
        width: 50px; /* Adjust image size for better fit */
        height: 50px;
    }

    .file-card h3, .doc-card h3 {
        font-size: 1rem; /* Adjust font size for titles */
    }

    .file-content p, .doc-content p {
        font-size: 0.8rem; /* Adjust font size for descriptions */
    }

    .file-features li, .doc-links a {
        font-size: 0.8rem; /* Adjust font size for list items and links */
    }

    .download-btn, .doc-btn {
        font-size: 0.8rem; /* Adjust font size for buttons */
        padding: 0.5rem 1rem; /* Adjust padding for buttons */
    }

    .slide-indicators {
        margin: 0.5rem 0; /* Adjust margin for slide indicators */
    }
}

/* Mobile Adjustments for Our VPN Apps Section */
@media (max-width: 768px) {
    .apps-container {
        padding: 0.5rem; /* Reduce padding for compactness */
        margin: 0;
    }

    .apps-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 0.5rem; /* Reduce gap between app cards */
    }

    .app-card {
        padding: 0.5rem; /* Reduce padding inside app cards */
        margin: 0.2rem 0; /* Reduce margin between app cards */
    }

    .app-image {
        width: 60px; /* Adjust image size for better fit */
        height: 60px;
        margin-bottom: 0.5rem;
    }

    .app-card h3 {
        font-size: 1rem; /* Adjust font size for app titles */
        margin-bottom: 0.3rem;
    }

    .app-card p {
        font-size: 0.8rem; /* Adjust font size for app descriptions */
        margin-bottom: 0.5rem;
    }

    .app-features li {
        font-size: 0.8rem; /* Adjust font size for feature list items */
    }

    .view-pricing-btn {
        font-size: 0.8rem; /* Adjust font size for buttons */
        padding: 0.5rem 1rem; /* Adjust padding for buttons */
    }

    .slide-indicators {
        margin: 0.5rem 0; /* Adjust margin for slide indicators */
    }
}

/* Mobile Adjustments for Width */
@media (max-width: 768px) {
    .apps-container,
    .sliding-wrapper {
        max-width: 100%; /* Ensure full width utilization */
        padding: 0.5rem; /* Reduce padding for compactness */
        margin: 0 auto; /* Center the container */
    }

    .app-card,
    .file-card,
    .doc-card {
        max-width: 95%; /* Reduce width to fit better on mobile */
        margin: 0.5rem auto; /* Center cards and reduce margin */
    }

    .app-image,
    .file-logo,
    .doc-logo {
        width: 50px; /* Adjust image size for better fit */
        height: 50px;
    }

    .app-card h3,
    .file-card h3,
    .doc-card h3 {
        font-size: 1rem; /* Adjust font size for titles */
    }

    .app-card p,
    .file-content p,
    .doc-content p {
        font-size: 0.8rem; /* Adjust font size for descriptions */
    }

    .app-features li,
    .file-features li,
    .doc-links a {
        font-size: 0.8rem; /* Adjust font size for list items and links */
    }

    .view-pricing-btn,
    .download-btn,
    .doc-btn {
        font-size: 0.8rem; /* Adjust font size for buttons */
        padding: 0.5rem 1rem; /* Adjust padding for buttons */
    }

    .slide-indicators {
        margin: 0.5rem 0; /* Adjust margin for slide indicators */
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-color);
        cursor: pointer;
    }

    .desktop-nav {
        display: none; /* Hide by default */
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        right: 0;
        background: var(--glass-bg);
        width: 100%;
        padding: 1rem;
        box-shadow: var(--neon-glow);
        z-index: 1000;
    }

    .desktop-nav a {
        font-size: 1rem;
        padding: 0.5rem;
        text-align: center;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
        color: var(--primary-color);
        background: var(--card-gradient);
    }

    .nav-container.active .desktop-nav {
        display: flex; /* Show when active */
    }
}

