body {
    font-family: Arial, sans-serif;
    /* background-image: url('assets/lent-background.jpg'); */
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
    opacity: 0.9;
}

header {
    margin-bottom: 20px;
}

h1 {
    color: #4a2c2a;
    font-size: 2em;
}

p {
    font-size: 1.1em;
}

#progress-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#week-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#week-nav button {
    background: #4a2c2a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

#week-nav button:hover {
    background: #6b3e3c;
}

#week-nav #active-week {
    background: #4a2c2a;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
}

#week-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

#week-progress span {
    padding: 5px 10px;
    border-radius: 5px;
}

#week-progress .week-indicator {
    cursor: pointer;
    background: #ddd;
    transition: background 0.3s ease;
}

#week-progress .week-indicator.completed {
    background: #2ecc71;
    color: white;
}

#week-progress .week-indicator.active {
    background: #4a2c2a;
    color: white;
    font-weight: bold;
}

#week-progress .week-indicator.locked {
    background: #ccc;
    color: #666;
}

#controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

#reset-btn {
    background-color: #4a2c2a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

#reset-btn:hover {
    background-color: #6b3e3c;
}

#autoplay {
    margin: 5px;
}

.station {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 15px auto;
    padding: 20px;
    max-width: 700px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.station.week-1 { background-color: #f8e1e1; }
.station.week-2 { background-color: #e1f8e1; }
.station.week-3 { background-color: #e1e1f8; }
.station.week-4 { background-color: #f8f1e1; }
.station.week-5 { background-color: #e1f8f1; }
.station.week-6 { background-color: #f8e1f8; }

.station:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h2 {
    color: #4a2c2a;
    font-size: 1.5em;
    margin-bottom: 10px;
    cursor: pointer;
}

.station-content {
    display: none;
}

.station-content.visible {
    display: block;
}

.station p {
    line-height: 1.6;
    margin: 10px 0;
}

.station i {
    margin-right: 5px;
    color: #4a2c2a;
}

strong {
    color: #4a2c2a;
}

.station img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 5px;
}

.station audio {
    width: 100%;
    margin: 10px 0;
}

audio::-webkit-media-controls-panel {
    background-color: #4a2c2a;
    color: white;
}

.share-btn {
    background: #4a2c2a;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.share-btn:hover {
    background: #6b3e3c;
}

.locked-message {
    color: #777;
    font-style: italic;
}

/* Content styling for About and Privacy pages */
.content {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 15px auto;
    padding: 20px;
    max-width: 700px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #fff;
}

.content h2 {
    color: #4a2c2a;
    font-size: 1.5em;
    margin-bottom: 10px;
    cursor: default;
}

.content h3 {
    color: #4a2c2a;
    font-size: 1.2em;
    margin: 15px 0 5px;
}

.content p {
    line-height: 1.6;
    margin: 10px 0;
}

.content a {
    color: #4a2c2a;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.easter-message {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.easter-message h2 {
    color: #2c3e50;
    font-size: 2em;
}

.easter-message p {
    font-size: 1.1em;
    color: #555;
}

/* Footer styling */
.footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.footer a {
    color: #4a2c2a;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Home button styling */
.home-btn {
    background: #4a2c2a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.home-btn:hover {
    background: #6b3e3c;
}

@media (max-width: 600px) {
    .station, .content {
        padding: 15px;
        margin: 10px 5px;
    }
    h1 { font-size: 1.5em; }
    h2 { font-size: 1.2em; }
    #controls { flex-direction: column; }
    #progress-bar {
        padding: 8px;
    }
    #week-nav {
        gap: 10px;
    }
    #week-nav button {
        padding: 6px 12px;
        font-size: 0.9em;
    }
    #week-nav #active-week {
        padding: 6px 15px;
        font-size: 1em;
        min-width: 80px;
    }
    #week-progress {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    #week-progress span {
        padding: 4px 8px;
        font-size: 0.8em;
    }
}

      #ytFrame::-webkit-scrollbar {
    display: none;
  }

  