* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    background: url("tlo.jpg") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

/* HEADER */
.site-header {
    padding: 22px 30px;
    background: rgba(0,0,0,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.tag {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #cfcfcf;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* WRAP */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* RADIO */
.radio-panel {
    max-width: 760px;
    margin: 120px auto 40px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.radio-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.radio-main-title {
    font-size: 1.4rem;
    font-weight: bold;
}

.radio-status {
    color: #ff4d4d;
    font-weight: bold;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.radio-info-box {
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.info-label {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 6px;
}

.now-playing-text {
    font-size: 1rem;
}

.radio-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: white;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.volume-box {
    margin-top: 15px;
}

/* KAFELKI */
.tiles {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tile {
    position: relative;
    padding: 35px;
    border-radius: 18px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: 0.3s;
}

.tile:hover {
    transform: translateY(-4px);
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.tile-content {
    position: relative;
    z-index: 1;
}

.tile-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #aaa;
}

.tile-title {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
}


.about-page {
    max-width: 760px;
    margin: 120px auto 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-block {
    padding: 25px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.about-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #aaa;
    margin-bottom: 10px;
}

.about-title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

.about-text {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

.tracks-page {
    max-width: 760px;
    margin: 120px auto 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tracks-intro {
    text-align: center;
    margin-bottom: 20px;
}

.tracks-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #aaa;
}

.tracks-title {
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
}

.track-item {
    padding: 20px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.track-item h2 {
    font-size: 1.2rem;
    font-weight: 500;
}

.track-item p {
    margin-top: 8px;
    color: #ccc;
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 20px;
    color: #ccc;
}