@charset "UTF-8";
/* CSS Document */

/* * Custom Styles for Jewel Christmas Cruise
 * * このファイルには、Tailwind CSSでは表現しきれない
 * カスタムアニメーションや特殊効果を定義しています。
 */

/* キラキラ効果のアニメーション定義 */
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* キラキラのパーティクル設定 */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFF, 0 0 20px #D4AF37;
    animation: twinkle 3s infinite ease-in-out;
}

/* 黄金のグラデーションテキスト */
.gold-gradient-text {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ガラス風カードエフェクト */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* スムーズスクロール設定 */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* 横スクロール防止を確実にする */
    width: 100%;
}

body {
    width: 100%;
    overflow-x: hidden; /* 横スクロール防止を確実にする */
}

/* Modal Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-animate {
    animation: modalFadeIn 0.3s ease-out forwards;
}