        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: #f0f0f0;
            overflow-x: hidden;
        }

        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
        }

        .content {
            position: relative;
            z-index: 1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(89, 210, 255, 0.2);
            z-index: 100;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #59d2ff;
            display: flex;
            align-items: center;
        }

        .logo-icon {
            margin-right: 0.5rem;
            display: inline-block;
            width: 2rem;
            height: 2rem;
            background: linear-gradient(45deg, #59d2ff, #5e66ff);
            border-radius: 50%;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            width: 1rem;
            height: 1rem;
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 0.25rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #59d2ff, #5e66ff);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #59d2ff;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 2rem;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin-top: 6rem;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #59d2ff, #5e66ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: #a0a0a0;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(90deg, #59d2ff, #5e66ff);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(89, 210, 255, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #59d2ff;
            color: #59d2ff;
            margin-left: 1rem;
        }

        .projects {
            padding: 6rem 2rem 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            color: #fff;
        }

        .section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #59d2ff, #5e66ff);
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(89, 210, 255, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(89, 210, 255, 0.2);
        }

        .project-img {
            width: 100%;
            height: 200px;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            overflow: hidden;
            position: relative;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-icon {
            font-size: 3rem;
            position: absolute;
            right: 1rem;
            bottom: 1rem;
            color: rgba(89, 210, 255, 0.3);
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-content h3 {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
            color: #59d2ff;
        }

        .project-content p {
            color: #a0a0a0;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .project-tag {
            background: rgba(89, 210, 255, 0.1);
            color: #59d2ff;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .about {
            padding: 6rem 2rem;
            background: rgba(10, 10, 10, 0.8);
            margin-left: 20%;
            margin-right: 20%;
        }

        .about-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-card {
            background: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(89, 210, 255, 0.1);
            height: 300px;
            position: relative;
            overflow: hidden;
        }

        .about-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #59d2ff;
        }

        .about-chart {
            width: 100%;
            height: 200px;
            margin-top: 1rem;
            background: rgba(15, 15, 15, 0.5);
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }

        .visualization {
            width: 100%;
            height: 100%;
        }


        .contact {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            width: 100%;
            margin-top: 10px;
            transform: translateY(50px);
        }
        .form-group {
            margin-bottom: 20px;
        }

        input, textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 16px;
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #3b82f6;
        }

        .contact-subtitle {
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 18px;
            line-height: 1.6;
            transform: translateY(30px);
        }
        .cta-button {
            background: linear-gradient(to right, #a855f7, #3b82f6);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 50px;
            cursor: pointer;
            margin-top: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transform: translateY(20px);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }


        footer {
            text-align: center;
            padding: 40px;
            margin-top: 60px;
            background: rgba(15, 12, 41, 0.6);
        }

        .footer-text {
            opacity: 0.7;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(89, 210, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #59d2ff;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: #59d2ff;
            color: #0a0a0a;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            h1 {
                font-size: 2.5rem;
            }

            .hero-content {
                margin-top: 4rem;
            }

            .projects-grid, .dashboard-container, .control-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loading {
            position: relative;
            width: 100%;
            height: 4px;
            background: rgba(89, 210, 255, 0.1);
            overflow: hidden;
            border-radius: 2px;
        }

        .loading::after {
            content: '';
            position: absolute;
            width: 30%;
            height: 100%;
            background: linear-gradient(90deg, transparent, #59d2ff, transparent);
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                left: -30%;
            }
            100% {
                left: 100%;
            }
        }

        .glow {
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 5px rgba(89, 210, 255, 0.2);
            }
            to {
                box-shadow: 0 0 20px rgba(89, 210, 255, 0.6);
            }
        }
