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

:root {
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --black: #0a0e27;
    --dark-grey: #1a1a3e;
    --mid-grey: #2a2a4e;
    --text-white: #FFFFFF;
    --text-grey: #B0B0B0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0a0e27 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Sparkly Gold Effect */
@keyframes goldSparkle {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(245, 158, 11, 0.5),
            0 0 20px rgba(245, 158, 11, 0.3),
            0 0 30px rgba(245, 158, 11, 0.2),
            0 0 40px rgba(139, 92, 246, 0.2);
    }

    50% {
        text-shadow: 0 0 20px rgba(245, 158, 11, 0.8),
            0 0 30px rgba(245, 158, 11, 0.5),
            0 0 40px rgba(245, 158, 11, 0.3),
            0 0 50px rgba(139, 92, 246, 0.4);
    }
}

/* Decorative Vines */
.vine-left,
.vine-right {
    position: fixed;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    animation: sway 4s ease-in-out infinite;
}

.vine-left {
    left: -1rem;
    top: 15%;
    transform: rotate(-20deg);
}

.vine-right {
    right: -1rem;
    top: 50%;
    transform: rotate(20deg) scaleX(-1);
    animation-delay: 2s;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-20deg) translateX(0);
    }

    50% {
        transform: rotate(-15deg) translateX(10px);
    }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-item {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-item:nth-child(1) {
    left: 10%;
    top: 20%;
}

.float-item:nth-child(2) {
    left: 80%;
    top: 40%;
}

.float-item:nth-child(3) {
    left: 20%;
    top: 70%;
}

.float-item:nth-child(4) {
    left: 90%;
    top: 15%;
}

.float-item:nth-child(5) {
    left: 50%;
    top: 85%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Cute Pet */
.pet-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    pointer-events: none;
}

.pet {
    font-size: 3rem;
    cursor: pointer;
    pointer-events: all;
    animation: petBounce 2s ease-in-out infinite;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.pet:hover {
    transform: scale(1.2) rotate(10deg);
}

.pet.excited {
    animation: petExcited 0.5s ease-in-out 3;
}

@keyframes petBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes petExcited {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.3) rotate(-15deg);
    }

    75% {
        transform: scale(1.3) rotate(15deg);
    }
}

.pet-speech {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pet-speech.show {
    opacity: 1;
    transform: translateY(0);
}

.pet-speech::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--gold);
}

/* Cursor Trail Canvas */
#cursorCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Navigation - Compact */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.6rem 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.3s;
    animation: goldSparkle 3s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    transition: width 0.3s;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero - Ultra Compact */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.hero-text h1 span {
    color: var(--gold);
    display: inline-block;
    animation: goldSparkle 3s ease-in-out infinite;
    position: relative;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent);
    animation: underlineSlide 2s ease-in-out infinite;
}

@keyframes underlineSlide {

    0%,
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-text .subtitle {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    font-weight: 600;
    animation: goldSparkle 3s ease-in-out infinite;
}

.hero-text p {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 0.85rem;
}

.btn {
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6),
        0 0 20px rgba(139, 92, 246, 0.3);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4),
        0 0 20px rgba(139, 92, 246, 0.3);
    animation: profilePulse 3s ease-in-out infinite;
}

@keyframes profilePulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4),
            0 0 20px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.4);
    }
}

/* Compact Sections */
section {
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--gold);
    position: relative;
    display: inline-block;
    animation: goldSparkle 3s ease-in-out infinite;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent);
    border-radius: 2px;
}

.section-header h2::after {
    content: '✨';
    position: absolute;
    right: -25px;
    top: -5px;
    font-size: 0.9rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.section-header p {
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* About - Creative Layout */
.about {
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f25 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 100px;
}

.about-logo {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    margin: 0 auto 1rem;
    display: block;
    animation: profilePulse 3s ease-in-out infinite;
}

.achievements-section {
    background: var(--mid-grey);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-top: 1rem;
}

.achievements-section h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    animation: goldSparkle 3s ease-in-out infinite;
    text-align: center;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.achievement-item {
    font-size: 0.8rem;
    color: var(--text-grey);
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.achievement-item::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.about-right {
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.about-content {
    max-width: 100%;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-content strong {
    color: var(--gold);
    font-weight: 600;
}

/* Experience - Compact 2 Column */
.experience {
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f25 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.timeline-item {
    background: rgba(42, 42, 78, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    transition: all 0.3s;
    animation: slideInUp 0.6s ease-out backwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
    animation-delay: 0.7s;
}

.timeline-item:nth-child(8) {
    animation-delay: 0.8s;
}

.timeline-item:hover {
    background: rgba(42, 42, 78, 0.6);
    transform: translateX(8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35),
        0 0 15px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline-item::after {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.timeline-item:hover::after {
    opacity: 1;
    animation: twinkle 1s ease-in-out infinite;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--purple) 100%);
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.timeline-header {
    margin-bottom: 0.85rem;
}

.timeline-header h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.company-highlight {
    color: var(--gold);
    font-weight: 700;
    animation: goldSparkle 3s ease-in-out infinite;
}

.timeline-date {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.8rem;
    display: block;
}

.timeline-item ul {
    list-style: none;
    padding-left: 0;
}

.timeline-item li {
    color: var(--text-grey);
    margin-bottom: 0.45rem;
    padding-left: 1.15rem;
    position: relative;
    font-size: 0.85rem;
    line-height: 1.55;
}

.timeline-item li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.timeline-item .skill-tags {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-item .skill-tag {
    padding: 0.4rem 0.9rem;
    background: var(--black);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
    font-weight: 500;
}

.timeline-item .skill-tag:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Projects - Compact 3 Column */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Project Badges */
.project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.5px;
}

.hackathon-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0a0e27;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.ds-badge {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 4px 25px rgba(245, 158, 11, 0.8), 0 0 15px rgba(245, 158, 11, 0.3);
    }
}

/* Featured project card */
.featured-project {
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    background: linear-gradient(135deg, #1a1a3e 0%, #2a2450 100%) !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

.featured-project:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5),
        0 0 25px rgba(139, 92, 246, 0.2) !important;
}

/* Directed Studies project card */
.directed-studies-project {
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
}

.directed-studies-project:hover {
    border-color: var(--purple) !important;
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35),
        0 0 20px rgba(245, 158, 11, 0.15) !important;
}

.project-card {
    background: linear-gradient(135deg, #1a1a3e 0%, #242458 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s;
    position: relative;
    animation: slideInUp 0.6s ease-out backwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4),
        0 0 20px rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, #1a1a3e 0%, #2a2a5a 100%);
}

.project-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2a2a5a 0%, #1f1f40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: background 0.3s;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image {
    background: linear-gradient(135deg, #3a4a6a 0%, #2f2f50 100%);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.code-btn-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.6rem 1.5rem;
    background: rgba(245, 158, 11, 0.95);
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.project-card:hover .code-btn-top {
    opacity: 1;
}

.code-btn-top:hover {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-content {
    padding: 1.25rem;
}

.project-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    color: var(--gold);
    animation: goldSparkle 3s ease-in-out infinite;
}

.project-content p {
    color: var(--text-grey);
    margin-bottom: 0.85rem;
    line-height: 1.55;
    font-size: 0.85rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.project-tag {
    padding: 0.2rem 0.6rem;
    background: var(--mid-grey);
    border-radius: 12px;
    font-size: 0.7rem;
    color: var(--text-grey);
    border: 1px solid rgba(245, 158, 11, 0.1);
}

/* Contact - Compact */
.contact {
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f25 100%);
    text-align: center;
}

.contact-content p {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 1.25rem;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: var(--mid-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Footer - Compact */
footer {
    background: var(--black);
    color: var(--text-grey);
    text-align: center;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

footer p {
    font-size: 0.8rem;
}

/* Smooth Animation for Cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero-content,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-left {
        position: relative;
        top: 0;
    }

    .about-logo {
        max-width: 180px;
        height: 180px;
    }

    .achievements-section {
        padding: 1rem;
    }

    .achievement-item {
        font-size: 0.8rem;
        padding: 0.75rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .profile-img {
        width: 200px;
        height: 200px;
    }

    .nav-links {
        gap: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .vine-left,
    .vine-right {
        display: none;
    }

    .pet {
        font-size: 2.5rem;
    }

    .pet-speech {
        font-size: 0.75rem;
        max-width: 200px;
        white-space: normal;
    }
}