@charset "UTF-8";

/**
 * Future Prize Alert Styles
 */
.prize-alert-box {
    background-color: #fff3cd; /* 警告色の背景（薄い黄色） */
    border: 1px solid #ffeeba; /* 境界線 */
    border-left: 5px solid #ffc107; /* 左側のアクセント強調 */
    color: #856404; /* テキスト色 */
    padding: 1.2rem;
    margin: 2em 0; /* 上下の余白 */
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* 僅かな立体感 */
    font-size: 0.95rem;
    line-height: 1.6;
}

.prize-alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(133, 100, 4, 0.3);
    padding-bottom: 0.5rem;
}

.prize-alert-icon {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
    animation: pulse-alert 2s infinite; /* 注目を集めるアニメーション */
}

.prize-alert-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.prize-alert-body p {
    margin: 0;
    font-size: 0.9em; /* 本文は少し小さめにして圧迫感を減らす */
}

.prize-alert-body strong {
    background: linear-gradient(transparent 60%, rgba(255, 193, 7, 0.4) 60%); /* マーカー風の強調 */
    font-weight: bold;
}

/* アニメーション定義 */
@keyframes pulse-alert {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* モバイル調整 */
@media screen and (max-width: 480px) {
    .prize-alert-box {
        padding: 1rem;
        margin: 1.5em 0;
    }
    .prize-alert-title {
        font-size: 1rem;
    }
}