.profile-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(135,206,235,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #87CEEB, #90EE90, #87CEEB);
    box-shadow: 
        0 8px 24px rgba(135,206,235,0.4),
        inset 0 2px 4px rgba(255,255,255,0.5);
    animation: ringRotate 8s linear infinite;
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.avatar-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #4ade80;
    border: 3px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(74,222,128,0.5);
}

.profile-info {
    position: relative;
    z-index: 1;
}

.profile-nickname {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #0d5c6b, #1a8a7d, #2dd4a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.2;
}

.profile-realname {
    font-size: 16px;
    color: rgba(26, 58, 74, 0.7);
    font-weight: 500;
    margin-bottom: 12px;
}

.profile-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(135,206,235,0.3), rgba(144,238,144,0.2));
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #1a3a4a;
    backdrop-filter: blur(10px);
}

.profile-location svg {
    width: 16px;
    height: 16px;
    fill: #0d5c6b;
}

.section-card {
    padding: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(135,206,235,0.5), rgba(144,238,144,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(135,206,235,0.3),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.section-icon svg {
    width: 20px;
    height: 20px;
    fill: #0d5c6b;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a4a;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.25));
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.skill-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(135,206,235,0.3),
        inset 0 1px 0 rgba(255,255,255,0.8);
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
}

.skill-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-logo svg {
    width: 40px;
    height: 40px;
}

.skill-name {
    font-size: 12px;
    font-weight: 600;
    color: #1a3a4a;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.25));
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.7);
    text-decoration: none;
    color: #1a3a4a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 24px rgba(135,206,235,0.3),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.link-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon svg {
    width: 22px;
    height: 22px;
}

.link-info {
    min-width: 0;
}

.link-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.link-url {
    font-size: 11px;
    color: rgba(26, 58, 74, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.server-panel {
    padding: 16px;
    max-width: 360px;
}

.server-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

.server-image-wrapper img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.server-image-wrapper:hover img {
    transform: scale(1.05);
}

.server-gloss {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.server-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a3a4a;
}

.server-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.footer-note {
    padding: 8px 32px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(26, 58, 74, 0.5);
    font-style: italic;
    width: auto;
    align-self: center;
    border-radius: 100px;
}
