149 lines
3.3 KiB
CSS
149 lines
3.3 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');
|
|
|
|
:root {
|
|
--primary-black: #0a0a0a;
|
|
--primary-red: #ff0000;
|
|
--primary-yellow: #ffcc00;
|
|
--text-white: #ffffff;
|
|
--bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Open Sans', sans-serif;
|
|
background: var(--bg-gradient);
|
|
color: var(--text-white);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
h1, h2, h3, .brand-font {
|
|
font-family: 'Montserrat', sans-serif;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* Radio Hub Layout */
|
|
.radio-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Rotating Disc Animation */
|
|
.disc-container {
|
|
position: relative;
|
|
width: 250px;
|
|
height: 250px;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.disc {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, #333 10%, #111 20%, #000 70%);
|
|
border: 5px solid #222;
|
|
box-shadow: 0 0 30px rgba(0,0,0,0.5);
|
|
position: relative;
|
|
animation: rotate 10s linear infinite;
|
|
animation-play-state: paused;
|
|
}
|
|
|
|
.disc.playing {
|
|
animation-play-state: running;
|
|
}
|
|
|
|
.disc::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 80px;
|
|
height: 80px;
|
|
background: var(--primary-red);
|
|
border-radius: 50%;
|
|
border: 4px solid var(--primary-yellow);
|
|
background-image: url('https://via.placeholder.com/80?text=La+Morenita'); /* Placeholder for Logo */
|
|
background-size: cover;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Player Controls */
|
|
.controls {
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.btn-play {
|
|
background: var(--primary-red);
|
|
border: none;
|
|
color: white;
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
font-size: 2rem;
|
|
cursor: pointer;
|
|
transition: transform 0.2s, background 0.3s;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
|
|
}
|
|
|
|
.btn-play:hover {
|
|
transform: scale(1.1);
|
|
background: #cc0000;
|
|
}
|
|
|
|
/* Social Icons */
|
|
.social-links {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.social-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
background: rgba(255,255,255,0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--primary-yellow);
|
|
font-size: 1.5rem;
|
|
text-decoration: none;
|
|
transition: background 0.3s, color 0.3s, transform 0.2s;
|
|
border: 1px solid rgba(255, 204, 0, 0.3);
|
|
}
|
|
|
|
.social-icon:hover {
|
|
background: var(--primary-yellow);
|
|
color: var(--primary-black);
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.whatsapp:hover { background: #25D366; border-color: #25D366; color: white; }
|
|
.facebook:hover { background: #1877F2; border-color: #1877F2; color: white; }
|
|
.tiktok:hover { background: #010101; border-color: #010101; color: white; }
|
|
|
|
/* Admin Link */
|
|
.admin-link {
|
|
position: fixed;
|
|
bottom: 1rem;
|
|
right: 1rem;
|
|
font-size: 0.8rem;
|
|
color: rgba(255,255,255,0.3);
|
|
text-decoration: none;
|
|
} |