@charset "UTF-8";
.hero {
    height: 40vh;
}

.section-title {
    margin-top: 8rem;
}

.prize-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 0 10px;
}

.prize-icon {
    width: 64px;
    height: auto;
    background-color: #f9f9f9;
    border-radius: 0.4rem;
    padding: 0.4rem;
    margin-right: 0.8rem;
    animation: pop 0.5s ease-in-out forwards;
    animation-delay: 2.7s;
}


.contact {
    padding: 1rem 2rem 8rem;
}

/* === Daily Tournament Section Styles === */
.daily-tournament {
    background-color: #f9f9f9;
    padding: 6rem 2rem 13rem;
    color: #1a1a1a;
}
.daily-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Title */
.daily-tournament .section-title {
    font-size: 4rem;
    font-family: 'Orbitron', sans-serif;
    color: #00423c;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}
.daily-tournament .section-title .jp {
    font-size: 2rem;
    color: #00423c;
    margin-top: 0.5rem;
}

/* Tagline with spanning slashes */
.daily-tagline {
    position: relative;
    display: inline-block;
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin: 2rem 0 3rem;
    color: #00423c;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}
.daily-tagline::before,
.daily-tagline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 6rem;
    line-height: 1.2;
    color: #00423c;
    display: flex;
    align-items: center;
}
.daily-tagline::before {
    content: '＼';
    left: -22px;
}
.daily-tagline::after {
    content: '／';
    right: -22px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Fee Boxes */
.box1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
}
.box-list.fee-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.box-list.fee-boxes .box {
    background-color: #ffffff;
    border: 2px solid #00423c;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    width: 270px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.box-list.fee-boxes .box:nth-child(1) { animation-delay: 0.7s; }
.box-list.fee-boxes .box:nth-child(2) { animation-delay: 0.9s; }
.box-list.fee-boxes .box:nth-child(3) { animation-delay: 1.1s; }
.box-label {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00423c;
    margin-bottom: 0rem;
}

.box-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffd700;
}

.schedule-boxes {
    margin-top: 5rem;
}

/* Schedule Boxes (Start/Close) Distinct Style */
.box-list.schedule-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
.box-list.schedule-boxes .box {
    width: 260px;
    background-color: #006d5a;
    border: 3px solid #ffb300;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.box-list.schedule-boxes .box:nth-child(1) { animation-delay: 1.3s; }
.box-list.schedule-boxes .box:nth-child(2) { animation-delay: 1.5s; }
.box-list.schedule-boxes .box .box-label {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #ffb300;
}
.box-list.schedule-boxes .box .box-value {
    font-size: 4rem;
    font-weight: 700;
}

/* Chip Stack Section */
.stack-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    margin-top: 3rem;
}
.stack-box {
    background-color: #ffffff;
    border: 2px dashed #ffd700;
    border-radius: 1rem;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.7s;
}
.stack-image img {
    width: 80px;
}
.stack-text .box-label {
    font-size: 1.6rem;
    color: #00423c;
}
.stack-text .box-value {
    font-size: 2rem;
    font-weight: bold;
    color: #00423c;
}

/* Prize Information */
.prize-box {
    margin-bottom: 2rem;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.9s;
    margin-top: 3rem;
    text-align: center;
}
.prize-box .box-label {
    font-size: 2.4rem;
    color: #00423c;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}
.prize-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}
.prize-list li {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    background-color: rgba(255,255,255,0.8);
    border-radius: 0.8rem;
    padding: 0.8rem 1.2rem;
    width: 100%;
    justify-content: center;
}
.prize-list li:nth-child(1) { animation-delay: 2.1s; background-color: rgba(255,215,0,0.3); }
.prize-list li:nth-child(2) { animation-delay: 2.3s; background-color: rgba(192,192,192,0.3); }
.prize-list li:nth-child(3) { animation-delay: 2.5s; background-color: rgba(205,127,50,0.3); }
.prize-icon {
    width: 64px;
    margin-right: 0.8rem;
    animation: pop 0.5s ease-in-out forwards;
    animation-delay: 2.7s;
}

/* Participation Note */
.daily-note {
    font-size: 1.7rem;
    color: #666666;
    text-align: center;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 2.9s;
}

.small {
    font-size: 53%;
}

@media screen and (max-width:769px) {
    .daily-tournament .section-title {
        font-size: 3rem;
    }

    .daily-tagline {
        font-size: 2rem;
    }
    .daily-tagline::before,
    .daily-tagline::after {
        font-size: 4rem;
    }
    .daily-tagline::before {
        left: -10px;
    }
    .daily-tagline::after {
        right: -10px;
    }
}
