body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Fira Mono', monospace;
    background: #181a20;
    color: #f1f1f1;
    min-height: 100vh;
    overflow-x: hidden;
}

.background {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 60% 20%, #00bcd4 0%, #181a20 60%), linear-gradient(135deg, #232526 0%, #414345 100%);
    z-index: 0;
    filter: blur(2px) brightness(0.9);
}

.main-card {
    position: relative;
    z-index: 1;
    margin: 48px auto 0 auto;
    background: rgba(24, 26, 32, 0.92);
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(0,188,212,0.10), 0 2px 16px rgba(0,0,0,0.28);
    max-width: 760px;
    min-width: 320px;
    width: 92vw;
    min-height: 80vh;
    padding: 40px 32px 18px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(0,188,212,0.08);
    transition: box-shadow 0.2s;
}

.main-card:hover {
    box-shadow: 0 16px 64px rgba(0,188,212,0.18), 0 4px 24px rgba(0,0,0,0.32);
}

.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}
.main-nav a {
    color: #b2ebf2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 6px 18px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
    background: #00bcd4;
    color: #181a20;
}

.hero {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 10px;
    width: 100%;
    justify-content: center;
}

.avatar-glow {
    border-radius: 50%;
    padding: 6px;
    background: radial-gradient(circle, #00bcd4 0%, #232526 70%);
    box-shadow: 0 0 32px #00bcd4aa, 0 2px 12px #0008;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #00bcd4;
    object-fit: cover;
    background: #222;
    box-shadow: 0 2px 16px #00bcd455;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.hero-info h1 {
    margin: 0 0 2px 0;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00bcd4;
    text-shadow: 0 2px 12px #00bcd455;
}

.typed-desc {
    min-height: 1.5em;
    font-size: 1.1rem;
    color: #b2ebf2;
    font-family: inherit;
    border-right: 2px solid #00bcd4;
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 8px;
}

.social-icons {
    margin-top: 4px;
}
.social-icons a {
    color: #b2ebf2;
    font-size: 2rem;
    margin-right: 16px;
    transition: color 0.2s, transform 0.2s;
    text-shadow: 0 2px 8px #00bcd455;
}
.social-icons a:hover {
    color: #00bcd4;
    transform: scale(1.18) translateY(-2px);
}

.about {
    width: 100%;
    margin: 18px 0 18px 0;
    text-align: center;
    font-size: 1.15rem;
    color: #e0f7fa;
    background: rgba(0,188,212,0.06);
    border-radius: 12px;
    padding: 18px 12px;
    box-shadow: 0 2px 12px #00bcd422;
}

.about .highlight {
    color: #00bcd4;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.creative-card {
    width: 100%;
    margin: 24px 0 0 0;
    background: rgba(40, 44, 52, 0.72);
    border-radius: 18px;
    box-shadow: 0 2px 16px #00bcd422;
    padding: 18px 18px 10px 18px;
    border: 1.5px solid rgba(0,188,212,0.10);
}

.pinned-project h2, h2 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    color: #00bcd4;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(24, 26, 32, 0.92);
    border-radius: 14px;
    box-shadow: 0 2px 12px #00bcd422;
    padding: 16px 18px;
    margin-top: 6px;
    border-left: 4px solid #00bcd4;
    transition: box-shadow 0.18s;
}
.project-card:hover {
    box-shadow: 0 6px 24px #00bcd455;
}
.project-icon {
    font-size: 2.2rem;
    color: #00bcd4;
    margin-top: 2px;
    text-shadow: 0 2px 8px #00bcd455;
}

.project-card h3 {
    margin: 0 0 4px 0;
    font-size: 1.15rem;
    color: #fff;
}
.project-card p {
    margin: 0 0 8px 0;
    color: #b2ebf2;
    font-size: 1rem;
}
.project-card a {
    color: #fff;
    background: #00bcd4;
    padding: 5px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px #00bcd422;
}
.project-card a:hover {
    background: #0097a7;
    color: #fff;
}

.projects-timeline {
    width: 100%;
    margin: 24px 0 0 0;
    background: rgba(40, 44, 52, 0.72);
    border-radius: 18px;
    box-shadow: 0 2px 16px #00bcd422;
    padding: 18px 18px 10px 18px;
    border: 1.5px solid rgba(0,188,212,0.10);
}

.timeline {
    position: relative;
    margin: 32px 0 0 0;
    padding-left: 32px;
    border-left: 3px solid #00bcd4;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.timeline-card {
    position: relative;
    background: rgba(24, 26, 32, 0.98);
    border-radius: 14px;
    box-shadow: 0 2px 12px #00bcd422;
    padding: 18px 22px 18px 32px;
    margin-left: 0;
    min-width: 0;
    transition: box-shadow 0.18s, transform 0.18s;
    border: 1.5px solid rgba(0,188,212,0.10);
    cursor: pointer;
    overflow: visible;
}
.timeline-card:hover {
    box-shadow: 0 8px 32px #00bcd455;
    transform: translateY(-4px) scale(1.03);
    border: 1.5px solid #00bcd4;
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 24px;
    width: 18px;
    height: 18px;
    background: #181a20;
    border: 4px solid #00bcd4;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #00bcd422;
    z-index: 2;
    transition: border 0.18s;
}
.timeline-card:hover .timeline-dot {
    border: 4px solid #fff;
}

.timeline-card h4 {
    margin: 0 0 8px 0;
    font-size: 1.12rem;
    font-weight: 700;
    color: #00bcd4;
    letter-spacing: 0.5px;
}

.timeline-card p {
    font-size: 1rem;
    margin: 0 0 12px 0;
    color: #b2ebf2;
}

.timeline-card a {
    color: #fff;
    background: #00bcd4;
    padding: 5px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px #00bcd422;
}
.timeline-card a:hover {
    background: #0097a7;
    color: #fff;
}

.timeline-tags {
    margin-bottom: 10px;
}
.timeline-tag {
    display: inline-block;
    background: #00bcd4;
    color: #181a20;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 2px 10px;
    margin-right: 8px;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 4px #00bcd422;
}

.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}
.main-nav a {
    color: #b2ebf2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 6px 18px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
    background: #00bcd4;
    color: #181a20;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    margin-top: 6px;
}
.filter-label {
    color: #00bcd4;
    font-weight: 600;
    margin-right: 8px;
}
.filter-tag {
    background: #23272f;
    color: #00bcd4;
    border: none;
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 0.97rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.filter-tag.active,
.filter-tag:hover {
    background: #00bcd4;
    color: #181a20;
}
.filter-clear {
    background: none;
    color: #b2ebf2;
    border: none;
    font-size: 0.97rem;
    font-weight: 600;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 8px;
}
.filter-clear:hover {
    color: #00bcd4;
}

.skills {
    margin-top: 28px;
    text-align: center;
}
.skills-combo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 18px;
}
.skill-combo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.2rem;
    color: #00bcd4;
    background: rgba(24,26,32,0.85);
    border-radius: 12px;
    padding: 18px 16px 10px 16px;
    box-shadow: 0 2px 12px #00bcd422;
    transition: transform 0.18s, box-shadow 0.18s, color 0.18s;
    cursor: pointer;
    min-width: 100px;
    min-height: 120px;
    position: relative;
}
.skill-combo:hover {
    transform: translateY(-6px) scale(1.08) rotate(-2deg);
    color: #fff;
    background: #00bcd4;
    box-shadow: 0 8px 32px #00bcd455;
}
.skill-combo span {
    font-size: 1rem;
    margin-top: 8px;
    color: #b2ebf2;
    font-family: inherit;
    letter-spacing: 0.5px;
}
.skill-combo:hover span {
    color: #181a20;
}
.skill-combo-bar-bg {
    width: 70px;
    height: 8px;
    background: #23272f;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 2px;
    overflow: hidden;
}
.skill-combo-bar {
    height: 100%;
    background: linear-gradient(90deg, #00bcd4 60%, #0097a7 100%);
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(.4,2,.6,1);
}
.skill-combo-label {
    font-size: 0.95rem;
    color: #b2ebf2;
    margin-top: 2px;
    font-weight: 600;
}

/* --- Journey Timeline --- */
.journey-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 24px;
    position: relative;
}
.journey-timeline-item {
    background: rgba(24, 26, 32, 0.92);
    border-radius: 14px;
    box-shadow: 0 2px 12px #00bcd422;
    padding: 18px 22px;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.18s, transform 0.18s;
    border-left: 4px solid #00bcd4;
}
.journey-timeline-item:hover {
    box-shadow: 0 8px 32px #00bcd455;
    transform: translateY(-4px) scale(1.03);
}
.journey-timeline-date {
    font-size: 0.95rem;
    color: #00bcd4;
    font-weight: 700;
    margin-bottom: 6px;
}
.journey-timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.journey-timeline-desc {
    color: #b2ebf2;
    font-size: 1rem;
}

/* --- Ask Me Anything --- */
.ama form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}
.ama input, .ama textarea {
    background: #23272f;
    color: #b2ebf2;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
    resize: none;
}
.ama textarea {
    min-height: 60px;
    max-height: 200px;
}
.ama button {
    background: #00bcd4;
    color: #181a20;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.ama button:hover {
    background: #0097a7;
    color: #fff;
}
#ama-response {
    margin-top: 16px;
    color: #00bcd4;
    font-weight: 600;
    min-height: 1.2em;
}

footer {
    margin-top: 32px;
    text-align: center;
    color: #b2ebf2;
    font-size: 1rem;
    width: 100%;
    letter-spacing: 0.5px;
    background: none;
    border: none;
}

.footer-heart {
    color: #00bcd4;
    font-size: 1.1em;
    vertical-align: middle;
}

.radar-chart {
    margin-top: 28px;
    text-align: center;
}
#radar-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}
.radar-label {
    font-size: 1rem;
    fill: #b2ebf2;
    font-family: 'Fira Mono', monospace;
    pointer-events: none;
    text-shadow: 0 2px 8px #181a20;
}
.radar-area {
    fill: #00bcd4cc;
    stroke: #00bcd4;
    stroke-width: 2;
    opacity: 0.7;
    transition: fill 0.3s;
}
.radar-axis {
    stroke: #00bcd4;
    stroke-width: 1.2;
    opacity: 0.6;
}
.radar-dot {
    fill: #fff;
    stroke: #00bcd4;
    stroke-width: 2;
    cursor: pointer;
    transition: fill 0.2s, stroke 0.2s;
}
.radar-dot:hover {
    fill: #00bcd4;
    stroke: #fff;
}
.radar-tooltip {
    position: absolute;
    background: #181a20;
    color: #b2ebf2;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 1rem;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 12px #00bcd455;
    display: none;
}

@media (max-width: 600px) {
    nav {
        display: flex;
        flex-direction: column;
    }

    nav a {
        margin: 10px 0;
    }

    section {
        margin: 10px;
    }

    .portfolio-container {
        padding: 10px 2vw;
        min-width: unset;
        max-width: 98vw;
    }
    .avatar {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 700px) {
    .main-card {
        padding: 10px 2vw;
        min-width: unset;
        max-width: 98vw;
    }
    .avatar {
        width: 72px;
        height: 72px;
    }
    .hero {
        flex-direction: column;
        gap: 12px;
    }
    .timeline {
        padding-left: 18px;
    }
    .timeline-dot {
        left: -27px;
    }
    .timeline-card {
        padding: 14px 10px 14px 22px;
    }
}