/* ======== タワレコ風 COUNTDOWNセクション (グラデーションなし) ======== */
.countdown-section {
    position: relative;
    text-align: center;
    padding: 100px 20px 80px;
    /* 背景をシンプルな濃い色（黒）の単色に変更 */
    background: #111111; 
    /* タワレコの赤と黄色のボーダーで強調 */
    border-top: 8px solid var(--tawareco-red); /* 赤 */
    border-bottom: 8px solid var(--tawareco-yellow); /* 黄色/金 */
    overflow: hidden;
    /* シンプルな影に変更 */
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* スポットライト・照明演出風背景 (グラデーション/アニメーションを削除) */
.countdown-section::before {
    content: none; /* 全て削除 */
}

@keyframes bgPulse {
    /* アニメーション削除 */
}

/* 見出しタイトル（力強いタワレコ風） */
.countdown-heading {
    text-align: center;
    font-size: 4em;
    font-family: 'Luckiest Guy', 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    color: var(--tawareco-yellow); /* 黄色/金で目立たせる */
    /* タワレコ風のツートンカラーの影を適用 */
    text-shadow: 
        4px 4px 0px var(--tawareco-red), /* 赤 */
        8px 8px 0px var(--tawareco-white); /* 白 */
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 20px 0;
    margin: 0 auto 50px;
    transform: none; 
    position: relative;
    z-index: 1;
    max-width: 800px;
    letter-spacing: 0.15em;
}

/* 日付ボックス（シンプルに強調） */
.countdown-date {
    margin: 50px 0 60px;
    position: relative;
    z-index: 2;
    display: inline-block;
    line-height: 1;
    transform: none; 
    box-shadow: none; /* 影を削除 */
    border-color: transparent;
}

.countdown-date .date-box {
    top: 50%; /* 中央に配置 */
    transform: translate(-50%, -50%);
    display: inline-block;
    padding: 26px 40px;
    border-radius: 8px;
    /* 背景は単色に変更 */
    background: var(--tawareco-black);
    /* シンプルな影に変更 */
    box-shadow: 8px 8px 0px var(--tawareco-red), 12px 12px 0px var(--tawareco-white); /* 赤、白 */
    /* タワレコカラーの赤のボーダー */
    border: 4px solid var(--tawareco-red); 
    position: relative;
    transition: none;
    font-size: 2.2rem; /* より大きく */
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
}

/* 日付上に重ねる筆記体 (複雑な演出を削除し、シンプルな強調として残す) */
.countdown-date .date-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -72%) rotate(-6deg);
    font-family: "Oooh Baby", cursive;
    font-size: 5rem;
    line-height: 1;
    color: var(--tawareco-yellow); /* 黄色/金 */
    text-shadow: 3px 3px 0px var(--tawareco-red); /* 赤の影 */
    opacity: 1; /* 常に見えるように */
    animation: none; /* アニメーション削除 */
    white-space: nowrap;
    padding-top: 0;
    padding-bottom: 0;
}

/* カウントダウンタイマー（デジタル＋タワレコ風） */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
}

.countdown-timer div {
    /* 背景とボーダーを単色に変更 */
    background: var(--tawareco-black);
    border: 3px solid var(--tawareco-red); /* 赤の太いボーダー */
    border-radius: 6px;
    padding: 20px 24px;
    min-width: 90px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* シンプルな光彩を残す */
    transition: none;
    position: relative;
}

.countdown-timer div:hover {
    transform: none; /* アニメーション削除 */
    border-color: var(--tawareco-yellow); /* ホバーで黄色/金に変化 */
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.8);
}

.countdown-timer span {
    display: block;
    font-size: 3.2rem;
    color: var(--tawareco-yellow); /* 黄色/金 */
    letter-spacing: 1px;
    text-shadow: none; /* シンプルにするため削除 */
    font-family: "Bruno Ace", sans-serif;

}

.countdown-timer small {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-family: 'Yusei Magic', sans-serif;
}

/* メッセージ部分（シンプルに） */
.countdown-message {
    font-size: 1.1rem;
    color: #fff; /* 白に変更 */
    letter-spacing: 1px;
    margin-top: 80px; 
    font-family: "Yusei Magic", sans-serif;
    z-index: 1;
    position: relative;
    text-shadow: none;
}

.countdown-finish {
    font-size: 2rem;
    color: var(--tawareco-red); /* 赤 */
    font-family: "Yusei Magic", sans-serif;
    margin-top: 40px;
    z-index: 1;
    position: relative;
    text-shadow: 2px 2px 0px var(--tawareco-yellow); /* 黄色の影 */
}

/* ======== モバイル調整 ======== */
@media (max-width: 600px) {
    .countdown-section {
        padding: 70px 12px 60px;
    }

    .countdown-heading {
        font-size: 2.8rem;
    }

    .countdown-date .date-box {
        padding: 20px 26px;
    }

    .countdown-date .date-text {
        font-size: 3.5rem;
    }

    .countdown-timer {
        gap: 12px;
    }

    .countdown-timer div {
        padding: 14px 18px;
        min-width: 80px;
        border-width: 2px;
    }

    .countdown-timer span {
        font-size: 2.5rem;
    }
}