* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    width: 100%;
    max-width: 700px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo {
    height: 40px;
}

.divider {
    width: 1.5px;
    height: 25px;
    background: #ddd;
}

.status-badge {
    background: #e7f1ff;
    color: #007bff;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#countdown {
    font-size: 4rem;
    font-weight: bold;
    color: #2d3436;
    font-family: monospace;
    margin-bottom: 10px;
}

.prayer-section {
    background: #fdf9f3;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #f3e5d0;
    margin: 30px 0;
}

.prayer-section h3 {
    font-size: 1rem;
    color: #8e6d45;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.arabic {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2d3436;
    line-height: 2.2;
    font-family: 'Times New Roman', serif;
}

.translation {
    font-style: italic;
    color: #636e72;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tips-card {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.tips-card h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.tips-card ul {
    padding-left: 20px;
    color: #636e72;
    font-size: 0.85rem;
    line-height: 1.8;
}

footer {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #b2bec3;
}

@media (max-width: 600px) {
    #countdown {
        font-size: 2.5rem;
    }

    .arabic {
        font-size: 1.3rem;
    }
}