
/* アテナ様ステータスグラフ */
#athena-status-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.status-container {
    width: 650px;  /* 枠を650pxに拡大 */
    max-width: 98%;  /* レスポンシブ対応 */
    padding: 25px 40px;  /* 左右のパディングを増やす */
    background: rgba(255, 255, 255, 0.02);  /* ほぼ透明 */
    backdrop-filter: blur(3px);  /* ブラー効果をさらに弱める */
    -webkit-backdrop-filter: blur(3px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.status-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
}

.status-header {
    margin-bottom: 20px;
}

.status-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-info {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.chart-wrapper {
    background: rgba(0, 0, 0, 0.05);  /* ほぼ透明 */
    border-radius: 16px;
    padding: 25px 35px;  /* ゆったりとした内部スペース */
    margin: 15px 0;
}

#status-chart {
    max-width: 100%;
    height: 240px !important;
}

.status-footer {
    text-align: center;
    margin-top: 20px;
}

.total-score {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.status-comment {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-style: italic;
}

/* パルスアニメーション */
@keyframes gentle-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.02);
        opacity: 0.95;
    }
}

.status-container:hover {
    animation: gentle-pulse 3s ease-in-out infinite;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .status-container {
        width: 98%;
        padding: 15px 20px;
    }
}

/* タブレット対応 */
@media (min-width: 768px) and (max-width: 1024px) {
    .status-container {
        width: 600px;
        padding: 20px 30px;
    }
}

/* 大画面対応（デスクトップ） */
@media (min-width: 1400px) {
    .status-container {
        width: 700px;  /* さらに広い枠 */
        padding: 30px 50px;
    }
}

