/* === BASE RESET & BODY === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #0a0514;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    color: #fff0f5;
    position: relative;
}

/* === THREE.JS RAIN BACKGROUND === */
#three-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

#three-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* === OVERLAY GRADIENT === */
.overlay-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(
        ellipse at 50% 40%,
        rgba(147, 51, 234, 0.18) 0%,
        rgba(10, 5, 20, 0.72) 65%,
        rgba(10, 5, 20, 0.92) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* === DECORATIVE VERTICAL KANJI STRIPS === */
.kanji-strip {
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 24px 0;
    z-index: 2;
    pointer-events: none;
    /* vertical text via writing-mode */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 6px;
    opacity: 0.22;
    animation: kanji-fade 4s ease-in-out infinite alternate;
}

.kanji-strip span {
    display: block;
    writing-mode: vertical-rl;
    color: #ff69b4;
    text-shadow: 0 0 12px #ff69b4, 0 0 24px #9333ea;
}

.kanji-strip--left  { left: 12px; }
.kanji-strip--right { right: 12px; writing-mode: vertical-lr; }

@keyframes kanji-fade {
    0%   { opacity: 0.15; }
    100% { opacity: 0.35; }
}

/* === MAIN CONTENT WRAPPER === */
.content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px 0;
}

/* === LOGO === */
.logo-container {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

/* Neon kanji accent above logo via pseudo-element */
.logo-container::before {
    content: '東京渋谷';
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3vw, 18px);
    font-weight: 700;
    color: #ff69b4;
    letter-spacing: 10px;
    text-shadow: 0 0 10px #ff69b4, 0 0 22px #9333ea;
    margin-bottom: 10px;
    opacity: 0.85;
    animation: neon-pulse 2.4s ease-in-out infinite alternate;
}

.logo {
    width: 450px;
    max-width: 95%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 18px rgba(255, 105, 180, 0.6))
            drop-shadow(0 0 40px rgba(147, 51, 234, 0.4));
}

/* === MARQUEE TEXT === */
.marquee-text {
    width: 100%;
    background: rgba(147, 51, 234, 0.18);
    padding: 14px 0;
    border-top: 2px solid #ff69b4;
    border-bottom: 2px solid #ff69b4;
    margin-bottom: 30px;
    overflow: hidden;
    white-space: nowrap;
    color: #ff69b4;
    font-family: 'Zen Dots', cursive;
    font-size: clamp(13px, 3.8vw, 19px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(255, 105, 180, 0.35);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.7);
}

.marquee-inner {
    display: inline-block;
    animation: scrollText 22s linear infinite;
    padding-left: 100%;
}

@keyframes scrollText {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* === CTA BUTTON === */
.btn-wrapper {
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Anime-style CTA with thick border and sakura gradient */
.ref-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4, #9333ea);
    color: #fff0f5;
    font-family: 'Zen Dots', cursive;
    font-weight: 400;
    font-size: clamp(18px, 5.5vw, 28px);
    padding: clamp(14px, 3vw, 20px) clamp(30px, 8vw, 60px);
    border-radius: 80px;
    text-decoration: none;
    border: 4px solid rgba(255, 240, 245, 0.75);
    box-shadow:
        0 0 25px rgba(255, 105, 180, 0.6),
        0 0 50px rgba(147, 51, 234, 0.35),
        inset 0 2px 6px rgba(255, 255, 255, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 6px rgba(147, 51, 234, 0.5);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: neon-pulse 2.8s ease-in-out infinite alternate;
}

/* Shimmer sweep on CTA */
.ref-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 60%
    );
    animation: btn-shimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes btn-shimmer {
    0%   { left: -75%; }
    100% { left: 125%; }
}

.ref-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 0 40px rgba(255, 105, 180, 0.85),
        0 0 80px rgba(147, 51, 234, 0.55),
        inset 0 2px 8px rgba(255, 255, 255, 0.35);
    border-color: #fff;
}

@keyframes neon-pulse {
    0%   { filter: brightness(1); }
    100% { filter: brightness(1.18); }
}

/* === FLAG SECTION === */
.flag-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.flag-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 130px;
    margin-bottom: 15px;
    cursor: pointer;
}

/* Anime-style rounded flag with neon border */
.flag {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff69b4;
    box-shadow:
        0 0 18px rgba(255, 105, 180, 0.55),
        0 0 36px rgba(147, 51, 234, 0.3);
    animation: spinLeft 10s linear infinite;
    pointer-events: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.flag-item:hover .flag {
    border-color: #00e5ff;
    box-shadow:
        0 0 22px rgba(0, 229, 255, 0.7),
        0 0 44px rgba(0, 229, 255, 0.35);
}

.flag-item:active { opacity: 0.8; }

@keyframes spinLeft {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

.country-name {
    margin-top: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(15px, 4.5vw, 20px);
    font-weight: 700;
    color: #fff0f5;
    text-shadow: 2px 2px 6px rgba(147, 51, 234, 0.6);
    text-align: center;
    pointer-events: none;
}

.greeting {
    font-size: clamp(13px, 4vw, 17px);
    font-weight: 600;
    color: #ff69b4;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.7);
    margin-bottom: 2px;
    pointer-events: none;
}

/* === SEO CONTENT === */
.seo-content {
    width: 100%;
    max-width: 1200px;
    background: rgba(10, 5, 20, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 105, 180, 0.4);
    padding: 40px 30px;
    border-radius: 40px;
    text-align: left;
    margin-top: 50px;
    color: #fff0f5;
    box-shadow:
        0 0 30px rgba(147, 51, 234, 0.18),
        inset 0 0 60px rgba(255, 105, 180, 0.04);
    position: relative;
    overflow: hidden;
}

/* Anime-style neon kanji accent on SEO block */
.seo-content::before {
    content: '渋谷 TOKYO';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #9333ea;
    opacity: 0.35;
    letter-spacing: 4px;
    pointer-events: none;
}

.seo-content h1 {
    font-family: 'Zen Dots', cursive;
    font-size: clamp(18px, 4vw, 24px);
    color: #ff69b4;
    margin-bottom: 20px;
    border-left: 6px solid #9333ea;
    padding-left: 18px;
    text-shadow: 0 0 12px rgba(255, 105, 180, 0.5);
}

.seo-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #e8d5e8;
}

.seo-content b {
    color: #ff69b4;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(255, 105, 180, 0.4);
}

.security-badge {
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(255, 105, 180, 0.5);
    padding: 15px;
    border-radius: 16px;
    font-size: 14px;
    color: #fff0f5;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

/* === JACKPOT TICKER === */
.jackpot-section {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px 20px;
    background: rgba(10, 5, 20, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.25);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.12);
}

.jackpot-title {
    font-family: 'Zen Dots', cursive;
    font-size: 15px;
    font-weight: 400;
    color: #ff69b4;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.6);
}

.ticker-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 105, 180, 0.2);
    font-size: 14px;
    color: #c8b0c8;
}

.ticker-item:last-child { border-bottom: none; }
.ticker-time  { color: #9a8a9a; min-width: 45px; font-size: 13px; }
.ticker-game  { color: #fff0f5; min-width: 100px; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: bold; }
.ticker-user  { color: #c8b0c8; flex: 1; font-family: monospace; font-size: 13px; }
.ticker-amount { color: #ff69b4; font-weight: 700; font-size: 14px; text-shadow: 0 0 6px rgba(255, 105, 180, 0.5); }

/* === REVIEW SECTION === */
.review-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 40px 30px;
    background: rgba(10, 5, 20, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 105, 180, 0.25);
    border-radius: 40px;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.15);
}

.review-title {
    font-family: 'Zen Dots', cursive;
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 400;
    color: #ff69b4;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(255, 105, 180, 0.5);
}

.review-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 105, 180, 0.25);
}

.rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
}

.stars input { display: none; }

.stars label {
    font-size: 35px;
    color: #3d2050;
    cursor: pointer;
    transition: color 0.15s, text-shadow 0.15s;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input:checked ~ label {
    color: #ff69b4;
    text-shadow: 0 0 18px #ff69b4, 0 0 30px #9333ea;
}

.review-input {
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.review-input textarea {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    background: rgba(255, 105, 180, 0.07);
    border: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: 30px;
    color: #fff0f5;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: none;
    height: 60px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.review-input textarea:focus {
    outline: none;
    border-color: #ff69b4;
    background: rgba(255, 105, 180, 0.12);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.review-input textarea::placeholder {
    color: rgba(255, 240, 245, 0.45);
}

.submit-btn {
    padding: 0 30px;
    background: linear-gradient(135deg, #ff69b4, #9333ea);
    border: none;
    border-radius: 30px;
    color: #fff0f5;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(255, 240, 245, 0.4);
    height: 60px;
    min-width: 120px;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 105, 180, 0.5);
}

.reviews-header {
    font-size: 20px;
    font-weight: 700;
    color: #ff69b4;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

.reviews-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 280px;
}

.review-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: rgba(20, 8, 35, 0.7);
    border: 1px solid rgba(255, 105, 180, 0.25);
    border-radius: 30px;
    padding: 25px 20px;
    backdrop-filter: blur(5px);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-card:hover {
    background: rgba(30, 10, 55, 0.85);
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 0 28px rgba(255, 105, 180, 0.18);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #9333ea);
    border: 2px solid #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: #ff69b4;
    font-size: 16px;
}

.review-date {
    font-size: 12px;
    color: rgba(255, 240, 245, 0.45);
    font-family: monospace;
}

.review-stars {
    color: #ff69b4;
    margin-bottom: 15px;
    font-size: 16px;
}

.review-stars i { margin-right: 3px; }

.review-text {
    color: #e8d5e8;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
}

/* === MODAL STYLES === */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(5, 2, 12, 0.88);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: linear-gradient(135deg, #120828, #1e0a38);
    border: 4px solid #ff69b4;
    border-radius: 28px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow:
        0 0 50px rgba(255, 105, 180, 0.35),
        0 0 100px rgba(147, 51, 234, 0.2);
    animation: modal-pop 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

/* Kanji watermark in modal background */
.modal-content::before {
    content: 'ガチャ';
    position: absolute;
    bottom: 10px;
    right: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 105, 180, 0.06);
    pointer-events: none;
    letter-spacing: 4px;
    line-height: 1;
}

@keyframes modal-pop {
    0%   { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-title {
    font-family: 'Zen Dots', cursive;
    color: #ff69b4;
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 28px;
    text-shadow: 0 0 14px rgba(255, 105, 180, 0.6);
    letter-spacing: 2px;
}

/* === GACHA CAPSULE MACHINE === */
.minigame-container {
    background: rgba(5, 2, 12, 0.6);
    border: 3px solid rgba(255, 105, 180, 0.35);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 22px;
    box-shadow: inset 0 0 24px rgba(147, 51, 234, 0.12);
}

.gacha-machine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Globe (capsule housing) */
.gacha-globe {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 35% 30%,
        rgba(255, 200, 230, 0.22) 0%,
        rgba(20, 8, 40, 0.85) 70%
    );
    border: 4px solid #ff69b4;
    box-shadow:
        0 0 20px rgba(255, 105, 180, 0.45),
        0 0 40px rgba(147, 51, 234, 0.25),
        inset 0 0 20px rgba(255, 105, 180, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Capsule (two-piece pill inside the globe) */
.gacha-capsule {
    width: 56px;
    height: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.capsule-top {
    width: 56px;
    height: 40px;
    background: linear-gradient(135deg, #ff69b4, #c84b8a);
    border-radius: 28px 28px 0 0;
    border: 3px solid rgba(255, 240, 245, 0.5);
    border-bottom: none;
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.5);
}

.capsule-bottom {
    width: 56px;
    height: 40px;
    background: linear-gradient(135deg, #9333ea, #6b1db3);
    border-radius: 0 0 28px 28px;
    border: 3px solid rgba(255, 240, 245, 0.5);
    border-top: none;
    box-shadow: 0 0 12px rgba(147, 51, 234, 0.5);
}

/* Prize emoji revealed inside capsule (hidden initially) */
.capsule-prize {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

/* Lever button area */
.gacha-lever-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Anime-style lever */
.gacha-lever {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    transition: transform 0.2s;
    position: relative;
}

.gacha-lever:hover { transform: scale(1.08); }
.gacha-lever:active { transform: scale(0.92) rotate(-8deg); }

.lever-shaft {
    display: block;
    width: 10px;
    height: 52px;
    background: linear-gradient(to bottom, #ff69b4, #9333ea);
    border-radius: 5px;
    border: 2px solid rgba(255, 240, 245, 0.5);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.lever-ball {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ff9fd7, #ff69b4);
    border: 3px solid rgba(255, 240, 245, 0.7);
    box-shadow: 0 0 14px rgba(255, 105, 180, 0.7);
}

/* Lever pull animation triggered via JS class */
.gacha-lever.pulling {
    animation: lever-pull 0.55s ease-in-out forwards;
}

@keyframes lever-pull {
    0%   { transform: rotate(0deg); }
    30%  { transform: rotate(30deg) scale(0.95); }
    65%  { transform: rotate(-15deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

/* Capsule drop animation */
.gacha-capsule.dropping {
    animation: capsule-drop 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes capsule-drop {
    0%   { transform: translateY(-20px); opacity: 0.6; }
    50%  { transform: translateY(8px);  opacity: 1; }
    70%  { transform: translateY(-4px); }
    85%  { transform: translateY(3px);  }
    100% { transform: translateY(0);    opacity: 1; }
}

/* Capsule open animation */
.gacha-capsule.open .capsule-top {
    animation: cap-top-open 0.45s ease-out 0.1s forwards;
}

.gacha-capsule.open .capsule-bottom {
    animation: cap-bottom-open 0.45s ease-out 0.1s forwards;
}

.gacha-capsule.open .capsule-prize {
    opacity: 1;
}

@keyframes cap-top-open {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-22px); opacity: 0.5; }
}

@keyframes cap-bottom-open {
    0%   { transform: translateY(0); }
    100% { transform: translateY(18px); opacity: 0.5; }
}

/* === MODAL MESSAGE & CTA === */
.modal-message {
    font-size: 18px;
    color: #e8d5e8;
    margin-bottom: 22px;
    min-height: 24px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.success-text {
    color: #ff69b4;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 0 12px rgba(255, 105, 180, 0.6);
}

.hidden {
    display: none !important;
}

.modal-cta-btn {
    background: linear-gradient(135deg, #ff69b4, #9333ea);
    color: #fff0f5;
    font-family: 'Zen Dots', cursive;
    font-size: 18px;
    font-weight: 400;
    padding: 15px 30px;
    border: 3px solid rgba(255, 240, 245, 0.6);
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 0 22px rgba(255, 105, 180, 0.5),
        inset 0 0 12px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.modal-cta-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 44px rgba(255, 105, 180, 0.75),
        0 0 80px rgba(147, 51, 234, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .logo { width: 350px; }
    .flag { width: 85px; height: 85px; }
    .flag-item { min-width: 110px; }
    .kanji-strip { font-size: 14px; }
}

@media (max-width: 480px) {
    .logo { width: 280px; }
    .flag { width: 75px; height: 75px; }
    .flag-item { min-width: 100px; }
    .marquee-text { font-size: 12px; padding: 10px 0; }
    .ref-btn { white-space: normal; font-size: 20px; padding: 16px 28px; line-height: 1.3; }
    .ticker-item { font-size: 12px; gap: 6px; }
    .ticker-time { min-width: 35px; }
    .ticker-game { min-width: 80px; }
    .kanji-strip { display: none; }
    .seo-content::before { display: none; }
}

/* === REDUCED MOTION FALLBACK === */
@media (prefers-reduced-motion: reduce) {
    .marquee-inner { animation: none; }
    .flag { animation: none; }
    .ref-btn { animation: none; }
    .ref-btn::after { animation: none; }
    .logo-container::before { animation: none; }
    .kanji-strip { animation: none; }
    .gacha-lever.pulling { animation: none; }
    .gacha-capsule.dropping { animation: none; }
}
