/* ==================== 決勝ページ専用スタイル ==================== */

/* ===== ヒーローセクション ===== */
.final-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/hero-background-large.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.spotlight-1 {
    top: -200px;
    left: -100px;
    background: var(--primary-gold);
    animation: spotlight-pulse 8s ease-in-out infinite;
}

.spotlight-2 {
    bottom: -200px;
    right: -100px;
    background: var(--primary-red);
    animation: spotlight-pulse 8s ease-in-out infinite 2s;
}

.spotlight-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-gold);
    opacity: 0.05;
    animation: spotlight-pulse 8s ease-in-out infinite 4s;
}

@keyframes spotlight-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

.particles {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

    .hero-badge span {
        color: var(--primary-gold);
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 3px;
    }

.hero-title {
    margin-bottom: 20px;
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 5px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #fff 50%, var(--primary-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both, shimmer 3s linear infinite;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

    .hero-venue i {
        color: var(--primary-red);
    }

.hero-cta {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.btn-ticket-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffcc00 100%);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

    .btn-ticket-hero:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    }

    .btn-ticket-hero i:last-child {
        font-size: 0.85rem;
        opacity: 0.7;
    }

.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1s both;
}

    .scroll-indicator span {
        font-size: 0.75rem;
        letter-spacing: 3px;
        color: rgba(255, 255, 255, 0.5);
    }

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ===== セクション共通 ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 15px;
}

    .section-title .highlight {
        color: var(--primary-gold);
    }

.section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== イベント詳細セクション ===== */
.event-info-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 215, 0, 0.3);
    }

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), #ffcc00);
    border-radius: 12px;
    flex-shrink: 0;
}

    .info-icon i {
        font-size: 1.5rem;
        color: var(--dark-color);
    }

.info-content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 5px;
}

.info-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== 出演グループセクション ===== */
.performers-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-color) 0%, #0d0d18 100%);
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.performer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

    .performer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .performer-card.tbd {
        opacity: 0.7;
    }

.card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.performer-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.card-content {
    padding: 20px;
}

.league-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

    .league-badge.east {
        background: rgba(199, 26, 26, 0.2);
        color: #ff6b6b;
        border: 1px solid rgba(199, 26, 26, 0.3);
    }

    .league-badge.west {
        background: rgba(255, 165, 0, 0.2);
        color: #ffa500;
        border: 1px solid rgba(255, 165, 0, 0.3);
    }

    .league-badge.north {
        background: rgba(0, 191, 255, 0.2);
        color: #00bfff;
        border: 1px solid rgba(0, 191, 255, 0.3);
    }

    .league-badge.colosseum {
        background: rgba(218, 165, 32, 0.2);
        color: var(--primary-gold);
        border: 1px solid rgba(218, 165, 32, 0.3);
    }

    .league-badge.revival {
        background: rgba(230, 57, 70, 0.2);
        color: var(--primary-red);
        border: 1px solid rgba(230, 57, 70, 0.3);
    }

    .league-badge.fresh {
        background: rgba(179, 0, 179, 0.2);
        color: #e040fb;
        border: 1px solid rgba(179, 0, 179, 0.3);
    }

.performer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-color);
}

/* Opening Act */
.opening-act {
    text-align: center;
    padding: 40px;
    background: rgba(179, 0, 179, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(179, 0, 179, 0.2);
}

.oa-header {
    margin-bottom: 30px;
}

.oa-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e040fb;
    margin-bottom: 10px;
}

.oa-header h3 {
    font-size: 1.3rem;
    color: var(--light-color);
}

.oa-card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

    .oa-card.tbd {
        opacity: 0.7;
    }

.oa-image {
    aspect-ratio: 2/1;
}

    .oa-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.oa-content {
    padding: 20px;
}

/* ===== チケットセクション ===== */
.ticket-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.ticket-card {
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .ticket-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary-gold);
    }

    .ticket-card.streaming::before {
        background: linear-gradient(90deg, var(--primary-gold), var(--primary-red));
    }

    .ticket-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 215, 0, 0.3);
    }

.ticket-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ticket-type {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-color);
}

.ticket-price {
    margin-bottom: 15px;
}

    .ticket-price .price {
        font-size: 2rem;
        font-weight: 900;
        color: var(--primary-gold);
    }

    .ticket-price .tax {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }

.ticket-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.ticket-cta {
    text-align: center;
}

.btn-ticket-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffcc00 100%);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 20px;
}

    .btn-ticket-main:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    }

.ticket-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 10px;
}

    .ticket-note:first-of-type {
        margin-top: 20px;
    }

    .ticket-note i {
        color: var(--primary-gold);
    }

    .ticket-note.warning {
        color: rgba(255, 200, 100, 0.8);
    }

        .ticket-note.warning i {
            color: #f0ad4e;
        }

/* ===== 優勝特典セクション ===== */
.prizes-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d18 0%, var(--dark-color) 100%);
}

.prizes-showcase {
    text-align: center;
}

.main-prize {
    margin-bottom: 50px;
}

    .main-prize .prize-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-gold), #ffcc00);
        border-radius: 50%;
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    }

        .main-prize .prize-icon i {
            font-size: 3rem;
            color: var(--dark-color);
        }

    .main-prize h3 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-gold);
    }

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.prize-card {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

    .prize-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 215, 0, 0.3);
    }

    .prize-card .prize-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 12px;
    }

        .prize-card .prize-icon i {
            font-size: 1.5rem;
            color: var(--primary-gold);
        }

    .prize-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--light-color);
        margin-bottom: 10px;
    }

.prize-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.prizes-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ===== アクセスセクション ===== */
.access-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.access-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.venue-name {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .venue-name h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-gold);
        margin-bottom: 10px;
    }

    .venue-name p {
        color: rgba(255, 255, 255, 0.7);
    }

.access-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

    .access-item i {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 12px;
        color: var(--primary-gold);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .access-item h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--light-color);
        margin-bottom: 8px;
    }

    .access-item p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.6;
    }

.access-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    .access-map iframe {
        display: block;
    }

/* ===== 最終CTA ===== */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
}

    .cta-background::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    }

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

    .cta-content h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        color: var(--light-color);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 40px;
    }

.btn-ticket-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffcc00 100%);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    }
}

.btn-ticket-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

.sp-only {
    display: none;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .ticket-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .access-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .final-hero {
        min-height: 100svh;
    }

    .hero-badge {
        padding: 8px 20px;
    }

        .hero-badge span {
            font-size: 0.85rem;
            letter-spacing: 2px;
        }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .btn-ticket-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-container {
        padding: 0 15px;
    }

    .performers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 40px;
    }

    .access-info {
        padding: 25px;
    }

    .access-map iframe {
        height: 250px;
    }

    .sp-only {
        display: inline;
    }

    .info-card .info-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .performers-grid {
        grid-template-columns: 1fr;
    }

    .performer-name {
        font-size: 1rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .btn-ticket-main {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .btn-ticket-final {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}
