:root {
    --primary: #ff6600;
    --primary-glow: #ff9500;
    --secondary: #00ff88;
    --bg-dark: #0a0a0f;
    --bg-panel: #12121a;
    --bg-card: #1a1a25;
    --text-light: #f0f0f5;
    --text-muted: #8888aa;
    --jackpot: #ff3300;
    --jackpot-glow: #ff6600;
    --gold: #ffd700;
    --gold-glow: #ffed4a;
    --silver: #c0c0c0;
    --silver-glow: #e8e8e8;
    --bronze: #cd7f32;
    --bronze-glow: #e8a862;
    --standard: #4a5568;
    --standard-glow: #718096;
    --font-main: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

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

body {
    font-family: var(--font-main);
    background: 
        radial-gradient(ellipse at top, #1a0a2e 0%, #0a0a0f 50%, #050508 100%);
    color: var(--text-light);
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 102, 0, 0.03) 2px,
            rgba(255, 102, 0, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1000;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(180deg, #ff6600 0%, #ff9500 50%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(255, 102, 0, 0.5);
    animation: titlePulse 2s ease-in-out infinite;
    letter-spacing: 4px;
}

@keyframes titlePulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.swap-panel {
    background: linear-gradient(145deg, #1a1a25 0%, #12121a 100%);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 102, 0, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 102, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.direction-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.dir-btn {
    flex: 1;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-main);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #1a1a25, #12121a);
    color: var(--text-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dir-btn:hover {
    background: linear-gradient(145deg, #252535, #1a1a25);
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-2px);
}

.dir-btn.active {
    background: linear-gradient(145deg, #ff6600, #cc5500);
    border-color: var(--primary-glow);
    box-shadow: 
        0 0 30px rgba(255, 102, 0, 0.4),
        0 0 60px rgba(255, 102, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: btnPulse 1.5s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 102, 0, 0.4), 0 0 60px rgba(255, 102, 0, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 102, 0, 0.6), 0 0 80px rgba(255, 102, 0, 0.3); }
}

.rate-display {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, #0f0f15, #0a0a0f);
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.rate-label {
    color: var(--text-muted);
    margin-right: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rate-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.payout-section {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(145deg, #0f0f15, #0a0a0f);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.payout-section h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.payout-input input {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-mono);
}

.payout-input input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.payout-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
}

.deposit-section, .wheel-section, .output-section, .fee-tier-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-tier-section {
    display: none;
}

.fee-tier-section h3 {
    color: #00ccff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.fee-tier-options {
    display: flex;
    gap: 15px;
}

.fee-tier-btn {
    flex: 1;
    padding: 25px 20px;
    background: linear-gradient(145deg, #1a1a25, #12121a);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fee-tier-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fee-tier-btn.premium {
    border-color: rgba(255, 102, 0, 0.5);
}

.fee-tier-btn.premium:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.tier-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.fee-tier-btn.premium .tier-name {
    color: var(--primary);
}

.tier-fee {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
}

.fee-tier-btn.premium .tier-fee {
    color: var(--primary);
}

.tier-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fee-tier-btn.premium .tier-desc {
    color: var(--primary-glow);
}

.deposit-section h3, .output-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.deposit-address {
    background: linear-gradient(145deg, #0f0f15, #0a0a0f);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.address-label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.address {
    display: block;
    font-size: 0.8rem;
    word-break: break-all;
    color: var(--secondary);
    background: rgba(0, 255, 136, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: var(--font-mono);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.copy-btn {
    padding: 12px 24px;
    background: linear-gradient(145deg, #ff6600, #cc5500);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.min-amount {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.deposit-status {
    margin-top: 20px;
}

.status-indicator {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-indicator.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.status-indicator.mempool {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 2px solid rgba(0, 255, 136, 0.3);
    animation: pulse 1s infinite;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.status-indicator.confirmed {
    background: rgba(0, 204, 255, 0.15);
    color: #00ccff;
    border: 2px solid rgba(0, 204, 255, 0.3);
    animation: pulse 0.5s infinite;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.wheel-section {
    display: none;
}

.wheel-section.wheel-unlocked {
    display: block;
    animation: wheelUnlocked 0.5s ease-out;
}

@keyframes wheelUnlocked {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.wheel-container {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto 30px;
}

.wheel-container.active .wheel {
    box-shadow: 
        0 0 60px rgba(255, 102, 0, 0.6),
        0 0 100px rgba(255, 102, 0, 0.3),
        0 0 150px rgba(255, 102, 0, 0.1);
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: visible;
    border: 6px solid rgba(255, 102, 0, 0.6);
    box-shadow: 
        0 0 40px rgba(255, 102, 0, 0.4),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
    background: radial-gradient(circle, #1a1a25 0%, #0a0a0f 100%);
}

#wheel-svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.wheel-segment {
    cursor: pointer;
    transition: opacity 0.2s;
}

.wheel-segment:hover {
    opacity: 0.9;
}

.wheel-inner {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a25 0%, #0a0a0f 100%);
    border: 3px solid rgba(255, 102, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.wheel-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff6600, #cc5500);
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 30px rgba(255, 102, 0, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.wheel-segment {
    transition: filter 0.2s, transform 0.2s;
}

.wheel-segment:hover {
    filter: brightness(1.1);
}

.wheel-segment.jackpot {
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.8));
}

.wheel-segment.gold {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.wheel-segment.silver {
    filter: drop-shadow(0 0 6px rgba(192, 192, 192, 0.5));
}

.wheel-segment.bronze {
    filter: drop-shadow(0 0 6px rgba(205, 127, 50, 0.5));
}

.wheel-segment.standard {
    filter: drop-shadow(0 0 4px rgba(100, 100, 120, 0.3));
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid #ff6600;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    z-index: 20;
    animation: pointerBounce 1s ease-in-out infinite;
}

@keyframes pointerBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.wheel-pointer::after {
    content: '▼';
    position: absolute;
    top: -50px;
    left: -10px;
    font-size: 1.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px #ff6600;
}

.spin-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 30px auto 0;
    padding: 20px 40px;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: var(--font-main);
    background: linear-gradient(145deg, #ff6600 0%, #ff3300 50%, #cc5500 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 30px rgba(255, 102, 0, 0.5),
        0 0 60px rgba(255, 102, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: spinBtnGlow 2s ease-in-out infinite;
}

@keyframes spinBtnGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5), 0 0 60px rgba(255, 102, 0, 0.2); }
    50% { box-shadow: 0 8px 40px rgba(255, 102, 0, 0.7), 0 0 80px rgba(255, 102, 0, 0.3); }
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 102, 0, 0.6),
        0 0 100px rgba(255, 102, 0, 0.3);
}

.spin-btn:disabled {
    background: linear-gradient(145deg, #444, #333);
    cursor: not-allowed;
    box-shadow: none;
    animation: none;
}

.spin-result {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, #0f0f15, #0a0a0f);
    border-radius: 16px;
    margin-top: 30px;
    border: 2px solid rgba(255, 102, 0, 0.3);
    display: none;
}

.spin-result.celebrate {
    animation: celebratePop 0.5s ease-out;
}

@keyframes celebratePop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.result-segment {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: segmentReveal 0.5s ease-out;
}

@keyframes segmentReveal {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.result-multiplier {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0;
    background: linear-gradient(135deg, #ff6600, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: multiplierReveal 0.5s ease-out 0.2s both;
}

@keyframes multiplierReveal {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.result-bonus {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.output-section {
    display: none;
}

.output-section.celebrate {
    animation: celebratePop 0.5s ease-out;
}

.output-details {
    background: linear-gradient(145deg, #0f0f15, #0a0a0f);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.output-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.output-row:last-child {
    border-bottom: none;
}

.output-row.bonus {
    color: var(--secondary);
    font-weight: 700;
}

.output-row.total {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    padding-top: 20px;
    border-top: 2px solid rgba(255, 102, 0, 0.3);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.payout-tx {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    display: none;
    flex-direction: column;
    gap: 10px;
}

.payout-tx code {
    word-break: break-all;
    font-size: 0.75rem;
    color: var(--secondary);
    font-family: var(--font-mono);
}

.start-btn {
    width: 100%;
    padding: 22px;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-main);
    background: linear-gradient(145deg, #ff6600, #cc5500);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.5);
}

.start-btn:disabled {
    background: #333;
    cursor: not-allowed;
    box-shadow: none;
}

.info-panel {
    background: linear-gradient(145deg, #1a1a25, #12121a);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-panel h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.info-panel ol {
    margin-left: 20px;
    margin-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

.info-panel li {
    margin-bottom: 10px;
}

.fee-info {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style: none;
}

.fee-info li {
    padding: 8px 12px;
    margin-bottom: 8px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    font-size: 0.9rem;
}

.fee-info li:first-child {
    background: rgba(0, 255, 136, 0.1);
    border-left-color: var(--secondary);
}

.wheel-odds h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wheel-odds ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.wheel-odds li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.wheel-odds li:hover {
    background: rgba(255, 255, 255, 0.06);
}

.jackpot-dot, .gold-dot, .silver-dot, .bronze-dot, .standard-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.jackpot-dot { background: var(--jackpot); color: var(--jackpot); }
.gold-dot { background: var(--gold); color: var(--gold); }
.silver-dot { background: var(--silver); color: var(--silver); }
.bronze-dot { background: var(--bronze); color: var(--bronze); }
.standard-dot { background: var(--standard); color: var(--standard); }

.confetti {
    position: fixed;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall linear forwards;
    z-index: 9999;
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding: 12px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .swap-panel {
        padding: 20px;
        border-radius: 16px;
    }
    
    .direction-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .dir-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .rate-display {
        padding: 12px;
    }
    
    .rate-value {
        font-size: 1.2rem;
    }
    
    .payout-section,
    .deposit-section,
    .wheel-section,
    .output-section {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .payout-section h3,
    .deposit-section h3,
    .wheel-section h3,
    .output-section h3 {
        font-size: 1.2rem;
    }
    
    .payout-input input {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .deposit-address {
        padding: 12px;
    }
    
    .address {
        font-size: 0.7rem;
        padding: 10px;
    }
    
    .copy-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .status-indicator {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .wheel-container {
        width: 280px;
        height: 280px;
        margin: 0 auto 20px;
    }
    
    .wheel-center {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .seg-label {
        font-size: 0.5rem;
    }
    
    .seg-mult {
        font-size: 0.7rem;
    }
    
    .wheel-pointer {
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 30px solid #ff6600;
    }
    
    .wheel-pointer::after {
        font-size: 1rem;
        top: -38px;
        left: -7px;
    }
    
    .spin-btn {
        font-size: 1rem;
        padding: 16px 24px;
        max-width: 220px;
    }
    
    .spin-result {
        padding: 20px;
    }
    
    .result-segment {
        font-size: 1.4rem;
    }
    
    .result-multiplier {
        font-size: 2rem;
    }
    
    .result-bonus {
        font-size: 1rem;
    }
    
    .output-details {
        padding: 15px;
    }
    
    .output-row {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .output-row.total {
        font-size: 1.1rem;
    }
    
    .payout-tx {
        padding: 12px;
    }
    
    .start-btn {
        padding: 16px;
        font-size: 1rem;
    }
    
    .info-panel {
        padding: 20px;
    }
    
    .info-panel h3 {
        font-size: 1.1rem;
    }
    
    .info-panel ol {
        font-size: 0.9rem;
    }
    
    .wheel-odds ul {
        grid-template-columns: 1fr;
    }
    
    .wheel-odds li {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.6rem;
    }
    
    .wheel-container {
        width: 240px;
        height: 240px;
    }
    
    .spin-btn {
        font-size: 0.9rem;
        padding: 14px 20px;
    }
    
    .result-multiplier {
        font-size: 1.6rem;
    }
}
