body {
    background: linear-gradient(135deg, #f9d900 0%, #f9d900 100%);
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    color: #2C3E50;
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 99, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Layout container - Always mobile layout */
.main-flex-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    max-width: 100vw;
    width: 100vw;
    margin: 0;
    padding: 12px 4vw;
    box-sizing: border-box;
    min-height: 100vh;
}

.left-panel {
    width: 100%;
    max-width: 100vw;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.12),
        inset 0 2px 4px rgba(255,255,255,0.8);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 3px solid #f9d900;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.left-panel::before {
    content: '🎰';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    opacity: 0.4;
}

.left-panel::after {
    content: 'LUCK';
    position: absolute;
    bottom: 8px;
    right: 12px;
    background: #FF6363;
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(255,99,99,0.4);
}

.right-panel {
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(145deg, #FFFFFF 0%, #F0FDFF 100%);
    border-radius: 20px;
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.12),
        inset 0 2px 4px rgba(255,255,255,0.8);
    padding: 20px 16px;
    border: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.right-panel::before {
    content: '🏆';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    opacity: 0.4;
}

header h1 {
    color: #f9d900;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center;
    text-shadow: 
        2px 2px 0px #FF6363,
        4px 4px 8px rgba(0,0,0,0.2);
    position: relative;
}

header h1::after {
    content: '💰';
    position: absolute;
    right: -8px;
    top: -3px;
    font-size: 0.7em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.jackpot-section {
    margin: 0 0 32px 0;
    text-align: left;
}

.jackpot-label {
    font-size: 1.1rem;
    color: #f9d900;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.jackpot-amount {
    font-size: 1.6rem;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(135deg， #f9d900 0%, #44A08D 50%, #FF6363 100%);
    border-radius: 16px;
    padding: 12px 0;
    margin: 0 0 8px 0;
    width: 100%;
    box-shadow: 
        0 6px 24px rgba(78, 205, 196, 0.4),
        inset 0 2px 4px rgba(255,255,255,0.3);
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(255,255,255,0.5);
    animation: jackpot-fomo 2s infinite alternate;
    text-align: center;
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.jackpot-amount::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
    transform: rotate(45deg);
}

@keyframes jackpot-fomo {
    0% { 
        box-shadow: 
            0 8px 32px rgba(78, 205, 196, 0.4),
            inset 0 2px 4px rgba(255,255,255,0.3),
            0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% { 
        box-shadow: 
            0 12px 48px rgba(255, 99, 99, 0.6),
            inset 0 2px 4px rgba(255,255,255,0.5),
            0 0 40px rgba(255, 215, 0, 0.8);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.info-section {
    background: linear-gradient(145deg, #F0FDFF 0%, #E6FFFA 100%);
    border-radius: 15px;
    padding: 18px 10px 10px 10px;
    box-shadow: 
        0 4px 16px rgba(78, 205, 196, 0.2),
        inset 0 2px 4px rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    border: 2px solid #f9d900;
    position: relative;
}

.info-section::before {
    content: '📊';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 16px;
    opacity: 0.4;
}
.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08rem;
    margin-bottom: 2px;
}
.info-label {
    color: #2C3E50;
    font-weight: 600;
    min-width: 120px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}
.info-value {
    color: #f9d900;
    font-weight: bold;
    font-family: 'Fira Mono', 'Consolas', monospace;
    font-size: 1.08rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.right-panel h2 {
    color: #FF6363;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 0px #FFD700,
        4px 4px 8px rgba(0,0,0,0.2);
    text-align: center;
    font-weight: bold;
    position: relative;
}

.right-panel h2::before {
    content: '🎊';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.winner-placeholder {
    color: #f9d900;
    font-size: 1rem;
    margin-top: 12px;
    text-align: center;
    background: rgba(78, 205, 196, 0.1);
    padding: 12px;
    border-radius: 12px;
    border: 2px dashed #f9d900;
    font-weight: bold;
}

.winner-address {
    background: linear-gradient(145deg, #E6FFFA 0%, #F0FDFF 100%);
    color: #f9d900;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 1.05rem;
    font-family: 'Fira Mono', 'Consolas', monospace;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 12px rgba(78, 205, 196, 0.2),
        inset 0 2px 4px rgba(255,255,255,0.8);
    margin-bottom: 2px;
    border: 2px solid #f9d900;
}

.winner-address.fomo {
    background: linear-gradient(135deg, #FF6363 0%, #f9d900 50%, #FFD700 100%);
    color: #fff;
    border-radius: 15px;
    padding: 12px 18px;
    font-size: 1.1rem;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(255, 99, 99, 0.4),
        inset 0 2px 4px rgba(255,255,255,0.3);
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    transition: all 0.3s ease;
    word-break: break-all;
    width: 100%;
    min-width: 0;
    border: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.winner-address.fomo::before {
    content: '🎉';
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 14px;
    opacity: 0.7;
}

.winner-address.fomo:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 99, 99, 0.6),
        inset 0 2px 4px rgba(255,255,255,0.4);
}
.winner-address.fomo > div, .winner-address.fomo > a {
    width: 100%;
    display: block;
    text-align: left;
}
.winner-address.fomo a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
    word-break: break-all;
    width: 100%;
    display: block;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.winner-address.fomo a:hover {
    color: #FFD700;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.7),
        0 0 8px rgba(255, 215, 0, 0.8);
}
.win-amount {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C3E50;
    border-radius: 10px;
    padding: 4px 12px;
    font-size: 1.05rem;
    font-weight: bold;
    margin-left: 0;
    margin-top: 4px;
    box-shadow: 
        0 3px 8px rgba(255, 215, 0, 0.4),
        inset 0 1px 2px rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-shadow: 
        1px 1px 2px rgba(255,255,255,0.8),
        0 0 4px rgba(255, 215, 0, 0.5);
    display: block;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    border: 2px solid #FF6363;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
}

/* 移动端优化样式 */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

.info-label, .info-value {
    font-size: 0.9rem;
}

.winners-list {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.winner-address.fomo {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding: 8px 12px !important;
    gap: 3px !important;
    margin: 0 0 8px 0 !important;
    border-radius: 12px;
    font-size: 0.95rem;
}

.win-amount {
    width: 100% !important;
    box-sizing: border-box;
    padding: 3px 8px !important;
    margin: 2px 0 0 0 !important;
    border-radius: 8px;
    font-size: 0.9rem;
}

.info-section {
    padding: 15px 8px 8px 8px;
    gap: 8px;
}

.info-row {
    gap: 6px;
    font-size: 0.9rem;
    margin-bottom: 1px;
}

.info-label {
    min-width: 100px;
}

.winner-placeholder {
    font-size: 0.9rem;
    padding: 10px;
} 

