@import "fonts.min.css";

:root {
    --accent: #169da8;
    --accent-secondary: #f4a408;
    --bg: #191919;
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: "Poppins", sans-serif !important;
    background: var(--bg);
    color: #fff;
    margin: 0; padding: 0;
    display: flex; flex-direction: column;
    min-height: 100vh;
}

#background-blur{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(100px);
    z-index: -1;
}

.main-content {
    flex: 1; width: 100%; max-width: 1100px;
    margin: 0 auto; padding: 40px 20px;
}

.header-grid {
    margin-bottom: 40px;
}

.header-logo {
    width: 100%; max-width: 220px; aspect-ratio: 1;
    border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

.white-card {
    background: #ffffff !important;
    color: #1a1a1a !important;
    border-radius: 15px; padding: 1.5rem;
    height: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.station-details-links {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}
.btn-group{
    background-color: var(--accent-secondary);
    border-left: 4px solid var(--accent-secondary);
    border-bottom: 4px solid var(--accent-secondary);
}

.social-link {
    width: 38px;
    height: 38px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: black 0 0 5px 0;
}
.social-link:hover {
    transform: scale(1.1);
    color: white;
    opacity: 0.9;
}
.social-link i {
    font-size: 25px;
}

.link-lfm {
    background: linear-gradient(135deg, #131313 0%, #9f9f9f 100%);
}

.link-hp {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
}

.link-fb {
    background: linear-gradient(0deg, #0165E1, #17A9FD);
}

.link-tw {
    background: #1da1f2;
}

.link-ig {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.btn-grey {
    background: #333;
    color: white;
    border: none;
    font-size: 0.75rem;
    font-weight: bold;
}
.btn-grey:hover {
    background: #444;
    color: white;
}

.glass-wrapper {
    background: rgba(80, 80, 80, 0.40);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-radius: 30px; padding: 40px;
}

#cover-art {
    width: 100%; max-width: 320px; aspect-ratio: 1;
    border-radius: 1.5rem; object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); margin-bottom: 1.5rem;
}

.play-btn {
    background: var(--accent);
    font-size: 50px;
    color: white;
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.2s;
    box-shadow: 0 0 10px 1px var(--accent);
}
.play-btn:hover {
    transform: scale(1.1);
}

.list-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.history-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 8px;
}
.history-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-right: 12px;
    object-fit: cover;
}

footer {
    padding: 25px;
    text-align: center;
    background-color: var(--accent);
    color: #000;
    font-weight: bold;
}
footer img {
    height: 35px;
    margin-top: 10px;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 15px;
}
.fw-black {
    font-weight: 900;
}
.italic {
    font-style: italic;
}

.timetable-wrapper {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
}

#timetable {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.day-card {
    flex: 0 0 300px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.timetable-wrapper::-webkit-scrollbar {
    height: 6px;
}
.timetable-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.day-card {
    flex: 0 0 300px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.day-header {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 15px;
    transition: background 0.2s;
}

.show-block:hover {
    background: rgba(0, 0, 0, 0.5);
}

.playlist-cover {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.show-time {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
    display: block;
}

.show-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #eee;
    display: block;
}