/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000 url('assets/img/dc-20-bg.png') center repeat-y;
    font-family: "Syne Mono", monospace;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    padding: 20px;
    
}

audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

audio {
  pointer-events: none; /* Desativa interações */
  user-select: none;
}

#header {
    background-color: #000000;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: url('assets/img/30white-fade-short.png') repeat-x;
    color: #6c6;
    border-radius: 8px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #6c6;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

nav a {
    text-decoration: none;
    color: var(--cor-primaria);
    font-weight: 500;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.tagline {
    font-style: italic;
    color: #9e9;
}

nav {
    margin-top: 15px;
}

li, a {
    list-style: none;
    text-decoration: none;
    color: #b0dba6;
}

a:hover {
    color: #9dff00;
}


#current-track {
    color: #b0dba6;
}

.now-playing {
    background-color: rgb(0, 8, 8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 32, 44, 0.1);
    margin-bottom: 30px;
}

.station-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.station-info img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.station-info h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #6c6;;
}

#audio-player {
    width: 100%;
    margin: 15px 0;
}

.player-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.control-btn {
    padding: 8px 15px;
    background-color: #2e4a00;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.control-btn:hover {
    background-color: #2980b9;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.volume-control input {
    width: 100px;
}

.stations h2 {
    margin-bottom: 15px;
    color: #6c6;;
    font-size: 1.8rem;
}

.station-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.station-card {
   
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(83, 83, 83, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.copyright-notice {
    background-color: #181818;
    border-left: 4px solid #f44336;
    padding: 12px;
    margin: 20px 0;
    border-radius: 4px;
}

.copyright-notice p {
    color: #9e9 ;
    margin: 5px 0;
}

.small {
    font-size: 0.8em;
    color: #9e9 ;
}

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

.station-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.station-card .info {
    background: url('assets/img/30white-fade-short.png') repeat-x;
    padding: 15px;
}

.station-card h3 {
    margin-bottom: 5px;
    color: #6c6;
}

.station-card p {
    color: #a0bea0;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #9e9 ;
    font-size: 0.9rem;
}

footer .small {
    font-size: 0.8rem;
    color: #9e9 ;
}

/* Responsividade */
@media (max-width: 768px) {
    .station-info {
        flex-direction: column;
        text-align: center;
    }
    
    .station-info img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .player-controls {
        justify-content: center;
    }
    
    .volume-control {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
}


