body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #0d0d0d;
    color: #e5e5e5;
    font-family: "Inter", system-ui, sans-serif;
}

.app-shell {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.main-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.sidebar {
    width: 260px;
    background-color: #0a0a0a;
    border-right: 1px solid #222;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #222;
    margin-bottom: 24px;
}

.profile-info h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.profile-info p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.nav-link.active {
    background-color: #222;
    color: #fff;
}

.icon {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;

    .bento-card {
        background-color: #111;
        border: 1px solid #222;
        border-radius: 24px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        transition:
            transform 0.2s ease,
            border-color 0.2s ease;
    }

    .bento-card:hover {
        transform: translateY(-2px);
        border-color: #333;
    }

    .col-span-2 {
        grid-column: span 2;
    }
    .col-span-4 {
        grid-column: span 4;
    }
    .row-span-2 {
        grid-row: span 2;
    }

    .card-title {
        font-size: 14px;
        font-weight: 600;
        color: #888;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .card-content {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
    }

    @media (max-width: 1000px) {
        .bento-grid {
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
        }
        .col-span-2,
        .col-span-4,
        .row-span-2 {
            grid-column: span 1;
            grid-row: span 1;
        }
    }
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tech-tag {
    background-color: #222;
    color: #aaa;
    border: 1px solid #333;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.tech-tag:hover {
    background-color: #eee;
    color: #000;
    border-color: #fff;
    cursor: default;
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: #1a1a1a;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 10px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.project-link:hover {
    border-color: #444;
    background-color: #222;
}

.experience-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    position: relative;
    transition: border-color 0.2s;
}

.experience-card:hover {
    border-color: #444;
}

.experience-card::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 24px;
    bottom: -54px;
    width: 2px;
    background-color: #222;
}

.experience-card:last-child::before {
    display: none;
}

.experience-card::after {
    content: "";
    position: absolute;
    left: -24px;
    top: 30px;
    width: 10px;
    height: 10px;
    background-color: #444;
    border-radius: 50%;
    border: 2px solid #0d0d0d;
}

.role-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
}

.company-name {
    font-size: 14px;
    color: #8ab4f8;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-badge {
    display: inline-block;
    background-color: #222;
    color: #888;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 255, 0, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: #888;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background-color: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #333;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    border-color: #666;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #222;
    border-color: #666;
}
