@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Russo+One&family=Barlow:wght@400;600;800&display=swap');

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

body {
    font-family: 'Barlow', sans-serif;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.3) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1b3d 50%, #1a1a1a 75%, #0a0a0a 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    z-index: 2;
    /* Scale removed for mobile, will be applied only on desktop */
}

/* Apply scale only on larger screens */
@media (min-width: 1024px) {
    .container {
        transform: scale(0.8);
        transform-origin: top center;
        padding: 20px;
    }
}

.view {
    display: none;
}

.view.active {
    display: block;
}

.hidden {
    display: none !important;
}

/* Base typography adjustments for mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Ensure touch targets are large enough */
@media (max-width: 768px) {
    button, 
    .beat-option,
    .category-chip,
    .voting-option,
    input,
    select {
        min-height: 44px !important;
        min-width: 44px !important;
    }
}