        :root {
            --primary: #ffcc00;
            --primary-hover: #ff9900;
            --dark-bg: #0d1117;
            --section-bg: #161b22;
            --text: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text);
            text-align: center;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        nav {
            background-color: rgba(13, 17, 23, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        header {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 60px;
        }

        h1 {
            font-size: 3.5em;
            color: var(--primary);
            text-shadow: 2px 2px 10px rgba(255, 204, 0, 0.7);
            margin-bottom: 20px;
        }

        .subtitle {
            font-size: 1.5em;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: var(--dark-bg);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
            text-decoration: none;
        }

        .cta-button:hover {
            background: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
        }

        section {
            background: var(--section-bg);
            padding: 60px 20px;
            margin: 40px auto;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            max-width: 1000px;
        }

        h2 {
            color: var(--primary);
            font-size: 2.2em;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 25%;
            border-radius: 2px;
        }

        p {
            font-size: 1.2em;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            text-align: left;
        }

        .profile-img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
        }

        .skills-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .skill {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            width: 120px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .skill:hover {
            transform: translateY(-5px);
            background: rgba(255, 204, 0, 0.2);
        }

        .skill i {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            text-align: left;
            border: 1px solid rgba(255, 204, 0, 0.1);
        }

        .project-card.featured {
            background: rgba(255, 204, 0, 0.05);
            border: 1px solid rgba(255, 204, 0, 0.3);
        }

        .project-card.mini-projects {
            background: rgba(255, 255, 255, 0.03);
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: var(--primary);
        }

        .project-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .project-card p {
            font-size: 1em;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .tech-tag {
            background: rgba(255, 204, 0, 0.2);
            color: var(--primary);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8em;
            font-weight: 500;
            border: 1px solid rgba(255, 204, 0, 0.3);
        }

        .project-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .project-links a {
            color: var(--text);
            background: rgba(255, 204, 0, 0.2);
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 0.9em;
            text-decoration: none;
            border: 1px solid rgba(255, 204, 0, 0.3);
        }

        .project-links a:hover {
            background: var(--primary);
            color: var(--dark-bg);
            transform: translateY(-2px);
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .social-links i {
            font-size: 1.5rem;
            color: var(--text);
        }

        .social-links a:hover i {
            color: var(--dark-bg);
        }

        footer {
            background: var(--section-bg);
            padding: 20px;
            margin-top: 40px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .glow-text {
            animation: glow 1.5s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px #ffcc00;
            }

            to {
                text-shadow: 0 0 20px #ff9900;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }

            .nav-links {
                display: none;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                flex-direction: column;
            }

            .footer-content {
                flex-direction: column;
                gap: 10px;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }