    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
            color: #fff;
            scroll-behavior: smooth;
        }

        /* Loading Screen */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #000000 0%, #330000 50%, #660000 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease;
        }

        #loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .welcome-text {
            font-size: 48px;
            font-weight: bold;
            background: linear-gradient(90deg, #ff0000, #ff6b00, #ffdd00, #00ff00, #0099ff, #6600ff, #ff00ff, #ff0000);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 3s linear infinite, fadeInScale 1s ease;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .welcome-subtitle {
            margin-top: 20px;
            font-size: 24px;
            color: #ff6666;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* Floating Tech Icons */
        .floating-icons {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .tech-icon {
            position: absolute;
            font-size: 40px;
            opacity: 0.3;
        }

        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ff3333;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff3333;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #ff3333;
        }

        /* Main Content */
        main {
            position: relative;
            z-index: 2;
        }

        /* Home Section */
        .home {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 50px 50px;
            text-align: center;
        }

        .typing-container {
            margin-bottom: 40px;
        }

        .typing-text {
            font-size: 56px;
            font-weight: bold;
            color: #ff3333;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .home-description {
            font-size: 20px;
            max-width: 800px;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease 0.5s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-icons {
            display: flex;
            gap: 30px;
            animation: fadeInUp 1s ease 1s both;
        }

        .contact-icons a {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 51, 51, 0.1);
            border: 2px solid #ff3333;
            border-radius: 50%;
            text-decoration: none;
            font-size: 28px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .contact-icons a i {
            transition: all 0.3s ease;
        }

        .contact-icons a.instagram i {
            color: #E4405F;
        }

        .contact-icons a.whatsapp i {
            color: #25D366;
        }

        .contact-icons a.discord i {
            color: #5865F2;
        }

        .contact-icons a.github i {
            color: #fff;
        }

        .contact-icons a:hover {
            background: #ff3333;
            transform: scale(1.2) rotate(360deg);
        }

        .contact-icons a:hover i {
            color: #fff;
        }

        /* About Section */
        .about {
            min-height: 100vh;
            padding: 100px 50px;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-left {
            flex: 1;
            animation: slideInLeft 1s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-left h2 {
            font-size: 42px;
            color: #ff3333;
            margin-bottom: 30px;
        }

        .about-left p {
            font-size: 18px;
            line-height: 1.8;
            color: #ccc;
        }

        .about-right {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .profile-img {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #ff3333;
            box-shadow: 0 0 50px rgba(255, 51, 51, 0.5);
        }

        /* Education Section */
        .education {
            min-height: 100vh;
            padding: 100px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Skills Section */
        .skills {
            min-height: 100vh;
            padding: 100px 50px;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-title {
            font-size: 42px;
            text-align: center;
            margin-bottom: 80px;
            color: #ff3333;
        }

        .education-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .education-card {
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 51, 51, 0.05));
            border: 2px solid rgba(255, 51, 51, 0.3);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .education-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 51, 51, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .education-card:hover::before {
            left: 100%;
        }

        .education-card:hover {
            transform: translateY(-10px);
            border-color: #ff3333;
            box-shadow: 0 20px 40px rgba(255, 51, 51, 0.3);
        }

        .education-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .education-card h3 {
            font-size: 28px;
            color: #ff3333;
            margin-bottom: 15px;
        }

        .education-card .year {
            font-size: 18px;
            color: #ff6666;
            font-weight: bold;
        }

        /* Skills Grid */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .skill-card {
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 51, 51, 0.05));
            border: 2px solid rgba(255, 51, 51, 0.3);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .skill-card:hover::before {
            left: 100%;
        }

        .skill-card:hover {
            transform: translateY(-5px);
            border-color: #ff3333;
            box-shadow: 0 15px 30px rgba(255, 51, 51, 0.3);
        }

        .skill-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .skill-icon {
            font-size: 40px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 51, 51, 0.1);
            border-radius: 10px;
        }

        .skill-card h3 {
            font-size: 22px;
            color: #ff3333;
        }

        .skill-bar-container {
            margin-top: 15px;
        }

        .skill-bar-container p {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 8px;
        }

        .skill-bar {
            width: 100%;
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #ff3333, #ff6666);
            border-radius: 10px;
            transition: width 1.5s ease;
            position: relative;
            overflow: hidden;
            width: 0;
        }

        .skill-progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .skill-percentage {
            position: absolute;
            right: 10px;
            top: -25px;
            font-size: 14px;
            color: #ff6666;
            font-weight: bold;
        }

        /* Contact Section */
        .contact {
            min-height: 100vh;
            padding: 100px 50px;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 50px;
            width: 100%;
        }

        .contact-left {
            flex: 1;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 10px;
            color: #ff6666;
            font-size: 16px;
        }

        .form-group input,
        .form-group textarea {
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 51, 51, 0.3);
            border-radius: 10px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff3333;
            background: rgba(255, 255, 255, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            padding: 15px 40px;
            background: #ff3333;
            border: none;
            border-radius: 10px;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #ff0000;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 51, 51, 0.5);
        }

        .contact-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .contact-info {
            text-align: center;
        }

        .contact-info h3 {
            font-size: 32px;
            color: #ff3333;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 18px;
            color: #ccc;
            line-height: 1.8;
        }

        .social-icons-large {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .social-icons-large a {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 51, 51, 0.1);
            border: 3px solid #ff3333;
            border-radius: 20px;
            text-decoration: none;
            font-size: 40px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .social-icons-large a i {
            transition: all 0.3s ease;
        }

        .social-icons-large a.instagram i {
            color: #E4405F;
        }

        .social-icons-large a.whatsapp i {
            color: #25D366;
        }

        .social-icons-large a.discord i {
            color: #5865F2;
        }

        .social-icons-large a.github i {
            color: #fff;
        }

        .social-icons-large a:hover {
            background: #ff3333;
            transform: scale(1.1) rotate(5deg);
        }

        .social-icons-large a:hover i {
            color: #fff;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 30px;
            text-align: center;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .about, .contact-container {
                flex-direction: column;
            }

            .typing-text {
                font-size: 36px;
            }

            .profile-img {
                width: 300px;
                height: 300px;
            }

            .nav-links {
                gap: 20px;
            }

            .nav-links a {
                font-size: 14px;
            }

            header {
                padding: 20px;
            }
        }