@font-face {
    font-family: 'AKIRA';
    src: url('AKIRA.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'AKIRA', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

/* Rotating Wheel Logo */
.wheel-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.rotating-wheel {
    width: min(8vw, 120px);
    height: min(8vw, 120px);
    animation: rotate 20s linear infinite;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.rotating-wheel:hover {
    filter: brightness(1);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Site Header */
.site-header {
    text-align: center;
    padding: calc(min(8vw, 120px) + 50px) 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.site-header p {
    font-size: 1rem;
    color: #888888;
    font-weight: 500;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* Filters Container */
.filters-container {
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Tag Filters */
.tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.tag-filter {
    background: transparent;
    border: 1px solid #333333;
    color: #888888;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-filter:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.tag-filter.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.tag-filter.active:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Filter Toggle Buttons */
.filter-toggle-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.filter-toggle-btn {
    background: transparent;
    border: 1px solid #333333;
    color: #888888;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-toggle-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-toggle-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.filter-toggle-btn.active:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 16px;
}

/* BPM Filter */
.bpm-filter {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto;
    max-width: 400px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bpm-filter.collapsed {
    max-height: 0;
    padding: 0 20px;
    margin: 0 auto;
    border: none;
}

.filter-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.filter-tab {
    background: none;
    border: none;
    color: #888888;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.filter-tab:hover {
    color: #ffffff;
}

.filter-tab.active {
    color: #ffffff;
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
}

.filter-content {
    margin-bottom: 20px;
}

.filter-mode {
    display: none;
}

.filter-mode.active {
    display: block;
}

/* Range Mode */
.range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.range-inputs input {
    background: #222222;
    border: 1px solid #444444;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    width: 80px;
    text-align: center;
}

.range-inputs span {
    color: #888888;
    font-weight: 500;
}

.range-slider {
    position: relative;
    height: 6px;
    background: #333333;
    border-radius: 3px;
    margin-bottom: 10px;
}

.range-slider input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.range-values {
    display: flex;
    justify-content: space-between;
    color: #888888;
    font-size: 12px;
}

/* Exact Mode */
.exact-input {
    margin-bottom: 15px;
}

.exact-input input {
    background: #222222;
    border: 1px solid #444444;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
}

.exact-slider {
    margin-bottom: 10px;
}

.exact-slider input[type="range"] {
    width: 100%;
    height: 6px;
    background: #333333;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.exact-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.exact-slider input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.exact-value {
    text-align: center;
    color: #888888;
    font-size: 12px;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.filter-clear {
    background: transparent;
    border: 1px solid #333333;
    color: #888888;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-clear:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.filter-apply {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-apply:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Key Filter */
.key-filter {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto 0;
    max-width: 400px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.key-filter.collapsed {
    max-height: 0;
    padding: 0 20px;
    margin: 0 auto;
    border: none;
}

.key-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.key-tab {
    background: none;
    border: none;
    color: #888888;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.key-tab:hover {
    color: #ffffff;
}

.key-tab.active {
    color: #ffffff;
}

.key-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
}

.key-content {
    margin-bottom: 20px;
}

.key-buttons {
    margin-bottom: 20px;
}

.key-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}

.key-btn {
    background: transparent;
    border: 1px solid #333333;
    color: #888888;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
}

.key-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.key-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.key-btn.active:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.scale-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.scale-btn {
    background: transparent;
    border: 1px solid #333333;
    color: #888888;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    max-width: 120px;
}

.scale-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.scale-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.scale-btn.active:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.filter-close {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-close:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Beats Grid */
.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.beat-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.beat-card:hover {
    transform: translateY(-5px);
}

/* Cover Art */
.beat-cover {
    width: 100%;
    aspect-ratio: 1;
    background: #111111;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

/* Certified Hit Badge */
.certified-hit-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 2px solid #ffed4e;
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.certified-text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 8px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.certified-emoji {
    font-size: 10px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Beat Info */
.beat-info {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    padding: 0 5px;
    overflow: hidden;
}

.info-item {
    background: rgba(255, 255, 255, 0.08);
    color: #cccccc;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.info-item.tags {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Beat Title Container */
.beat-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 5px;
}

/* Beat Title */
.beat-title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-align: left;
    line-height: 1.3;
    flex: 1;
    margin: 0;
}

/* Play/Pause Button */
.play-pause-btn {
    background: #333333;
    border: 1px solid #555555;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    background: #444444;
    border-color: #666666;
    transform: scale(1.05);
}

.play-pause-btn .play-icon {
    font-size: 12px;
    margin-left: 2px; /* Slight offset for play icon */
}

/* iOS Audio Notice */
.ios-audio-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #2a2a2a;
    border: 1px solid #444444;
    color: #cccccc;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 11px;
    margin-left: 10px;
    flex-shrink: 0;
    opacity: 0.8;
}

.ios-audio-notice .ios-icon {
    font-size: 12px;
}

.ios-audio-notice .ios-text {
    white-space: nowrap;
}

/* Heart Favorites */
.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.heart-icon:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.heart-icon.favorited {
    color: #ff4757;
    border-color: #ff4757;
}

.heart-icon.favorited:hover {
    background: rgba(255, 71, 87, 0.2);
}

.beat-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.beat-card:hover .beat-cover img {
    transform: scale(1.05);
}

/* Default cover art for beats without images */
.beat-cover.default {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #444444;
}

/* Audio Player - Clean Minimalist */
.audio-player {
    width: 100%;
    margin-bottom: 0; /* Remove bottom margin to eliminate gap */
    border-radius: 0;
    outline: none;
    background: transparent;
    border: none;
    height: 30px; /* Smaller height */
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    filter: invert(1); /* Invert colors for dark controls on transparent background */
}

.audio-player.playing {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-bottom: 15px; /* Add margin only when playing */
}

.audio-player.buffering {
    opacity: 0.6;
    filter: invert(1) brightness(0.7);
}

.beat-card.audio-loading {
    position: relative;
}

.beat-card.audio-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* iOS Safari Audio Player - Always Visible */
.audio-player.ios-safari-player {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    margin-bottom: 15px !important;
    height: 40px; /* Slightly taller for better touch targets */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    filter: none; /* Remove invert filter for iOS Safari */
}

/* iOS Safari - Show native controls */
.audio-player.ios-safari-player::-webkit-media-controls-play-button,
.audio-player.ios-safari-player::-webkit-media-controls-pause-button {
    display: block !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
}

.audio-player.ios-safari-player::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
}

/* Hide the play/pause button from the audio player */
.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-pause-button {
    display: none !important;
}

/* Remove all borders and backgrounds from controls */
.audio-player::-webkit-media-controls-panel {
    background: transparent !important;
    border: none !important;
}

.audio-player::-webkit-media-controls-enclosure {
    background: transparent !important;
    border: none !important;
}

/* Style the progress bar */
.audio-player::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 2px !important;
    height: 4px !important;
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

/* Volume slider hidden - removed deprecated slider-vertical */
.audio-player::-webkit-media-controls-volume-slider {
    display: none !important;
}

/* Mute button hidden - no volume controls */
.audio-player::-webkit-media-controls-mute-button {
    display: none !important;
}

/* Hide volume controls container completely */
.audio-player::-webkit-media-controls-volume-slider-container {
    display: none !important;
    visibility: hidden !important;
}

/* Remove any remaining borders */
.audio-player::-webkit-media-controls-fullscreen-button {
    display: none !important;
}


/* Beat Actions */
.beat-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px; /* Reduced margin for tighter spacing */
}

/* When audio player is playing, reduce the margin since player has its own margin */
.beat-card.player-active .beat-actions {
    margin-top: 0px;
}

/* Download Button */
.download-btn {
    flex: 1;
    padding: 8px 16px; /* Reduced padding for tighter spacing */
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Share Button */
.share-btn {
    flex: 1;
    background: transparent;
    color: #ffffff;
    border: 1px solid #333333;
    padding: 8px 16px; /* Reduced padding for tighter spacing */
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333333;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    font-size: 1rem;
    font-weight: 500;
    color: #888888;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #888888;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.empty-state p {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wheel-container {
        top: 15px;
        left: 15px;
    }
    
    .rotating-wheel {
        width: min(10vw, 80px);
        height: min(10vw, 80px);
    }
    
    .site-header {
        padding: calc(min(10vw, 80px) + 40px) 15px 30px;
    }
    
    .site-header h1 {
        font-size: 2rem;
    }
    
    main {
        padding: 0 15px 30px;
    }
    
    .tag-filters {
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .tag-filter {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .beats-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .beat-cover {
        margin-bottom: 12px;
    }
    
    .certified-hit-badge {
        top: 6px;
        left: 6px;
        padding: 3px 6px;
    }
    
    .certified-text {
        font-size: 7px;
    }
    
    .certified-emoji {
        font-size: 9px;
    }
    
    .beat-info {
        margin-bottom: 6px;
        gap: 3px;
    }
    
    .info-item {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        font-size: 9px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 2px 5px;
    }
    
    .beat-title {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .wheel-container {
        top: 10px;
        left: 10px;
    }
    
    .rotating-wheel {
        width: min(12vw, 50px);
        height: min(12vw, 50px);
    }
    
    .site-header {
        padding: calc(min(12vw, 50px) + 30px) 10px 20px;
    }
    
    .site-header h1 {
        font-size: 1.8rem;
    }
    
    main {
        padding: 0 10px 20px;
    }
    
    .tag-filters {
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .tag-filter {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .beats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beat-cover {
        margin-bottom: 10px;
    }
    
    .certified-hit-badge {
        top: 5px;
        left: 5px;
        padding: 2px 5px;
    }
    
    .certified-text {
        font-size: 6px;
    }
    
    .certified-emoji {
        font-size: 8px;
    }
    
    .beat-info {
        margin-bottom: 5px;
        gap: 2px;
    }
    
    .info-item {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        font-size: 8px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 1px 4px;
    }
    
    .beat-title {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .download-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.download-btn:focus,
.audio-player:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
