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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            line-height: 1.6;
        }

        /* Header Strip */
        .header-strip {
            background: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1000;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #64ffda;
        }

        .header-info {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #64ffda;
        }

        .contact-info {
            color: #cccccc;
            font-size: 0.9rem;
        }

        /* Carousel Banner */
        .carousel-banner {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            display: none;
            position: relative;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .carousel-slide.active {
            display: block;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 3rem 2rem 2rem;
            z-index: 2;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            color: #64ffda;
            margin-bottom: 1rem;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #ffffff;
            max-width: 600px;
        }

        .slide-buttons {
            display: flex;
            gap: 1rem;
        }

        .slide-btn {
            padding: 0.8rem 2rem;
            background: rgba(100, 255, 218, 0.1);
            color: #64ffda;
            text-decoration: none;
            border-radius: 5px;
            border: 2px solid #64ffda;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .slide-btn:hover {
            background: #64ffda;
            color: #0c0c0c;
            transform: translateY(-2px);
        }

        .slide-btn.primary {
            background: #64ffda;
            color: #0c0c0c;
        }

        .slide-btn.primary:hover {
            background: rgba(100, 255, 218, 0.8);
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 3;
            transition: background 0.3s ease;
        }

        .carousel-nav:hover {
            background: rgba(100, 255, 218, 0.3);
            color: #64ffda;
        }

        .carousel-nav.prev {
            left: 2rem;
        }

        .carousel-nav.next {
            right: 2rem;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: #64ffda;
        }

        /* Main Content */
        main {
            padding: 2rem 0;
        }

        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #64ffda;
            text-align: center;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 50px;
            height: 3px;
            background: #64ffda;
            transform: translateX(-50%);
        }

        /* About Me Section */
        .about-content {
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(100, 255, 218, 0.2);
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .skill-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(100, 255, 218, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }



        .skill-item img {
            width: 50px;
            height: 50px;
            margin-bottom: 1rem;
            filter: brightness(0.8);
            transition: filter 0.3s ease;
        }



        .skill-item h3 {
            color: #64ffda;
            font-size: 1rem;
        }

        /* Contact Section */
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-btn {
            padding: 1rem 2rem;
            background: rgba(100, 255, 218, 0.1);
            color: #64ffda;
            text-decoration: none;
            border-radius: 8px;
            border: 2px solid #64ffda;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .contact-btn:hover {
            background: #64ffda;
            color: #0c0c0c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
        }

        /* Footer */
        footer {
            background: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            text-align: center;
            color: #64ffda;
            margin-top: 4rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-strip {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            .header-info {
                flex-direction: column;
                gap: 1rem;
            }

            .carousel-banner {
                height: 50vh;
            }

            .slide-content {
                padding: 2rem 1rem 1rem;
            }

            .slide-content h2 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .carousel-nav {
                padding: 0.5rem;
                font-size: 1.2rem;
            }

            .carousel-nav.prev {
                left: 1rem;
            }

            .carousel-nav.next {
                right: 1rem;
            }

            .slide-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }

            section {
                padding: 2rem 1rem;
            }

            h2 {
                font-size: 2rem;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
        }