* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    position: relative;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f8c471;
}

#current-date {
    font-size: 1.1rem;
    color: #ccc;
}

.verse-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
}

.verse-content {
    text-align: center;
}

#verse-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

#verse-reference {
    font-weight: 600;
    color: #f8c471;
}

#new-verse-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

#new-verse-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.daily-reflection, .daily-prayer {
    margin-bottom: 2rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f8c471;
}

#reflection-text, #prayer-text {
    line-height: 1.6;
    font-size: 1.1rem;
}

.download-options {
    margin: auto;
    margin-bottom: 2rem;

}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#download-devotional, #download-image, #share-btn {
    background-color: #f8c471;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#download-devotional:hover, #download-image:hover, #share-btn:hover {
    background-color: #f5b041;
}

footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#share-btn {
    margin-bottom: 1rem;
}

footer p {
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    #verse-text {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}