/* Base Styles */
:root {
    --primary-color: #00ffaa;
    --secondary-color: #0088ff;
    --dark-color: #0a192f;
    --darker-color: #020c1b;
    --light-color: #e6f1ff;
    --gray-color: #8892b0;
    --border-color: rgba(0, 255, 170, 0.3);
    --font-main: 'Poppins', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--darker-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    padding: 100px 0;
    position: relative;
}

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

.highlight {
    color: var(--primary-color);
}

/* Custom Cursor */
.cursor-dot, .cursor-dot-outline {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-dot-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 255, 170, 0.2);
}

/* Audio Control */
.audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.audio-control button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 25, 47, 0.8);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
}

.audio-control button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.7);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(2, 12, 27, 0.8);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    padding: 15px 50px;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

.logo {
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

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

.primary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: rgba(0, 255, 170, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
    background-color: rgba(0, 136, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.5);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-tech);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.glitch {
    position: relative;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

.typing-container {
    font-size: 24px;
    margin-bottom: 20px;
    height: 30px;
}

.static-text {
    color: var(--light-color);
}

.dynamic-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--secondary-color);
    margin-left: 5px;
    animation: blink 1s infinite;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.profile-frame {
    position: relative;
    width: 350px;
    height: 350px;
}

.profile-image-container {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.3);
}

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

.tech-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circuit-line {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.circuit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 2s infinite;
}

.cl-1 {
    top: 30px;
    right: 0;
    width: 100px;
    height: 2px;
}

.cl-2 {
    bottom: 50px;
    left: 0;
    width: 80px;
    height: 2px;
}

.cl-3 {
    top: 50%;
    right: 0;
    width: 60px;
    height: 2px;
}

.cd-1 {
    top: 30px;
    right: 0;
}

.cd-2 {
    bottom: 50px;
    left: 0;
}

.cd-3 {
    top: 50%;
    right: 0;
}

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

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

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

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

.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    flex: 1;
    margin: 0 10px;
    transition: var(--transition);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
}

/* Skills Section */
.skills {
    background-color: var(--darker-color);
    position: relative;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.skill-category {
    flex: 1;
    min-width: 300px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.skill-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.skill-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    width: 0;
    animation: progress 1.5s ease-in-out forwards;
}

/* Projects Section */
.projects {
    background-color: var(--dark-color);
    position: relative;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 170, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 20px;
}

.project-link, .project-github {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.project-link:hover, .project-github:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--dark-color);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light-color);
}

.project-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tech span {
    font-size: 12px;
    padding: 5px 10px;
    background: rgba(0, 255, 170, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
}

.view-more {
    text-align: center;
}

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

.contact-container {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.contact-info, .contact-form {
    flex: 1;
    max-width: 500px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light-color);
}

.contact-info p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 25, 47, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    transform: translateY(-5px);
}

.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.tiktok:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.telegram:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

.github:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.linkedin:hover {
    background: #0077B5;
    color: white;
    border-color: #0077B5;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--light-color);
    font-size: 16px;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--gray-color);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 170, 0.3);
}

.form-group input:focus ~ label, 
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: var(--darker-color);
    padding: 0 5px;
    color: var(--primary-color);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: transparent;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-color);
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--gray-color);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Animations */
@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    5% {
        clip: rect(70px, 9999px, 71px, 0);
    }
    10% {
        clip: rect(29px, 9999px, 83px, 0);
    }
    15% {
        clip: rect(2px, 9999px, 13px, 0);
    }
    20% {
        clip: rect(23px, 9999px, 69px, 0);
    }
    25% {
        clip: rect(54px, 9999px, 70px, 0);
    }
    30% {
        clip: rect(10px, 9999px, 60px, 0);
    }
    35% {
        clip: rect(46px, 9999px, 62px, 0);
    }
    40% {
        clip: rect(45px, 9999px, 58px, 0);
    }
    45% {
        clip: rect(45px, 9999px, 39px, 0);
    }
    50% {
        clip: rect(89px, 9999px, 99px, 0);
    }
    55% {
        clip: rect(4px, 9999px, 50px, 0);
    }
    60% {
        clip: rect(89px, 9999px, 36px, 0);
    }
    65% {
        clip: rect(99px, 9999px, 3px, 0);
    }
    70% {
        clip: rect(76px, 9999px, 78px, 0);
    }
    75% {
        clip: rect(73px, 9999px, 79px, 0);
    }
    80% {
        clip: rect(79px, 9999px, 83px, 0);
    }
    85% {
        clip: rect(33px, 9999px, 47px, 0);
    }
    90% {
        clip: rect(56px, 9999px, 64px, 0);
    }
    95% {
        clip: rect(46px, 9999px, 65px, 0);
    }
    100% {
        clip: rect(44px, 9999px, 87px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(12px, 9999px, 52px, 0);
    }
    5% {
        clip: rect(65px, 9999px, 98px, 0);
    }
    10% {
        clip: rect(7px, 9999px, 46px, 0);
    }
    15% {
        clip: rect(65px, 9999px, 91px, 0);
    }
    20% {
        clip: rect(80px, 9999px, 73px, 0);
    }
    25% {
        clip: rect(33px, 9999px, 97px, 0);
    }
    30% {
        clip: rect(56px, 9999px, 62px, 0);
    }
    35% {
        clip: rect(46px, 9999px, 72px, 0);
    }
    40% {
        clip: rect(15px, 9999px, 87px, 0);
    }
    45% {
        clip: rect(50px, 9999px, 31px, 0);
    }
    50% {
        clip: rect(51px, 9999px, 40px, 0);
    }
    55% {
        clip: rect(36px, 9999px, 21px, 0);
    }
    60% {
        clip: rect(64px, 9999px, 35px, 0);
    }
    65% {
        clip: rect(5px, 9999px, 51px, 0);
    }
    70% {
        clip: rect(46px, 9999px, 40px, 0);
    }
    75% {
        clip: rect(5px, 9999px, 44px, 0);
    }
    80% {
        clip: rect(90px, 9999px, 99px, 0);
    }
    85% {
        clip: rect(29px, 9999px, 9px, 0);
    }
    90% {
        clip: rect(18px, 9999px, 19px, 0);
    }
    95% {
        clip: rect(62px, 9999px, 22px, 0);
    }
    100% {
        clip: rect(61px, 9999px, 47px, 0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

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

@keyframes progress {
    0% {
        width: 0;
    }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .typing-container {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .typing-container {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        margin: 0;
    }
    
    .profile-frame {
        width: 280px;
        height: 280px;
    }
    
    .profile-image-container {
        width: 250px;
        height: 250px;
    }
}

/* Make particles.js canvas non-interactive */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* Send to background */
  pointer-events: none; /* Allow clicks to pass through */
}
