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

.about-section {
    background-color: rgba(122, 1, 119, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-intro p {
    margin-bottom: 20px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.subsection-title {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.skill-category {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.skill-list {
    line-height: 1.6;
    opacity: 0.85;
}

.employment-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.employment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.employment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.employment-header > div:first-child {
    flex: 1;
    min-width: 0;
}

.employment-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.employment-company {
    font-size: 1.1rem;
    opacity: 0.9;
}

.employment-date {
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: right;
    flex-shrink: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .employment-header {
        flex-direction: column;
        gap: 10px;
    }

    .employment-date {
        text-align: left;
        white-space: normal;
    }
}

.employment-description ul {
    list-style-type: none;
    padding-left: 0;
}

.employment-description li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.employment-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.employment-description strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.education-content {
    line-height: 1.8;
}

.personal-section {
    margin-top: 30px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.media-category h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.media-category ul {
    list-style-type: none;
    padding-left: 0;
}

.media-category li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.media-category li:before {
    content: "›";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.community-link {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.community-link:hover {
    opacity: 0.8;
}

.collapsible {
    margin-top: 20px;
}

.collapsible-header {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.collapsible-header:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.collapsible-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.collapsible-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.collapsible-header.active .collapsible-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    display: none;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
}

.collapsible-content.show {
    display: block;
}

.experience-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.experience-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.experience-company {
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 5px;
}

.experience-date {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.experience-description {
    margin-left: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.experience-description p {
    margin-bottom: 15px;
}

.experience-description p:last-child {
    margin-bottom: 0;
}

.media-category {
    position: relative;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-category:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.media-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(122, 1, 119, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s ease;
}

.media-category.expanded .media-bubble {
    top: 20px;
    transform: translate(-50%, 0);
}

.media-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 80px;
}

.media-category.expanded .media-content {
    opacity: 1;
    max-height: 500px;
}

.media-category.collapsed {
    min-height: 100px;
}

.repo-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.repo-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.repo-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.repo-name a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.repo-name a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.repo-description {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.repo-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: auto;
}

.repo-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.repo-language {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.language-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

