:root {
	--accent: #ff3333;
	--bg-dark: #121212;
	--glass: rgba(255, 255, 255, 0.05);
}

.pasion-player {
	background: var(--bg-dark);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1em;
	padding: 1em;
	width: calc(100% - 2em);
	max-width: 900px;
	margin: 20px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	font-family: sans-serif;
}

.player-art {
	width: 200px;
	height: 200px;
	margin-bottom: 1em;
}

.player-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.player-content { width: 100%; }
.song-info h3 { margin: 10px 0 5px; font-size: 1.2rem; }
.song-info p { margin-bottom: 20px; opacity: 0.6; }

.progress-container { background: rgba(255,255,255,0.1); height: 6px; border-radius: 10px; margin-bottom: 25px; cursor: pointer; }
.progress-bar { background: var(--accent); height: 100%; width: 0%; border-radius: 10px; box-shadow: 0 0 10px var(--accent); }
.buttons { display: flex; align-items: center; gap: 20px; }
.action-btn { background: none; border: none; color: #fff; cursor: pointer; transition: 0.2s; }
.main-btn { background: var(--accent); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

@media (min-width: 768px) {
  
	.pasion-player {
		display: grid;
		grid-template-columns: 180px 1fr;
		grid-template-rows: auto auto;
		text-align: left;
		padding: 25px;
		gap: 0 30px;
	}

	.player-art {
		grid-row: 1 / 3;
		width: 180px;
		height: 180px;
		margin-bottom: 0;
	}

	.player-content { align-self: end; }
	.buttons { grid-column: 2; justify-content: flex-start; margin-top: 10px; }

}

/* 3. DESKTOP VIEW (1024px +) 
   Cover | Content (Bar/Info) | Buttons (All 1 Row) */
@media (min-width: 1024px) {
  .pasion-player {
    grid-template-columns: 80px 1fr 180px; /* Three distinct columns */
    grid-template-rows: 1fr;
    align-items: center;
    padding: 15px 30px;
  }

  .player-art {
    grid-row: 1;
    width: 60px;
    height: 60px;
  }

  .player-art img { border-radius: 10px; }

  .player-content {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .song-info { min-width: 150px; }
  .song-info p { margin-bottom: 0; }
  .progress-container { margin-bottom: 0; flex-grow: 1; }
  
  .buttons {
    grid-column: 3;
    justify-content: flex-end;
    margin-top: 0;
  }
}