@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-color: #00ff88;
    --secondary-color: #00ccff;
    --accent-color: #ff006e;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --card-bg: #141b2d;
    --text-primary: #e0e0e0;
    --text-secondary: #8892b0;
    --border-color: #1e2a45;
    --glow-color: rgba(0, 255, 136, 0.3);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan 8s linear infinite;
    z-index: 9999;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.02;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo .bracket {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.logo .name {
    color: var(--text-primary);
    margin: 0 0.3rem;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    overflow: hidden;
    width: 0;
    transition: width 0.3s;
    text-shadow: 0 0 10px var(--glow-color);
}

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    position: relative;
}

.terminal-window {
    width: 100%;
    max-width: 800px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
    overflow: hidden;
}

.terminal-header {
    background: var(--darker-bg);
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-body {
    padding: 2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    line-height: 1.8;
}

.terminal-line {
    margin: 0.5rem 0;
}

.prompt {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--glow-color);
}

.terminal-output {
    color: var(--text-primary);
    margin-left: 1rem;
    opacity: 0;
}

.typing-effect {
    animation: typing 1s forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }

@keyframes typing {
    to { opacity: 1; }
}

.terminal-cursor {
    display: inline-block;
    color: var(--primary-color);
    animation: blink 1s infinite;
}

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

.success {
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 8rem 5%;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title .hash {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.section-title .hex-code {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 1rem;
    font-weight: 400;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.scan-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan-horizontal 3s ease-in-out infinite;
}

@keyframes scan-horizontal {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--text-secondary);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.95);
    transition: all 0.3s;
}

.profile-img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

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

.stat {
    display: flex;
    justify-content: space-between;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    color: var(--text-primary);
    font-weight: 600;
}

.stat-value.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--glow-color);
}

.about-text {
    color: var(--text-secondary);
}

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

.glitch-text {
    font-family: 'Share Tech Mono', monospace;
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    margin-bottom: 1rem !important;
    position: relative;
    display: inline-block;
}

.skills-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.tag {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-family: 'Share Tech Mono', monospace;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-5px);
}

.skill-icon {
    width: 60px;
    height: 60px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    stroke-width: 2;
}

.skill-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--darker-bg);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    position: relative;
    animation: loadBar 1.5s ease-out;
}

@keyframes loadBar {
    from { width: 0 !important; }
}

.progress-text {
    position: absolute;
    right: 0.5rem;
    top: -1.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-family: 'Share Tech Mono', monospace;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.timeline-tab {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timeline-tab .tab-icon {
    font-size: 1.2rem;
}

.timeline-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.timeline-tab.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--border-color) 10%, var(--border-color) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-color);
    animation: pulse 2s infinite;
}

.timeline-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.timeline-content {
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 3rem);
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 3rem);
}

.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; }

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

.timeline-dot {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--dark-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-color);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: calc(50% - 8px);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: calc(50% - 8px);
}

.timeline-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 8px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-card::before {
    right: -20px;
    border-left-color: var(--border-color);
}

.timeline-item:nth-child(even) .timeline-card::before {
    left: -20px;
    border-right-color: var(--border-color);
}

.timeline-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateX(-5px);
}

.timeline-item:nth-child(even) .timeline-card:hover {
    transform: translateX(5px);
}

.timeline-period {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-period::before {
    content: '[';
    color: var(--primary-color);
}

.timeline-period::after {
    content: ']';
    color: var(--primary-color);
}

.timeline-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.timeline-tech .tech-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--primary-color);
}

.timeline-achievements {
    margin-top: 1rem;
}

.timeline-achievements h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
}

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

.timeline-achievements li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-achievements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-5px);
}

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

.project-status {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
}

/* Semantic status classes - use these in HTML for automatic colors */
.project-status-completed {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.project-status-active {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

/* Default fallback for projects without specific status classes */
.project-card:nth-child(odd) .project-status:not(.project-status-completed):not(.project-status-active) {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.project-card:nth-child(even) .project-status:not(.project-status-completed):not(.project-status-active) {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.project-id {
    font-family: 'Share Tech Mono', monospace;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.tech-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
}

.project-links {
    display: flex;
    gap: 1.5rem;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.project-link:hover::after {
    width: 100%;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-method svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

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

.form-group label {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.8rem;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 20px var(--glow-color);
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

.footer-content p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* SEO Footer */
.seo-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.seo-section h3,
.seo-section h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
}

.seo-section h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.seo-section p,
.seo-section ul {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.seo-section ul {
    list-style: none;
    padding: 0;
}

.seo-section li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.seo-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.seo-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.seo-section a:hover {
    color: var(--primary-color);
}

.seo-links {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.seo-links p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.seo-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.seo-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        border-left: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section {
        padding: 5rem 5%;
    }

    /* Timeline responsive */
    .timeline-line {
        left: 2rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 4rem;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: calc(2rem - 8px);
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-card::before {
        right: auto;
        left: -20px;
        border-left-color: transparent;
        border-right-color: var(--border-color);
    }

    .timeline-card:hover,
    .timeline-item:nth-child(even) .timeline-card:hover {
        transform: translateX(5px);
    }

    .timeline-tabs {
        flex-direction: column;
    }

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

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

    .terminal-body {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .navbar {
        padding: 1rem 5%;
    }
}