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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', sans-serif;
    background-color: #0f172a;
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    position: relative;
    min-height: 100vh;
}

.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px at 50% 50%, rgba(29, 78, 216, 0.15), transparent 80%);
    pointer-events: none;
    z-index: 1;
    transition: background 0.1s ease;
}

.main-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
}



.layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 96px 0;
}

.header-content {
    margin-bottom: 32px;
}

.name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e2e8f0;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.bio {
    max-width: 320px;
    line-height: 1.6;
    color: #cbd5e1;
}

.aka {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2dd4bf;
    margin-bottom: 16px;
    opacity: 0.9;
    letter-spacing: 0.025em;
}

.links-grid {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 64px;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 10px;
    color: #2dd4bf;
    flex-shrink: 0;
}

.link-icon svg {
    width: 20px;
    height: 20px;
}

.link-text {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    flex: 1;
}

.resources-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.resource-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.resource-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.resource-card p {
    margin: 0 0 20px 0;
    color: #94a3b8;
    line-height: 1.6;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #2dd4bf;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(45, 212, 191, 0.2);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-1px);
}

.resource-link .link-icon {
    font-size: 1.125rem;
    background: none;
    color: inherit;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .links-grid {
        gap: 12px;
    }
    
    .link-card {
        padding: 14px 16px;
        gap: 12px;
        min-height: 56px;
    }
    
    .link-icon {
        width: 36px;
        height: 36px;
    }
    
    .link-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .link-text {
        font-size: 0.95rem;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .layout {
        gap: 24px;
    }
    
    .sidebar {
        padding: 24px 20px;
    }
    
    .header-content {
        margin-bottom: 20px;
    }
    
    .name {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
    
    .aka {
        margin-bottom: 12px;
    }
    
    .nav {
        margin-bottom: 20px;
    }
    
    .social-links {
        gap: 16px;
    }
    
    .content {
        padding: 20px 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .section {
        margin-bottom: 24px;
    }
    
    .resources-grid {
        gap: 16px;
        margin-top: 16px;
        width: 100%;
    }
    
    .resource-card {
        padding: 16px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .resource-links {
        gap: 8px;
    }
    
    .resource-link {
        padding: 12px 16px;
        font-size: 0.85rem;
        width: 100%;
        display: block;
        text-align: center;
    }
}

.nav {
    margin-top: 64px;
}

.nav ul {
    list-style: none;
}

.nav li {
    margin-bottom: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #64748b;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #e2e8f0;
}

.nav-indicator {
    width: 32px;
    height: 1px;
    background-color: #475569;
    margin-right: 16px;
    transition: all 0.2s ease;
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    width: 64px;
    background-color: #e2e8f0;
}

.social-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin-top: 32px;
}

.social-links li {
    margin-right: 20px;
}

.social-links a {
    display: block;
    color: #64748b;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #e2e8f0;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.content {
    padding-top: 96px;
}

.section {
    margin-bottom: 64px;
    scroll-margin-top: 96px;
}

.section-header {
    position: sticky;
    top: 0;
    z-index: 20;
    margin: 0 -24px 16px;
    padding: 20px 24px;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.section-header h2 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e2e8f0;
}

.section-content {
    padding: 0 24px;
}

.section-content p {
    margin-bottom: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

.link {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link:hover {
    color: #2dd4bf;
}

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

.experience-item {
    margin-bottom: 48px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.experience-grid:hover {
    background-color: rgba(30, 41, 59, 0.5);
    box-shadow: inset 0 1px 0 0 rgba(148, 163, 184, 0.1);
}

.experience-date {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 8px;
}

.experience-title {
    margin-bottom: 8px;
}

.experience-title a {
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.experience-title a:hover {
    color: #2dd4bf;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 8px;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(45, 212, 191, 0.1);
    color: #2dd4bf;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
    margin-top: 8px;
}

.resume-link {
    margin-top: 48px;
}

.resume-link a {
    font-weight: 600;
    color: #e2e8f0;
}

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

.project-item {
    margin-bottom: 48px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.project-grid:hover {
    background-color: rgba(30, 41, 59, 0.5);
    box-shadow: inset 0 1px 0 0 rgba(148, 163, 184, 0.1);
}

.project-content h3 {
    margin-bottom: 8px;
}

.project-content h3 a {
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-content h3 a:hover {
    color: #2dd4bf;
}

.project-image {
    order: -1;
}

.project-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border: 2px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.project-grid:hover .project-image img {
    border-color: rgba(148, 163, 184, 0.3);
}

.footer {
    max-width: 448px;
    padding-bottom: 64px;
    font-size: 14px;
    color: #64748b;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #2dd4bf;
}

@media (min-width: 768px) {
    .main-content {
        padding: 64px 48px;
    }
    
    .section-header {
        margin: 0 -48px 16px;
        padding: 20px 48px;
    }
    
    .section-content {
        padding: 0 48px;
    }
    
    .experience-grid {
        grid-template-columns: 2fr 6fr;
        gap: 32px;
    }
    
    .project-grid {
        grid-template-columns: 6fr 2fr;
        gap: 32px;
    }
    
    .project-image {
        order: 0;
    }
}

@media (min-width: 1024px) {
    .layout {
        flex-direction: row;
        gap: 16px;
    }
    
    .sidebar {
        position: sticky;
        top: 0;
        max-height: 100vh;
        width: 48%;
        padding: 96px 0;
    }
    
    .content {
        width: 52%;
        padding: 96px 0;
    }
    
    .section-header {
        position: relative;
        margin: 0;
        padding: 0;
        background: none;
        backdrop-filter: none;
        border: none;
        opacity: 1;
        pointer-events: auto;
    }
    
    .section-content {
        padding: 0;
    }
    
    .experience-grid {
        grid-template-columns: 2fr 6fr;
        gap: 32px;
    }
    
    .project-grid {
        grid-template-columns: 6fr 2fr;
        gap: 32px;
    }
    
    .project-image {
        order: 0;
    }
}

@media (min-width: 1280px) {
    .main-content {
        padding: 64px 48px;
    }
}

@media (min-width: 1536px) {
    .main-content {
        padding: 64px 48px;
    }
}
