/* Cool Gradient Portfolio Theme */
:root {
    --bg-primary: #F8FAFC;
    --surface: #FFFFFF;
    --primary: #3B82F6;
    --secondary: #06B6D4;
    --text-primary: #0F172A;
    --text-muted: #64748B;
    --gradient: linear-gradient(90deg, #3B82F6, #06B6D4);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(1px 1px at 150px 60px, white, transparent),
        radial-gradient(2px 2px at 180px 90px, white, transparent),
        radial-gradient(1px 1px at 90px 120px, white, transparent);
    background-size: 300px 300px;
    background-repeat: repeat;
    animation: twinkle 5s ease-in-out infinite, moveStars 300s linear infinite;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(1px 1px at 100px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 70px 140px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 200px 100px, rgba(255,255,255,0.7), transparent);
    background-size: 300px 300px;
    background-repeat: repeat;
    animation: twinkle 3s ease-in-out infinite reverse, moveStars 200s linear infinite reverse;
    z-index: 0;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes moveStars {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

.main-content {
    min-height: calc(100vh - 120px);
    position: relative;
    z-index: 1;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1600px) {
    .page-container {
        max-width: 1600px;
        padding: 2rem 4rem;
    }
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1600px) {
    .hero-content {
        gap: 6rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .profile-image {
        width: 400px;
        height: 400px;
    }
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

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

.avatar-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.avatar-text {
    font-size: 6rem;
    font-weight: bold;
    color: white;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: var(--gradient);
    padding: 2px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    animation: floatAndDrift 60s ease-in-out infinite;
}

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

@keyframes floatAndDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(1deg);
    }
    50% {
        transform: translate(0, -25px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -15px) rotate(-1deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* About Section */
.about-content {
    display: grid;
    gap: 3rem;
}

.about-paragraph {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.highlight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Terminal Styles */
.terminal-container {
    display: block;
    max-width: 900px;
    margin: 2rem auto;
}

.about-text-mobile {
    display: none;
}

.terminal-window {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background: #323232;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #1e1e1e;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-close {
    background: #ff5f56;
}

.terminal-minimize {
    background: #ffbd2e;
}

.terminal-maximize {
    background: #27c93f;
}

.terminal-title {
    color: #b5b5b5;
    font-size: 13px;
    flex: 1;
    text-align: center;
}

.terminal-body {
    background: #1e1e1e;
    color: #00ff00;
    padding: 20px;
    min-height: 500px;
    max-height: 600px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.terminal-welcome {
    margin-bottom: 20px;
}

.ascii-art {
    color: #00ffff;
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.terminal-welcome p {
    color: #b5b5b5;
    margin: 5px 0;
}

.highlight {
    color: #ffff00;
    font-weight: bold;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.terminal-prompt {
    color: #00ff00;
    font-weight: bold;
    user-select: none;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    outline: none;
    caret-color: #00ff00;
}

.terminal-input::selection {
    background: #00ff00;
    color: #1e1e1e;
}

.terminal-line {
    margin-bottom: 10px;
}

.terminal-output {
    color: #b5b5b5;
    margin-top: 5px;
    white-space: pre-wrap;
}

.hacker-cursor {
    color: #00ff00;
    animation: blink 0.7s infinite;
    font-weight: bold;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hacker-text {
    color: #00ff00;
}

.cmd-name {
    color: #00ffff;
    font-weight: bold;
}

.file-txt {
    color: #ffff00;
}

.error {
    color: #ff5555;
}

.success {
    color: #50fa7b;
}

.info {
    color: #8be9fd;
}

.file-header {
    color: #00ffff;
}

.skill-category {
    color: #ff79c6;
    font-weight: bold;
}

.job-title {
    color: #ffb86c;
    font-weight: bold;
}

.job-role {
    color: #50fa7b;
}

.job-date {
    color: #8be9fd;
}

.neofetch-art {
    color: #bd93f9;
}

.neofetch-label {
    color: #50fa7b;
    font-weight: bold;
}

/* GitHub Section */
.github-container {
    padding: 0;
}

.github-content {
    background: transparent;
    padding: 2rem;
    border-radius: 12px;
}

.scroll-hint {
    display: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contribution-calendar {
    margin: 2rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.contribution-calendar::-webkit-scrollbar {
    height: 8px;
}

.contribution-calendar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.contribution-calendar::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 4px;
}

.contribution-calendar::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.contribution-chart {
    width: auto;
    min-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.github-links {
    text-align: center;
    margin-top: 2rem;
}

.github-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: #24292e;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #24292e;
    position: relative;
    overflow: hidden;
}

.github-profile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.github-profile-link:hover::before {
    left: 100%;
}

.github-profile-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(36, 41, 46, 0.3);
    background: #2f363d;
    border-color: #2f363d;
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
    background: rgba(59, 130, 246, 0.2);
}

.nav-link.active {
    color: white;
    background: rgba(59, 130, 246, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Footer Styles */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-subtitle {
    margin-top: 0.5rem;
}

.heart-icon {
    color: #ef4444;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Experience Page */
.experience-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.8);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.company-name {
    font-size: 1.25rem;
    color: white;
}

.duration {
    color: white;
    font-weight: 500;
    background: rgba(59, 130, 246, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.job-title {
    color: #60A5FA;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.responsibilities {
    list-style: none;
    padding-left: 0;
}

.responsibilities li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.responsibilities li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Skills Page */
.skills-container {
    max-width: 1000px;
    margin: 0 auto;
}

.skills-section {
    margin-bottom: 4rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

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

.skill-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.skill-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.skill-name {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.skill-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Contact Page */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    min-height: 60vh;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.info-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.75rem;
}

.info-link {
    color: #60A5FA;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.info-link:hover {
    text-decoration: underline;
    color: #93C5FD;
}

.info-text {
    color: rgba(255, 255, 255, 0.8);
}

.external-icon {
    display: inline-block;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.open {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
    }

    .nav-link.active::after {
        display: none;
    }

    /* Hero */
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .avatar-placeholder {
        width: 200px;
        height: 200px;
    }

    .avatar-text {
        font-size: 4rem;
    }

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

    /* General */
    .section-title,
    .page-title {
        font-size: 2rem;
    }

    /* Timeline */
    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -1.9rem;
    }

    /* Contact */
    .contact-content {
        min-height: 40vh;
    }

    .contact-form-section {
        padding: 2rem;
    }

    /* Skills */
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    /* Terminal - Hide on Mobile */
    .terminal-container {
        display: none;
    }

    .about-text-mobile {
        display: block;
    }

    /* GitHub Calendar */
    .scroll-hint {
        display: block;
    }

    .contribution-calendar {
        margin: 1rem -1rem;
        padding: 1rem;
    }

    .contribution-chart {
        min-width: 700px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .experience-header {
        flex-direction: column;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .skill-card {
        padding: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skill-icon {
        font-size: 2rem;
    }

    .skill-name {
        font-size: 0.95rem;
    }

    .skill-description {
        font-size: 0.8rem;
    }

    /* GitHub Calendar */
    .scroll-hint {
        display: block;
        font-size: 0.8rem;
    }

    .contribution-calendar {
        margin: 1rem -1rem;
        padding: 1rem 0.5rem;
    }

    .contribution-chart {
        min-width: 600px;
    }
}
