

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0f1115;
    color: #eaeaea;
}



.main-content {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 960px) {
    .main-content {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
        padding-top: calc(var(--mud-appbar-height) + 24px);
    }
}




    .layout-container > .mud-grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }



.page-title {
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    color: #E5E7EB;
    margin-bottom: 1.2rem;
}



.layout {
    width: 100%;
}

.panel {
    width: 100%;
}




svg {
    display: block;
    width: 100%;
    height: auto;
}


#jobs,
#cats {
    margin: 0;
    padding: 0;
}



.btn-custom {
    background-color: #000000;
    border: 1px solid #ff9800;
    color: white;
    border-radius: 20px;
    display: inline-flex;
    width: auto !important;
}

    .btn-custom:hover {
        background-color: #111111;
        border-color: #fb8c00;
    }



.hero {
    display: flex;
    gap: 3rem;
    
    align-items: center;
}


.hero-photo img {
    
    border-radius: 12px;
    object-fit: cover;
}

.hero-about h1 {
    margin: 0;
    font-size: 2.2rem;
}

.hero-about h2 {
    margin: 0.5rem 0 1.5rem;
    font-weight: 400;
    color: #9aa4b2;
}

.hero-about p {
    
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-about ul.hero-list {
    
    padding-left: 1.2rem; 
    margin: 0 0 1.5rem 0;
    list-style-position: inside;
}

    .hero-about ul.hero-list li {
        margin-bottom: 0.6rem;
        line-height: 1.6;
    }
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-photo img {
        width: 200px;
    }
}

.experience-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 140px); 
}


.experience-header {
    position: sticky;
    top: 0;
    z-index: 10;
    
    padding-bottom: 12px;
}


.experience-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 12px;
}


.experience-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}
#radarHost {
    width: 100%;
    height: 100vh; 
}
.page-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-line {
    flex-grow: 1; 
    height: 2px;
    background-color: #fb8c00;
    opacity: 1;
}




.page-header {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}

    .page-header h1 {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

.page-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.dashboard-card {
    background-color: #222222;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}