    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        overflow-x: hidden;
        color: white;
    }
    
    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }
    
    .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float-particle 15s infinite linear;
    }
    
    .particle:nth-child(odd) {
        background: rgba(255, 255, 255, 0.05);
    }
    
    @keyframes float-particle {
        0% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }
    
    .container {
        position: relative;
        z-index: 10;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .main-content {
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .question {
        font-size: 1.5rem;
        margin-bottom: 30px;
        opacity: 0.9;
        animation: slideIn 1s ease-out 0.5s forwards;
        opacity: 0;
    }
    
    @keyframes slideIn {
        to {
            opacity: 0.9;
        }
    }
    
    .unique-text {
        font-size: 3rem;
        font-weight: bold;
        margin: 40px 0;
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradient-shift 3s ease infinite;
        /* border-right: 3px solid rgba(255,255,255,0.7); */
        white-space: nowrap;
        overflow: hidden;
        min-height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    @keyframes gradient-shift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    @keyframes typewriter {
        from {
            width: 0;
        }
        to {
            width: 100%;
        }
    }
    
    @keyframes blink {
        50% { border-color: transparent; }
    }
    
    .unique-text.typing {
        animation: gradient-shift 3s ease infinite, typewriter 3s steps(50) forwards;
        width: 0;
    }
    
    .unique-text.blinking {
        animation: gradient-shift 3s ease infinite, blink 1s infinite;
        width: 100%;
    }
    
    .character-counter {
        font-size: 1.2rem;
        margin: 20px 0;
        opacity: 0;
        animation: fadeIn 1s ease-out 5s forwards;
    }
    
    @keyframes fadeIn {
        to { opacity: 1; }
    }
    
    .skills-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 50px 0;
        opacity: 0;
        animation: fadeInUp 1s ease-out 6s forwards;
    }
    
    .skill-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .skill-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .skill-icon {
        font-size: 2rem;
        margin-bottom: 10px;
        animation: bounce 2s ease-in-out infinite;
    }
    
    .skill-card:nth-child(2) .skill-icon { animation-delay: 0.2s; }
    .skill-card:nth-child(3) .skill-icon { animation-delay: 0.4s; }
    .skill-card:nth-child(4) .skill-icon { animation-delay: 0.6s; }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }
    
    .skill-name {
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .skill-description {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .cta-section {
        margin-top: 50px;
        opacity: 0;
        animation: fadeInUp 1s ease-out 7s forwards;
    }
    
    .hire-button {
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        color: white;
        border: none;
        padding: 15px 40px;
        font-size: 1.2rem;
        font-weight: bold;
        border-radius: 50px;
        cursor: pointer;
        transform: scale(1);
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        margin: 0 10px;
        animation: pulse 2s infinite;
    }
    
    .hire-button:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }
        50% { box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5); }
        100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }
    }
    
    .contact-info {
        margin-top: 30px;
        font-size: 1.1rem;
        opacity: 0.9;
    }
    
    .cursor-trail {
        position: fixed;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.6), transparent);
        pointer-events: none;
        z-index: 9999;
        animation: fade-trail 0.5s ease-out forwards;
    }
    
    @keyframes fade-trail {
        to {
            transform: scale(0);
            opacity: 0;
        }
    }
    
    .secret-message {
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 0.8rem;
        opacity: 0.3;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 12px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .secret-message:hover {
        opacity: 1;
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.2);
    }
    
    @media (max-width: 768px) {
        .unique-text {
            font-size: 2rem;
        }
        .question {
            font-size: 1.2rem;
        }
        .skills-showcase {
            grid-template-columns: 1fr;
        }
    }
    
    .success-animation {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        z-index: 1000;
        animation: celebration 2s ease-out;
    }
    
    @keyframes celebration {
        0% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0);
        }
        50% {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.2);
        }
        100% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(1);
        }
    }
