
        body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            overflow: hidden ;
        }
        
        .countdown-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            background: url('/img/ramadan-2026.avif') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }
        
        .overlay {
            background: rgba(0, 0, 0, 0.75);
            padding: 40px;
            border-radius: 15px;
            max-width: 700px;
            width: 90%;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #f8d56b;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .countdown {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin: 30px 0;
        }
        
        .countdown-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 10px;
            border-radius: 10px;
            border: 1px solid rgba(248, 213, 107, 0.2);
            transition: all 0.3s ease;
        }
        
        .countdown-box:hover {
            transform: translateY(-5px);
            background: rgba(248, 213, 107, 0.15);
        }
        
        .countdown-value {
            font-size: 3rem;
            font-weight: bold;
            color: #f8d56b;
            text-shadow: 0 0 10px rgba(248, 213, 107, 0.5);
        }
        
        .countdown-label {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        .relative-time {
            font-size: 1.8rem;
            margin-top: 30px;
            color: #4fc3f7;
            font-weight: 500;
        }
        
        .moon-phase {
            font-size: 1.2rem;
            margin-top: 15px;
            color: #aaa;
            font-style: italic;
        }
        
        @media (max-width: 768px) {
            .countdown {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 {
                font-size: 2rem;
            }
            .countdown-value {
                font-size: 2rem;
            }
        }
    