.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.profile-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--header-border);
    backdrop-filter: blur(5px);
}

.profile-image {
    flex: 0 0 200px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.profile-info p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


.section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--header-border);
}

.section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.skill-tag {
    background: rgba(0, 219, 222, 0.1);
    color: #00dbde;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid var(--header-border);
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.blog-post h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-post h3 a:hover {
    color: #00dbde;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
    }

    .profile-image {
        flex: 0 0 150px;
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
}

.running-man {
    display: inline-block;
    position: relative;
    padding: 0.5rem 1rem 0.5rem 2rem;
    background: transparent;
    color: #00dbde;
    text-decoration: none;
    border: 1px solid #00dbde;
    border-radius: 4px;
    font-weight: 500;
    transition: all 1s ease;
    overflow: hidden;
}

.running-man:before {
    content: "🌸";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    animation: run 0.8s infinite linear;
}

@keyframes run {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.running-man:hover {
    background: rgba(0, 219, 222, 0.1);
}