* {
    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;
}

.btnOut {
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: transparent;
}

.btnOut img {
    color: white;

}

.operations {
    display: flex;
    justify-content: space-between;
}

.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;
    }
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.play-btn:active {
    transform: scale(0.95);
}

.play-btn__icon {
    width: 0;
    height: 0;
    border-left: 16px solid currentColor;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.pause-btn__icon {
    position: relative;
    width: 16px;
    height: 20px;
}

.pause-btn__icon::before,
.pause-btn__icon::after {
    content: "";
    position: absolute;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: currentColor;
}

.pause-btn__icon::before {
    left: 0;
}

.pause-btn__icon::after {
    right: 0;
}

.audio-player__info {
    flex: 1;
    min-width: 0;
}

.audio-player__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-player__progress {
    height: 4px;
    background-color: #ffff;
    border-radius: 2px;
    overflow: hidden;
}

.audio-player__progress-bar {
    height: 100%;
    background-color: red;
    width: 0;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.audio-player__time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    text-align: right;
    margin-top: 4px;
}

.hidden {
    display: none !important;
}