/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.4;
    color: #000000;
    background-color: #FFE135;
    cursor: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect width="24" height="24" fill="%23FFE135" stroke="%23000" stroke-width="2"/><rect x="11" y="2" width="2" height="20" fill="%23000"/><rect x="2" y="11" width="20" height="2" fill="%23000"/><circle cx="12" cy="12" r="2" fill="%23CC9900"/><circle cx="12" cy="12" r="1" fill="%23000"/></svg>') 12 12, pointer;
    background-image:
        linear-gradient(45deg, #FFF2B3 25%, transparent 25%),
        linear-gradient(-45deg, #FFF2B3 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #FFF2B3 75%),
        linear-gradient(-45deg, transparent 75%, #FFF2B3 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Game Boy Button Style */
.gb-btn {
    font-family: 'Courier New', monospace;
    background-color: #FFE135;
    border: 3px solid #000000;
    color: #000000;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: center;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
    transition: all 0.1s ease;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.gb-btn:hover {
    background-color: #FFF2B3;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
    transform: translate(1px, 1px);
}

.gb-btn:active {
    box-shadow: 
        inset 2px 2px 0px #FFF2B3,
        inset -2px -2px 0px #FFF2B3;
    transform: translate(2px, 2px);
}

/* Navigation - Game Boy Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFF2B3;
    border-bottom: 4px solid #000000;
    box-shadow: 0 4px 0px #000000;
    z-index: 1000;
    font-size: 16px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo h2 {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 12px;
    background-color: #FFE135;
    border: 2px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
    transition: all 0.1s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    background-color: #FFF2B3;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
    transform: translate(1px, 1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    border: 1px solid #FFE135;
}

/* Hero Section - Game Boy Style */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, #87CEEB 0%, #4682B4 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #000000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #000000;
    text-transform: uppercase;
    background-color: #FFE135;
    padding: 1rem;
    border: 3px solid #000000;
    box-shadow:
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.typing-text {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    font-size: 40px;
    color: #000000;
    background-color: #FFF2B3;
    padding: 0.5rem;
    border: 2px solid #000000;
    margin-bottom: 0.5rem;
}

.typing-text:nth-child(2) {
    animation-delay: 0.5s;
    font-size: 28px;
    background-color: #FFE135;
}

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

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #000000;
    background-color: #FFE135;
    padding: 1rem;
    border: 3px solid #000000;
    box-shadow:
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    font-family: 'Courier New', monospace;
    padding: 12px 24px;
    text-decoration: none;
    border: 3px solid #000000;
    color: #000000;
    transition: all 0.1s ease;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #FFE135;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.btn:hover {
    background-color: #FFF2B3;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
    transform: translate(1px, 1px);
}

.btn-primary {
    background-color: #FFE135;
}

.btn-secondary {
    background-color: #FFF2B3;
}

.hero-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFE135;
    border: 3px solid #000000;
    color: #000000;
    text-decoration: none;
    transition: all 0.1s ease;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
    font-size: 20px;
    font-weight: bold;
}

.social-link:hover {
    background-color: #FFF2B3;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
    transform: translate(1px, 1px);
}

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

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

/* Game Boy Console Container */
.gameboy-console {
    position: relative;
    background: linear-gradient(145deg, #FFF2B3, #B38600);
    border: 8px solid #000000;
    border-radius: 20px 20px 25px 25px;
    padding: 2rem;
    box-shadow:
        inset -4px -4px 0px #B38600,
        inset 4px 4px 0px #E6B800,
        0px 15px 30px rgba(0, 0, 0, 0.25),
        0px 8px 15px rgba(0, 0, 0, 0.15);
    animation: float 4s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
    z-index: 10;
    position: relative;
}

.gameboy-console::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #000000;
    border-radius: 4px;
    box-shadow: 0 2px 0px #666666;
}

.gameboy-console::after {
    content: '';
    position: absolute;
    top: 35px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #FF4444;
    border: 2px solid #000000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.6);
}

.profile-card {
    background-color: #FFE135;
    border: 6px solid #000000;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow:
        inset -3px -3px 0px #FFF2B3,
        inset 3px 3px 0px #FFF2B3,
        0px 8px 15px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    6.25% {
        transform: translateY(-2px) rotate(0.1deg);
    }
    12.5% {
        transform: translateY(-4px) rotate(0.2deg);
    }
    18.75% {
        transform: translateY(-6px) rotate(0.3deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.4deg);
    }
    31.25% {
        transform: translateY(-10px) rotate(0.45deg);
    }
    37.5% {
        transform: translateY(-12px) rotate(0.5deg);
    }
    43.75% {
        transform: translateY(-13px) rotate(0.4deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    56.25% {
        transform: translateY(-13px) rotate(-0.4deg);
    }
    62.5% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
    68.75% {
        transform: translateY(-10px) rotate(-0.45deg);
    }
    75% {
        transform: translateY(-8px) rotate(-0.4deg);
    }
    81.25% {
        transform: translateY(-6px) rotate(-0.3deg);
    }
    87.5% {
        transform: translateY(-4px) rotate(-0.2deg);
    }
    93.75% {
        transform: translateY(-2px) rotate(-0.1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Game Boy Controller Buttons */
.gameboy-console .gameboy-controls {
    position: absolute;
    bottom: 15px;
    right: 25px;
    display: flex;
    gap: 8px;
}

.gameboy-dpad {
    position: absolute;
    bottom: 15px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: #000000;
    border: 3px solid #333333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameboy-dpad::before,
.gameboy-dpad::after {
    content: '';
    position: absolute;
    background: #666666;
}

.gameboy-dpad::before {
    width: 30px;
    height: 6px;
}

.gameboy-dpad::after {
    width: 6px;
    height: 30px;
}

.gameboy-btn {
    width: 16px;
    height: 16px;
    background: #FFE135;
    border: 2px solid #000000;
    border-radius: 50%;
    box-shadow: inset 1px 1px 0px #FFF2B3, inset -1px -1px 0px #FFF2B3;
}

.gameboy-btn-a {
    background: #FF6B6B;
    box-shadow: inset 1px 1px 0px #FFB3B3, inset -1px -1px 0px #CC4444;
}

.gameboy-btn-b {
    background: #4ECDC4;
    box-shadow: inset 1px 1px 0px #B3F0EB, inset -1px -1px 0px #2D8F86;
}

/* Game Boy Screen Glare Effect */
.profile-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, transparent 60%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
    border-radius: 4px;
    pointer-events: none;
}

.profile-avatar {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border: 4px solid #000000;
    background-color: #FFF2B3;
    box-shadow: 0 2px 0px #000000;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    background-color: #FFF2B3;
    padding: 0.5rem;
    border: 2px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.stat-label {
    font-size: 12px;
    color: #000000;
}

/* Section Styles */
.section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #000000;
    position: relative;
    background-color: #FFE135;
    padding: 1rem;
    border: 4px solid #000000;
    box-shadow:
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #000000;
    border: 2px solid #FFE135;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #FFF2B3;
    border-bottom: 4px solid #000000;
}

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

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    background-color: #FFE135;
    padding: 2rem;
    border: 3px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background-color: #FFE135;
    padding: 1.5rem;
    border: 3px solid #000000;
    text-align: center;
    transition: all 0.1s ease;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.highlight-card:hover {
    transform: translate(2px, 2px);
    background-color: #FFF2B3;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
}

.highlight-card i {
    font-size: 32px;
    color: #000000;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
}

.highlight-card p {
    color: #000000;
    font-size: 14px;
    line-height: 1.4;
}

/* Education Section */
.education {
    padding: 60px 0;
    background-color: #FFE135;
    border-bottom: 4px solid #000000;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.education-card {
    background-color: #FFF2B3;
    color: #000000;
    padding: 2rem;
    border: 4px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
    transition: all 0.1s ease;
}

.education-card:hover {
    transform: translate(2px, 2px);
    background-color: #FFE135;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFE135;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.education-header h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #000000;
}

.education-period {
    background-color: #FFE135;
    padding: 4px 8px;
    border: 2px solid #000000;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    color: #000000;
    box-shadow: 1px 1px 0px #000000;
}

.education-institution h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000000;
}

.education-institution p {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.education-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFE135;
    padding: 0.5rem;
    border: 2px solid #000000;
}

.detail-label {
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

.detail-value {
    font-weight: bold;
    background-color: #FFF2B3;
    color: #000000;
    padding: 0.3rem 0.8rem;
    border: 2px solid #000000;
    font-size: 14px;
    box-shadow: 1px 1px 0px #000000;
}

/* Skills Section */
.skills {
    padding: 60px 0;
    background-color: #FFF2B3;
    border-bottom: 4px solid #000000;
}

.skills-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-category {
    background-color: #FFE135;
    padding: 2rem;
    border: 4px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.skill-category h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.skill-tag {
    background-color: #FFF2B3;
    color: #000000;
    padding: 8px 16px;
    border: 2px solid #000000;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.1s ease;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 1px 1px 0px #000000;
}

.skill-tag:hover {
    background-color: #FFE135;
    transform: translate(1px, 1px);
    box-shadow: 0 1px 0px #000000;
}

/* Projects Section */
.projects {
    padding: 60px 0;
    background-color: #FFE135;
    border-bottom: 4px solid #000000;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-card {
    background-color: #FFF2B3;
    padding: 2rem;
    border: 4px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
    transition: all 0.1s ease;
}

.project-card:hover {
    transform: translate(2px, 2px);
    background-color: #FFE135;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFE135;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-icon {
    font-size: 32px;
    color: #000000;
    width: 60px;
    height: 60px;
    background-color: #FFE135;
    border: 3px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    box-shadow: 2px 2px 0px #000000;
}

.project-period {
    background-color: #FFF2B3;
    color: #000000;
    padding: 4px 8px;
    border: 2px solid #000000;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 1px 1px 0px #000000;
}

.project-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.3;
    text-transform: uppercase;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: #FFE135;
    color: #000000;
    padding: 4px 8px;
    border: 2px solid #000000;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 1px 1px 0px #000000;
}

.project-description {
    list-style: none;
}

.project-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.6;
    font-size: 14px;
    background-color: #FFE135;
    padding: 8px 8px 8px 24px;
    border: 2px solid #000000;
}

.project-description li::before {
    content: '>';
    position: absolute;
    left: 8px;
    color: #000000;
    font-weight: bold;
}

.project-github-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #FFE135;
    color: #000000;
    border: 3px solid #000000;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s, transform 0.2s;
}

.project-github-link:hover {
    background-color: #000000;
    color: #FFE135;
}

.project-github-link i {
    font-size: 1.1rem;
}

/* Writing Section */
.writing {
    padding: 60px 0;
    background-color: #FFF2B3;
    border-bottom: 4px solid #000000;
}

.writing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.writing-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.writing-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    background-color: #FFE135;
    padding: 2rem;
    border: 3px solid #000000;
    box-shadow:
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.writing-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.medium-card {
    background-color: #FFE135;
    color: #000000;
    padding: 2rem;
    border: 4px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
    transition: all 0.1s ease;
    height: fit-content;
}

.medium-card:hover {
    transform: translate(2px, 2px);
    background-color: #FFF2B3;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
}

.medium-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.medium-header i {
    font-size: 32px;
    color: #000000;
}

.medium-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
}

.medium-info p {
    opacity: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 14px;
    color: #000000;
}

.medium-info .btn {
    background-color: #000000;
    color: #FFE135;
    border: 3px solid #000000;
    font-size: 12px;
    box-shadow: 
        inset -2px -2px 0px #333333,
        inset 2px 2px 0px #666666;
}

.medium-info .btn:hover {
    background-color: #333333;
    color: #FFF2B3;
}

.blog-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background-color: #FFE135;
    padding: 1.5rem;
    border: 3px solid #000000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.1s ease;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.stat-card:hover {
    transform: translateX(2px);
    background-color: #FFF2B3;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
}

.stat-card i {
    font-size: 24px;
    color: #000000;
    width: 50px;
    text-align: center;
}

.stat-content h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000000;
    text-transform: uppercase;
}

.stat-content p {
    color: #000000;
    line-height: 1.4;
    font-size: 12px;
}

/* Experience Section */
.experience {
    padding: 60px 0;
    background-color: #FFE135;
    border-bottom: 4px solid #000000;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #000000;
    border: 2px solid #FFE135;
}

.experience-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 70px;
}

.experience-item::before {
    content: '●';
    position: absolute;
    left: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    background-color: #000000;
    border: 3px solid #FFE135;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #FFE135;
    font-weight: bold;
}

.experience-date {
    position: absolute;
    left: 0;
    top: 10px;
    background-color: #FFE135;
    color: #000000;
    padding: 4px 8px;
    border: 2px solid #000000;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 1px 1px 0px #000000;
}

.experience-content {
    background-color: #FFF2B3;
    padding: 2rem;
    border: 3px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
}

.experience-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000000;
    text-transform: uppercase;
}

.experience-company {
    color: #000000;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.experience-description {
    list-style: none;
}

.experience-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.6;
    font-size: 14px;
    background-color: #FFE135;
    padding: 8px 8px 8px 24px;
    border: 2px solid #000000;
}

.experience-description li::before {
    content: '◆';
    position: absolute;
    left: 8px;
    color: #000000;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #FFF2B3;
}

.contact .section-title {
    background-color: #FFE135;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #000000;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 1;
    margin-bottom: 2rem;
    color: #000000;
    background-color: #FFE135;
    padding: 1.5rem;
    border: 3px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #FFE135;
    padding: 1.5rem;
    border: 3px solid #000000;
    transition: all 0.1s ease;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.contact-method:hover {
    background-color: #FFF2B3;
    transform: translateX(2px);
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
}

.contact-method i {
    font-size: 20px;
    width: 40px;
    text-align: center;
    color: #000000;
}

.contact-method h4 {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
}

.contact-method p {
    opacity: 1;
    margin: 0;
    font-size: 12px;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.contact-method a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.1s ease;
}

.contact-method a:hover {
    color: #FFF2B3;
    text-decoration: underline;
}

.contact-form {
    background-color: #FFE135;
    padding: 2rem;
    border: 4px solid #000000;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFF2B3;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 3px solid #000000;
    background-color: #FFF2B3;
    color: #000000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: all 0.1s ease;
    box-shadow: 
        inset -2px -2px 0px #FFE135,
        inset 2px 2px 0px #FFF2B3;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #FFE135;
    box-shadow: 
        inset -2px -2px 0px #FFF2B3,
        inset 2px 2px 0px #FFE135;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #FFE135;
    padding: 2rem 0;
    border-top: 4px solid #FFE135;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text p {
    opacity: 1;
    font-size: 12px;
    font-weight: bold;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    background-color: #FFE135;
    color: #000000;
}

.footer-social .social-link:hover {
    background-color: #FFF2B3;
}


/* Game Boy Animations */
@keyframes gbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gbGlow {
    0%, 100% { box-shadow: 0 0 5px #FFE135; }
    50% { box-shadow: 0 0 20px #FFE135, 0 0 30px #FFE135; }
}

.project-card:hover .project-icon {
    animation: gbPulse 0.5s ease;
}

.skill-tag:hover {
    animation: gbGlow 1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #FFF2B3;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border: 3px solid #000000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .typing-text {
        font-size: 28px;
    }
    
    .typing-text:nth-child(2) {
        font-size: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-highlights {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .highlight-card {
        min-width: 200px;
    }
    
    .education-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .writing-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 18px;
    }
    
    .typing-text {
        font-size: 20px;
    }
    
    .typing-text:nth-child(2) {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .experience-timeline::before {
        left: 15px;
    }
    
    .experience-item {
        padding-left: 50px;
    }
    
    .experience-item::before {
        left: 5px;
    }
    
    .experience-date {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}