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

body {
    font-family: Georgia, serif;
    background: url('img/page-bg2.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.countdown-timer {
    position: fixed;
    top: 20px;
    right: 20px;
    /* background: rgba(0, 0, 0, 0.7); */
    color: rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    /* backdrop-filter: blur(5px); */
    /* border: 1px solid rgba(255, 255, 255, 0.4); */
    z-index: 1000;
    transition: opacity 0.3s 
ease;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.scripture-frame {
    /* background: linear-gradient(45deg, #8b4513, #a0522d, #cd853f); */
    /* padding: 30px; */
    /* border-radius: 15px; */
    /* box-shadow: 0 0 0 8px #654321, 0 0 0 12px #8b4513, inset 0 0 20px rgba(0, 0, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.4); */
    max-width: 85%;
    width: 90%;
    position: relative;
}

.scripture-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    /* background: repeating-linear-gradient(
        0deg,
        #8b4513,
        #8b4513 2px,
        #a0522d 2px,
        #a0522d 4px
    ); */
    border-radius: 20px;
    z-index: -1;
}

.scripture-content {
    /* background: #f5f5dc; */
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    /* box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1); */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.scripture-text {
    font-size: 1.45rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.scripture-reference {
    font-size: 1.25rem;
    color: #34495e;
    font-weight: 600;
    text-align: right;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .scripture-frame {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .scripture-content {
        padding: 0px 10px;
    }
    
    .scripture-text {
        font-size: 1.5rem;
    }
    
    .scripture-reference {
        font-size: 1.2rem;
    }
}