        :root {
            --cream: #F5F1E8;
            --beige: #E8DFD5;
            --gold: #D4AF37;
            --light-gold: #F0E6C3;
            --charcoal: #2C3E50;
            --light-charcoal: #34495E;
            --success: #27AE60;
            --warning: #E74C3C;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, var(--cream), var(--beige));
            min-height: 100vh;
            color: var(--charcoal);
            overflow-x: hidden;
        }

        .luxury-container {
            width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .luxury-header {
            text-align: center;
            margin-bottom: 40px;
            z-index: 10;
        }

        .luxury-title {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 300;
            color: var(--charcoal);
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .luxury-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: var(--light-charcoal);
            font-weight: 300;
            margin-bottom: 30px;
        }

        .chances-display {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: var(--charcoal);
            background: rgba(255,255,255,0.9);
            padding: 15px 30px;
            border-radius: 30px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            border: 2px solid var(--gold);
        }

        .game-area {
            position: relative;
            width: 95vw;
            max-width: 1200px;
            height: 30vh;
            min-height: 200px;
            max-height: 300px;
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border: 3px solid var(--gold);
            overflow: hidden;
            margin: 30px 0;
        }

        .judgment-frame {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 15vw;
            min-width: 120px;
            max-width: 180px;
            height: 15vw;
            min-height: 120px;
            max-height: 180px;
            border: 4px solid var(--gold);
            border-radius: 15px;
            background: rgba(212, 175, 55, 0.1);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            z-index: 5;
        }

        .judgment-frame::before {
            content: '中奖判定区';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gold);
            font-size: clamp(0.8rem, 1.5vw, 1.2rem);
            font-weight: 300;
            white-space: nowrap;
        }

        .images-track {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            transition: transform 4s cubic-bezier(0.2, 0.8, 0.3, 1);
            height: 80%;
            will-change: transform;
        }

        .luxury-image {
            height: 100%;
            aspect-ratio: 1;
            margin: 0 10px;
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 2px solid var(--beige);
            transition: var(--transition);
            max-width: 120px;
            max-height: 120px;
            flex-shrink: 0;
        }

        .luxury-image.winning {
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
            transform: scale(1.05);
        }

        .spin-button {
            background: linear-gradient(135deg, var(--gold), #B8860B);
            color: var(--cream);
            border: none;
            padding: clamp(15px, 3vw, 20px) clamp(40px, 6vw, 60px);
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            font-weight: 300;
            letter-spacing: 1px;
            margin-top: 30px;
        }

        .spin-button:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
        }

        .spin-button:disabled {
            background: #BDC3C7;
            cursor: not-allowed;
            transform: none;
        }

        .result-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 62, 80, 0.95);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .luxury-modal {
            background: linear-gradient(135deg, var(--cream), var(--beige));
            padding: clamp(20px, 4vw, 40px);
            border-radius: 20px;
            text-align: center;
            max-width: 600px;
            width: 90%;
            animation: modalAppear 0.6s ease;
            border: 3px solid var(--gold);
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
        }

        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(-50px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .winner-title {
            color: var(--success);
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 20px;
            font-weight: 300;
        }

        .loser-title {
            color: var(--warning);
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 20px;
            font-weight: 300;
        }

        .prize-name {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--charcoal);
            margin: 20px 0;
            font-weight: 300;
        }

        .prize-image {
            width: clamp(150px, 30vw, 200px);
            height: clamp(150px, 30vw, 200px);
            object-fit: cover;
            border-radius: 15px;
            margin: 20px auto;
            border: 3px solid var(--gold);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .modal-button {
            background: var(--gold);
            color: var(--cream);
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 30px;
            cursor: pointer;
            margin-top: 20px;
            transition: var(--transition);
        }

        .modal-button:hover {
            background: #B8860B;
            transform: translateY(-2px);
        }

        .spinning {
            animation: subtleGlow 2s ease-in-out infinite;
        }

        @keyframes subtleGlow {
            0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }
            50% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.6); }
        }

        .fullscreen-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            z-index: 1000;
            transition: var(--transition);
        }

        .fullscreen-btn:hover {
            background: #B8860B;
        }

        .loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .error-message {
            background: var(--warning);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            margin: 10px 0;
            text-align: center;
        }

        /* 轮播动画 */
        @keyframes carousel {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% + 100vw));
            }
        }

        .carousel-mode .images-track {
            animation: carousel 20s linear infinite;
            transition: none;
        }

        .carousel-mode .luxury-image {
            animation: none;
        }
