body {
    background: radial-gradient(circle at 60% 20%, #00eaff22 0%, #181818 80%);
}

.sobre-container {
    max-width: 900px;
    margin: 110px auto 40px auto;
    background: linear-gradient(120deg, #23272b 80%, #3498db 100%);
    border-radius: 32px;
    box-shadow: 0 12px 48px #00eaff33;
    padding: 56px 38px 48px 38px;
    text-align: center;
    animation: fadeIn 1.2s;
    position: relative;
    overflow: hidden;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
.sobre-container::before {
    content: "";
    position: absolute;
    top: -80px; left: -80px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, #00eaff33 60%, transparent 100%);
    z-index: 0;
}

.sobre-title {
    font-size: 2.4rem;
    color: #00eaff;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 24px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px #00eaff44;
}

.sobre-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 24px #00eaff33;
    border: 4px solid #3498db;
    margin-bottom: 22px;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1;
}
.sobre-img:hover {
    transform: scale(1.09) rotate(-2deg);
    box-shadow: 0 8px 32px #00eaff66;
}

.sobre-desc {
    font-size: 1.22rem;
    color: #b0c4de;
    margin-bottom: 32px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    background: rgba(34,34,34,0.7);
    border-radius: 16px;
    padding: 18px 12px;
    box-shadow: 0 2px 12px #00eaff22;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.skill-item {
    background: linear-gradient(90deg, #23272b 60%, #3498db 100%);
    color: #00eaff;
    border-radius: 14px;
    padding: 16px 32px;
    font-size: 1.15rem;
    font-family: 'Share Tech Mono', monospace;
    box-shadow: 0 2px 12px #00eaff22;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #00eaff22;
}
.skill-item:hover {
    background: #00eaff;
    color: #181818;
    transform: scale(1.10);
    box-shadow: 0 8px 24px #00eaff44;
}

.sobre-social {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.sobre-social a {
    color: #3498db;
    background: #222;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 12px #00eaff22;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.sobre-social a:hover {
    background: #00eaff;
    color: #181818;
    transform: scale(1.15);
    box-shadow: 0 8px 24px #00eaff44;
}

.back-link {
    margin-top: 38px;
    font-size: 1.08rem;
    font-weight: 700;
    background: linear-gradient(90deg, #3498db 60%, #00eaff 100%);
    color: #fff;
    padding: 12px 38px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 12px #00eaff44;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
}
.back-link:hover {
    background: #00eaff;
    color: #181818;
    transform: scale(1.08);
}

@media (max-width: 700px) {
    .sobre-container {padding: 18px 4px;}
    .sobre-title {font-size: 1.5rem;}
    .skills-list {gap: 10px;}
    .skill-item {padding: 10px 14px; font-size: 1rem;}
    .sobre-img {width: 90px; height: 90px;}
    .sobre-desc {font-size: 1rem;}
    .sobre-social a {width: 38px; height: 38px; font-size: 1.2rem;}
}