:root {
    --primary: #6c63ff;
    --primary-dark: #5a52d5;
    --secondary: #00d4aa;
    --accent: #ff6b6b;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b80;
    --border: #2a2a3a;
    --gradient-1: linear-gradient(135deg, #6c63ff 0%, #00d4aa 100%);
    --gradient-2: linear-gradient(135deg, #ff6b6b 0%, #6c63ff 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(108, 99, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: clamp(100px, 15vh, 120px) 0 clamp(60px, 10vh, 80px);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.greeting {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter {
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
    color: var(--secondary);
    font-family: 'Fira Code', monospace;
    margin-bottom: 20px;
    min-height: 40px;
}

.typewriter-cursor {
    animation: blink 1s infinite;
}

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

.hero-description {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 32px);
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}

.hero-socials {
    display: flex;
    gap: 20px;
}

.hero-socials a {
    width: clamp(40px, 5vw, 45px);
    height: clamp(40px, 5vw, 45px);
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: var(--transition);
}

.hero-socials a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Code Window */
.hero-visual {
    display: flex;
    justify-content: center;
}

.code-window {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    width: 100%;
    max-width: min(450px, 90vw);
    box-shadow: var(--shadow), var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

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

.code-header {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 15px);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.code-title {
    margin-left: 10px;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
}

.code-body {
    padding: clamp(15px, 3vw, 20px);
    overflow-x: auto;
}

.code-body pre {
    font-family: 'Fira Code', monospace;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    line-height: 1.7;
}

.code-body .keyword { color: #c678dd; }
.code-body .class-name { color: #e5c07b; }
.code-body .function { color: #61afef; }
.code-body .string { color: #98c379; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
}

.mouse {
    width: clamp(22px, 4vw, 25px);
    height: clamp(35px, 6vw, 40px);
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: clamp(6px, 1.5vw, 8px);
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 18, 26, 0.5) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: clamp(200px, 50vw, 280px);
    height: clamp(200px, 50vw, 280px);
    margin: 0 auto;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.image-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: 0;
}

.about-text h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-muted);
}

.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    color: var(--text-muted);
}

.info-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* Skills Section */
.skills {
    background: var(--bg-dark);
}

.skills-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 28px);
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skill-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(20px, 4vw, 30px);
    text-align: center;
    transition: var(--transition);
}

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

.skill-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-card h4 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 8px;
}

.skill-card p {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--text-muted);
    margin-bottom: 15px;
}

.skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

/* Projects Section */
.projects {
    background: linear-gradient(180deg, rgba(18, 18, 26, 0.5) 0%, var(--bg-dark) 100%);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: clamp(8px, 1.5vw, 10px) clamp(18px, 3vw, 24px);
    border: none;
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

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

.project-card.hidden {
    display: none;
}

.project-image {
    height: clamp(160px, 25vw, 200px);
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.project-info {
    padding: clamp(16px, 3vw, 25px);
}

.project-info h3 {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 10px;
}

.project-info p {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(108, 99, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 212, 170, 0.15) 0%, transparent 50%);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: var(--transition);
    transform: translateY(20px);
}

.project-tags span {
    padding: 5px 12px;
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    font-weight: 500;
}

.project-card:hover .project-overlay a {
    transform: translateY(0);
}

.project-overlay a:hover {
    background: var(--secondary);
}

.project-info {
    padding: clamp(16px, 3vw, 25px);
}

.project-info h3 {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 10px;
}

.project-info p {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    padding: 5px 12px;
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    font-weight: 500;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    padding: 5px 12px;
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

/* Experience Section */
.experience {
    background: var(--bg-dark);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding: 0 0 50px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(14px, 2vw, 16px);
    height: clamp(14px, 2vw, 16px);
    border-radius: 50%;
    background: var(--gradient-1);
    border: 3px solid var(--bg-dark);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 25px);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-1);
    border-radius: 20px;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.timeline-tags span {
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--secondary);
    border-radius: 15px;
    font-size: clamp(0.7rem, 1.2vw, 0.75rem);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--secondary);
    border-radius: 15px;
    font-size: 0.75rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 18, 26, 0.8) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 15px;
}

.contact-icon {
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--primary);
    transition: var(--transition);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 15px) clamp(16px, 3vw, 20px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-family: inherit;
    transition: var(--transition);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: white;
}

.contact-text h4 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form .btn {
    justify-content: center;
}

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

.form-status {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 24px;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer-links h4,
.footer-social h4 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: clamp(36px, 6vw, 42px);
    height: clamp(36px, 6vw, 42px);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Large Desktop Optimizations */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero-content {
        gap: 80px;
    }

    .about-content {
        gap: 80px;
    }

    .contact-content {
        gap: 80px;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .skill-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: 35px;
        box-shadow: none;
    }

    .nav-overlay {
        display: none !important;
    }

    .code-window {
        max-width: min(400px, 85vw);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-info {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-text .btn {
        margin: 0 auto;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 80px 40px;
        gap: 25px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1001;
    }

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

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }

    .typewriter {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2rem);
        margin-bottom: 40px;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-stats {
        gap: 20px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .skills-tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .hero-socials {
        gap: 12px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 30px;
    }

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

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

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .typewriter {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .nav-menu {
        width: 85%;
    }
}
