* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Merriweather', Georgia, serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #e8e8e8;
    line-height: 1.8;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #d4af37;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.date {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.verse-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.verse-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #f0e6d3;
    margin-bottom: 1rem;
    text-align: center;
}

.verse-ref {
    text-align: center;
    color: #d4af37;
    font-weight: 700;
}

.btn {
    display: inline-block;
    background: #d4af37;
    color: #1a1a2e;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin: 0.5rem 0.25rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e5c04b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.full-salmo {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.full-salmo.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.salmo-title {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.salmo-verse {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.salmo-verse:last-child {
    border-bottom: none;
}

.salmo-verse .v-num {
    color: #d4af37;
    font-weight: 700;
    margin-right: 0.5rem;
}

.notification-status {
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.notification-status h3 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-indicator.active {
    background: #4caf50;
}

.status-indicator.inactive {
    background: #f44336;
}

.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #888;
}

@media (max-width: 600px) {
    .verse-text {
        font-size: 1.1rem;
    }

    .verse-card {
        padding: 1.5rem;
    }
}