<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: white;
    /* Don't set cursor: none on body globally */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, background 0.3s ease;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    opacity: 1;
    /* Ensure cursor is visible */
    display: block;
}

/* Floating Background Shapes */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite linear;
    opacity: 0.1;
}

.shape:nth-child(1) { width: 200px; height: 200px; top: 20%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { width: 150px; height: 150px; top: 60%; right: 20%; animation-delay: -5s; }
.shape:nth-child(3) { width: 300px; height: 300px; bottom: 10%; left: 30%; animation-delay: -10s; }
.shape:nth-child(4) { width: 100px; height: 100px; top: 10%; right: 10%; animation-delay: -15s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-100px) rotate(90deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
    75% { transform: translateY(-150px) rotate(270deg); }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 50%, rgba(10,10,10,1) 100%);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.glitch-text {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, textGlow 2s ease-in-out infinite alternate;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(255,107,107,0.5), 0 0 40px rgba(78,205,196,0.3); }
    to { text-shadow: 0 0 30px rgba(78,205,196,0.8), 0 0 60px rgba(255,107,107,0.4); }
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    color: #b8b8b8;
    letter-spacing: 0.1em;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
    color: #888;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

.cta-secondary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.cta-primary:hover {
    box-shadow: 0 20px 40px rgba(255,107,107,0.5);
}

.cta-secondary:hover {
    background: #4ecdc4;
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(78,205,196,0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #4ecdc4;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section {
    min-height: 100vh;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.about-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

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

.skill-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(78,205,196,0.2);
    box-shadow: 0 20px 40px rgba(78,205,196,0.2);
}

/* Contact Section */
.contact-section {
    background: radial-gradient(ellipse at center, rgba(255,107,107,0.1) 0%, rgba(10,10,10,1) 70%);
    text-align: center;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255,107,107,0.5);
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}

/* Navigation Dots - FIXED */
.nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    /* Ensure dots are above everything */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(78,205,196,0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(78,205,196,0.2);
    position: relative;
}

.dot:hover {
    background: rgba(78,205,196,0.7);
    transform: scale(1.3);
    border-color: rgba(78,205,196,0.5);
}

.dot.active {
    background: #4ecdc4;
    transform: scale(1.5);
    border-color: #4ecdc4;
    box-shadow: 0 0 20px rgba(78,205,196,0.5);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot.active::after {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .nav-dots {
        display: none;
    }
    
    .custom-cursor {
        display: none;
    }
}
</pre></body></html>