/* about.html専用スタイル */

.desc {
    color: #b0b0b0;
}

.about-main .name {
    color: #e0e0e0;
}

/* スキルリストのスタイリング */
.about-main ul {
    color: #b0b0b0;
}

/* ガラス効果（about.html用） */
.about-main {
    background: rgba(42, 42, 42, 0.85) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(130, 181, 209, 0.1) !important;
    border: 1px solid rgba(130, 181, 209, 0.2) !important;
    position: relative;
}

.about-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130, 181, 209, 0.5), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.about-main > div,
.about-main h2,
.about-main p,
.about-main ul {
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* (Padding uses the defaults from index.css layout; no overrides here) */