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

        :root {
            --font-display: 'Crimson Pro', serif;
            --font-body: 'DM Sans', sans-serif;
            --background: #fef6e4;
            --foreground: #0a1929;
            --card: #ffffff;
            --primary: #0a1929;
            --secondary: #00d4aa;
            --accent: #ff6b6b;
            --muted: #e3d5ca;
            --muted-foreground: #5a6c7d;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Decorative Background */
        .bg-decorations {
            position: fixed;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .bg-circle-1 {
            position: absolute;
            top: 80px;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
            opacity: 0.1;
            animation: float-1 20s ease-in-out infinite;
        }

        .bg-circle-2 {
            position: absolute;
            bottom: 80px;
            left: -5%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            opacity: 0.1;
            animation: float-2 15s ease-in-out infinite;
        }

        @keyframes float-1 {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        @keyframes float-2 {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        /* Navigation */
        .nav-dots {
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .nav-dot {
            position: relative;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--secondary);
            border-color: var(--secondary);
            transform: scale(1.25);
        }

        .nav-dot:hover {
            border-color: var(--secondary);
        }

        .nav-dot-label {
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: var(--background);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .nav-dot:hover .nav-dot-label {
            opacity: 1;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 80px 24px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
            padding-top: 120px;
        }

        @media (min-width: 1024px) {
            .hero {
                grid-template-columns: 1fr 1fr;
            }
        }

        .hero-image {
            position: relative;
            max-width: 450px;
            margin: 0 auto;
        }

        .hero-image-decorations {
            position: absolute;
            -webkit-filter: blur(40px);
            filter: blur(40px);
            opacity: 0.2;
            inset: -16px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border-radius: 24px;
            z-index: -1;
        }

        .hero-circle-1 {
            position: absolute;
            top: -24px;
            left: -24px;
            width: 128px;
            height: 128px;
            border: 4px solid var(--secondary);
            border-radius: 50%;
        }

        .hero-circle-2 {
            position: absolute;
            bottom: -24px;
            right: -24px;
            width: 96px;
            height: 96px;
            border: 4px solid var(--accent);
            border-radius: 50%;
        }

        .hero-image-content {
            position: relative;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--muted), var(--card));
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-image-placeholder {
            text-align: center;
            padding: 32px;
        }

        .icon-circle {
            width: 192px;
            height: 192px;
            margin: 0 auto 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

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

        .badge {
            display: inline-block;
            padding: 8px 16px;
            background: var(--secondary);
            color: var(--primary);
            border-radius: 999px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            animation: slideInLeft 0.6s ease-out 0.4s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .highlight {
            color: var(--secondary);
        }

        .subtitle {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            margin-bottom: 32px;
            max-width: 500px;
        }

        .contact-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--foreground);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            color: var(--secondary);
            transform: translateX(8px);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--card);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: var(--secondary);
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--background);
        }

        .btn-primary:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--background);
        }

        /* Section Titles */
        .section-title {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .section-title h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
        }

        .section-icon {
            width: 32px;
            height: 32px;
            color: var(--accent);
        }

        /* About Section */
        .about {
            background: var(--card);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
        }

        .goals-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 1024px) {
            .goals-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .goal-card {
            background: var(--background);
            padding: 32px;
            border-radius: 16px;
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .goal-card:nth-child(2) {
            border-left-color: var(--accent);
        }

        .goal-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .goal-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .goal-card p {
            color: var(--muted-foreground);
            line-height: 1.8;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 32px;
            border-left: 4px solid var(--secondary);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 48px;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-dot {
            position: absolute;
            left: -42px;
            top: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary);
            border: 4px solid var(--background);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timeline-item:nth-child(2) .timeline-dot {
            background: var(--accent);
        }

        .timeline-item:nth-child(3) .timeline-dot {
            background: var(--primary);
        }

        .timeline-card {
            background: var(--card);
            padding: 32px;
            border-radius: 16px;
            margin-left: 32px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .timeline-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transform: translateY(-4px);
        }

        .timeline-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 12px;
        }

        .timeline-badge {
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 14px;
        }

        .badge-date {
            background: var(--secondary);
            color: var(--primary);
        }

        .badge-score {
            background: var(--accent);
            color: white;
        }

        .timeline-card h3 {
            font-family: var(--font-display);
            font-size: 1.875rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .timeline-role {
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .timeline-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .timeline-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--muted-foreground);
        }

        .timeline-list li::before {
            content: '→';
            color: var(--secondary);
            flex-shrink: 0;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tech-tag {
            padding: 6px 12px;
            background: var(--muted);
            color: var(--foreground);
            border-radius: 999px;
            font-size: 14px;
        }

        /* Education */
        .education {
            background: var(--card);
        }

        .education-card {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            padding: 2px;
            border-radius: 16px;
        }

        .education-content {
            background: var(--background);
            padding: 32px;
            border-radius: 14px;
        }

        .education-header {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        @media (min-width: 1024px) {
            .education-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .education-header h3 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .education-major {
            font-size: 1.25rem;
            color: var(--secondary);
        }

        .education-year {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .education-gpa {
            font-size: 1.125rem;
            color: var(--accent);
        }

        .achievement-box {
            background: var(--card);
            padding: 24px;
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
        }

        .achievement-box strong {
            font-family: var(--font-display);
            font-weight: 600;
        }

        /* Skills */
        .skills-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 1024px) {
            .skills-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .skill-card {
            background: var(--card);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .skill-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--secondary);
        }

        .skill-card:nth-child(2) h3 {
            border-bottom-color: var(--accent);
        }

        .skill-card:nth-child(3) h3 {
            border-bottom-color: var(--secondary);
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .skill-tag {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 14px;
            cursor: default;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .skill-tag:hover {
            transform: scale(1.1) rotate(3deg);
        }

        .skill-card:nth-child(1) .skill-tag {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: white;
        }

        .skill-card:nth-child(2) .skill-tag {
            background: var(--primary);
            color: white;
        }

        .skill-card:nth-child(3) .skill-tag {
            background: var(--muted);
            color: var(--foreground);
            border: 2px solid var(--secondary);
        }

        /* Hobbies */
        .hobbies {
            background: var(--card);
        }

        .hobbies-content {
            background: linear-gradient(135deg, var(--background), var(--muted));
            padding: 32px;
            border-radius: 16px;
        }

        .hobbies-content p {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: var(--background);
            padding: 48px 24px;
            text-align: center;
        }

        footer h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        footer p {
            color: var(--muted);
            margin-bottom: 24px;
        }

        .footer-buttons {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .footer-btn {
            padding: 12px 24px;
            border-radius: 999px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-btn-primary {
            background: var(--secondary);
            color: var(--primary);
        }

        .footer-btn-primary:hover {
            background: var(--accent);
        }

        .footer-btn-outline {
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .footer-btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
        }

        .copyright {
            font-size: 14px;
            color: var(--muted);
            margin-top: 32px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-dots {
                display: none;
            }
        }

        /* SVG Icons */
        .icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .icon-large {
            width: 96px;
            height: 96px;
        }
