@import url(https://fonts.googleapis.com/css2?family=Boldonse&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400&display=swap);
/* Global Reset & Variables */
:root {
    --bg-color: #051a1a; /* Deep green/teal */
    --bg-gradient: linear-gradient(180deg, #051a1a 0%, #000000 100%);
    --text-color: #ffffff;
    --accent-green: #ccff00; /* Neon yellow/green */
    --accent-pink: #ff6600; /* Orange */
    --accent-light: #aaffaa;
    
    --font-heading: 'Boldonse', 'Impact', sans-serif;
    --font-body: 'Helvetica Neue', 'Arial', sans-serif;
    
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    background: var(--bg-gradient);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.section-title {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
}

.section-tag {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 26, 26, 0.8);
    backdrop-filter: blur(5px);
}

.nav-brand {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.mobile-menu-btn {
  
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    text-align: center;
}

.mobile-nav-links a {
    font-size: 2rem;
    font-family: var(--font-heading);
}

.close-menu-btn {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Vertical Rail */
.vertical-rail {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    mix-blend-mode: difference;
}

.rail-content {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 0.7rem;
    color: var(--accent-light);
    letter-spacing: 2px;
    display: flex;
    gap: var(--spacing-lg);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
   
}
#stores {
    margin-top: 2rem;
    font-size: 0.8rem;
    line-height: 1rem;
}

/* Store images sizing control */
#stores img,
#stores .store-div img {
    width: 100%;
    height: auto;
    max-width: 90px; /* adjust as needed */
    margin: 0 10px;
}

/* Helper Classes */
.section-padding {
    padding: var(--spacing-xl) var(--spacing-xl);
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.container-full {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

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

/* Música Section */
.musica-text,
.visuales-text,
.manifiesto-header {
    padding-right: var(--spacing-lg);
}

.section-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.equalizer {
    display: flex;
    gap: 4px;
    height: 30px;
    align-items: flex-end;
    margin-top: var(--spacing-md);
}

.bar {
    width: 6px;
    background: var(--accent-pink);
    animation: equalize 1s infinite ease-in-out alternate;
}

.bar:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.bar:nth-child(3) { animation-delay: 0.4s; height: 80%; }
.bar:nth-child(4) { animation-delay: 0.1s; height: 50%; }
.bar:nth-child(5) { animation-delay: 0.3s; height: 70%; }

@keyframes equalize {
    0% { height: 20%; }
    100% { height: 100%; }
}

.musica-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header h3 {
    color: var(--accent-green);
    margin-bottom: var(--spacing-md);
}

.fake-player {
    background: #181818;
    padding: var(--spacing-md);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.player-header img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
}

.track-info {
    display: flex;
    flex-direction: column;
}

.playlist-title {
    font-weight: bold;
    font-size: 0.9rem;
}

.platform {
    font-size: 0.7rem;
    color: #b3b3b3;
}

.player-controls {
    display: flex;
    gap: var(--spacing-sm);
    color: #b3b3b3;
}

.play-icon {
    color: white;
    width: 32px;
    height: 32px;
}

.card-footer {
    font-size: 0.7rem;
    color: var(--accent-green);
    margin-top: var(--spacing-md);
    text-align: center;
}

/* Visuales Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    background: black;
    color: white;
    padding: 2px 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Manifiesto Section */
.manifesto-text {
    font-size: 0.7rem;
    color: #c2ffc2;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    text-align: justify;
}

.manifiesto-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.badge-container {
    display: flex;
    justify-content: flex-start;
   
}

/* Contacto Section */
.contact-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.contact-email {
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 4px;
}

.contact-email:hover {
    color: var(--accent-green);
}

/* Footer */
footer {
    background: #000;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-left .brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.sub-brand {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.footer-center {
    text-align: center;
}

.footer-motto {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.footer-icons span {
    color: var(--accent-pink);
    margin: 0 2px;
    font-size: 0.8rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-sm);
}

.footer-right a {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.copyright {
    text-align: center;
    font-size: 0.7rem;
    color: #444;
    margin-top: var(--spacing-lg);
}

/* Responsive Breakpoints */

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .container-grid {
        gap: var(--spacing-lg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .vertical-rail {
        display: none;
    }
    
    .container-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        margin-top: var(--spacing-lg);
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-email {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .section-title {
        font-size: 1rem;
    }
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 5px 10px;
    font-family: var(--font-heading);
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.lang-btn:hover {
    background: transparent;
    color: white;
    opacity: 0.7;
}
#hero {
    --primary-color: var(--text-color);
    --secondary-color: var(--accent-green);
    --primary-font: var(--font-heading);
    --secondary-font: var(--font-body);
    --quote-size: 5rem;
    --author-size: 1rem;
    --cursor-size: 40px;
}

@media (max-width: 768px) {
    #hero {
        --quote-size: 3rem;
    }
}

/* Background noise effect - Scoped to #hero instead of body */
#hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent url(../assets/noise-transparent.png) repeat 0 0;
  background-size: 300px 300px;
  animation: noise-animation 0.3s steps(5) infinite;
  opacity: 0.5; /* Reduced opacity to ensure visibility */
  mix-blend-mode: overlay; /* Ensure it blends with canvas */
  will-change: transform;
  z-index: 10;
  pointer-events: none;
}

/* Background image behind noise */
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/bg-clan.png) center center / cover no-repeat;
  opacity: 0.2;
  z-index: 8; /* Below noise (10), above canvas (5) */
  pointer-events: none;
}

@keyframes noise-animation {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(-4%, 2%); }
  30% { transform: translate(2%, -4%); }
  40% { transform: translate(-2%, 5%); }
  50% { transform: translate(-4%, 2%); }
  60% { transform: translate(3%, 0); }
  70% { transform: translate(0, 3%); }
  80% { transform: translate(-3%, 0); }
  90% { transform: translate(2%, 2%); }
  100% { transform: translate(1%, 0); }
}

/* Content within Hero */
#hero .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20;
  padding: 20px;
  text-align: center;
  color: var(--primary-color);
  pointer-events: none; /* Allow clicks to pass through to controls if needed */
}

.quote-container {
  max-width: 90%;
  overflow: hidden;
}

.quote {
  font-family: var(--primary-font);
  font-size: var(--quote-size);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 5vh;
  opacity: 1;
  text-transform: uppercase;
}

.author {
 font-size: 0.7rem;
 color: var(--accent-light);
    letter-spacing: 2px;
  margin-top: 2vh;
  margin-bottom: 2vh;
  pointer-events: auto; /* Allow interaction with the button inside */
  display: flex;
  align-items: center;
  justify-content: center;

}

.caption {
    margin-bottom: 2vh;
    font-size: 0.7rem;
    color: var(--accent-light);
    letter-spacing: 2px;

}

/* Custom cursor - Only show on desktop if desired, or keep global but be careful */
.custom-cursor {
  position: fixed;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  background-color: var(--secondary-color);
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transition: width 0.2s, height 0.2s;
  will-change: transform;
  display: none; /* Hidden by default, JS can show it */
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
    /* Hide default cursor only if we have the custom one working well */
    /* body { cursor: none; } */ 
    /* Use specific cursor hiding for hero if preferred */
    #hero { cursor: none; }
}

/* Canvas overlay */
#hero canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 5; /* Increased z-index to be sure */
  /* pointer-events: none;  Removed to allow interaction if any */
}

#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Controls container removed as button is now inline */

#playButton {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 32px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1.0em;
  font-family: var(--secondary-font);
  pointer-events: auto;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#playButton:hover {
  background: var(--accent-green);
  color: var(--bg-color);
  border-color: var(--accent-green);
}

.badge-svg {
	max-width: 70vw;
	max-height: 80vh;
	aspect-ratio: 1/1;
    width: 300px;
    height: 300px;
}

#blobClip {
    transform-origin: center;
    transition: ease-out transform .4s;
}

.badge-svg:hover #blobClip {
    transform: scale(1.15) translate(0%, 0%);
}

.badge-svg:hover .text-content {
    fill: var(--accent-green);
    mix-blend-mode: normal;
}

.text-content {
	font: 700 10px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	fill: white;
	mix-blend-mode: normal;
	transition: ease fill .5s;
}

:root {
    --bg-dark: #1a1025;
    --bg-light: #2c1c35;
    --accent: #aaffaa;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    width: 100%;
}

.app-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Artwork Blur */
.bg-artwork {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.6);
    z-index: 0;
    transition: background-image 0.5s ease;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #091b1c00, #091b1c);
    
    z-index: 1;
}

.player-view {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 430px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: space-between;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px; /* Safe area */
    height: 40px;
}

.drag-handle {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    padding: 10px;
    cursor: pointer;
}

/* Song Header */
.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.text-info h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.text-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.heart-btn {
    color: var(--text-primary);
}

/* Visual Container */
.visual-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 20px 0;
}

/* Side Albums (Fake Carousel) */
.side-album {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    top: 50%;
    transform: translateY(-50%);
    filter: blur(2px) opacity(0.5);
    z-index: 1;
}

.side-album.left {
    left: -140px;
    background: url('https://picsum.photos/200/200?random=2');
    background-size: cover;
}

.side-album.right {
    right: -140px;
    background: url('https://picsum.photos/200/200?random=3');
    background-size: cover;
}

/* Main Circle */
.main-circle-container {
    position: relative;
    width: 280px;
    height: 280px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Ring */
.glass-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.35), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0,0,0,0.6), inset 0 0 25px rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    pointer-events: none;
}

/* SVG Progress */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg); /* Start from top */
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s linear; /* Smooth update */
    filter: drop-shadow(0 0 4px var(--accent));
}

.album-art-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.album-art-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.time-display-ring {
    position: absolute;
    bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Controls Row */
.controls-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 0 10px;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.1s;
}

.control-btn:active {
    transform: scale(0.9);
}

.control-btn.small {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.control-btn.play-btn {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-list {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 12px 16px 6px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bottom-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

#playlist-main {
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

#playlist-main li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
}

#playlist-main li:last-child {
    border-bottom: none;
}

#playlist-main li img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
    object-fit: cover;
}

#playlist-main li div {
    flex: 1;
}

#playlist-main li span {
    display: block;
}

#playlist-main li span:first-child {
    font-size: 0.9rem;
}

#playlist-main li span:last-child {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

#playlist-main li.active span:first-child {
    color: var(--accent);
}

/* Playlist Overlay */
.playlist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 16, 37, 0.98);
    backdrop-filter: blur(10px);
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.playlist-overlay.show {
    transform: translateY(0);
}

.playlist-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

#playlist-songs {
    flex: 1;
    list-style: none;
    padding: 0 20px;
    overflow-y: auto;
}

#playlist-songs li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

#playlist-songs li img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-right: 15px;
    object-fit: cover;
}

#playlist-songs li div {
    flex: 1;
}

#playlist-songs li span {
    display: block;
}

#playlist-songs li span:first-child {
    font-size: 1rem;
    margin-bottom: 4px;
}

#playlist-songs li span:last-child {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

#playlist-songs li.active span:first-child {
    color: var(--accent);
}

/* Mini Player Dock */
.mini-player-dock {
    background: rgba(40, 30, 50, 0.9);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* Space for bottom safe area */
    border-radius: 20px;
    margin: 10px 20px 30px 20px;
}

.mini-info {
    display: flex;
    align-items: center;
}

.mini-info img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
}

.mini-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
}

.mini-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.mini-controls button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-left: 15px;
    cursor: pointer;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.play-btn:active i {
    animation: pulse 0.2s;
}

@media (min-width: 768px) {
    .main-circle-container {
        width: 320px;
        height: 320px;
    }

    .album-art-wrapper {
        width: 200px;
        height: 200px;
    }

    .controls-row {
        margin-top: 10px;
    }

    .bottom-list {
        margin-bottom: 20px;
    }
}

