        @import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Inter:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            font-family: 'Inter', sans-serif;
            padding: 10px;
        }
        
        .program-container {
            max-width: 550px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 10px;   /* sapies van box */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .title {
            font-family: 'Akaya Kanadaka', cursive;
            font-size: 40px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;   /* Spasie tussen program en items  */
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .events-grid {
            display: grid;
            gap: 5px;   /* spasie tussen datums */
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        }
        
        .event-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 6px; /* groote van elkeen */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-color);
            border-radius: 15px 15px 0 0;
        }
        
        .event-date {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .date-highlight {
            color: var(--accent-color);
            text-shadow: 0 0 10px var(--accent-glow), 0 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .event-details {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
            padding-left: 15px;
            border-left: 3px solid var(--accent-color);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .time {
            font-weight: 700;
            color: var(--accent-color);
            text-shadow: 0 0 8px var(--accent-glow), 0 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        /* Neon color schemes for different event types */
        .nagmaaldiens {
            --accent-color: #ff00ff;
            --accent-glow: rgba(255, 0, 255, 0.4);
        }
        
        .erediens {
            --accent-color: #00ffff;
            --accent-glow: rgba(0, 255, 255, 0.4);
        }
        
        .kinderbediening {
            --accent-color: #ffcc00;
            --accent-glow: rgba(255, 204, 0, 0.4);
        }
        
        .woordskool {
            --accent-color: #00ff00;
            --accent-glow: rgba(0, 255, 0, 0.4);
        }
        
        .damesbiduur {
            --accent-color: #ff3300;
            --accent-glow: rgba(255, 51, 0, 0.4);
        }
        
        .kerkraadsvergadering {
            --accent-color: #ff0099;
            --accent-glow: rgba(255, 0, 153, 0.4);
        }
        
        .damesaksievergadering {
            --accent-color: #ff6600;
            --accent-glow: rgba(255, 102, 0, 0.4);
        }
        
        .skole-sluit {
            --accent-color: #ff6600;
            --accent-glow: rgba(255, 102, 0, 0.4);
        }
        
        .skole-heropen {
            --accent-color: #cc00ff;
            --accent-glow: rgba(204, 0, 255, 0.4);
        }
        
        .klub55 {
            --accent-color: #00ffcc;
            --accent-glow: rgba(0, 255, 204, 0.4);
        }
        
        .vrouedag {
            --accent-color: #ff6600;
            --accent-glow: rgba(255, 102, 0, 0.4);
        }
        
        .dankoffersondag {
            --accent-color: #ffcc00;
            --accent-glow: rgba(255, 204, 0, 0.4);
        }
        
        .ander {
            --accent-color: #ffffff;
            --accent-glow: rgba(255, 255, 255, 0.4);
        }
        
        @media (max-width: 768px) {
            .program-container {
                padding: 25px;
                margin: 10px;
            }
            
            .title {
                font-size: 36px;
                margin-bottom: 30px;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .event-card {
                padding: 16px;
            }
            
            .event-date {
                font-size: 20px;
            }
            
            .event-details {
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .program-container {
                padding: 20px;
            }
            
            .title {
                font-size: 28px;
            }
            
            .event-date {
                font-size: 18px;
            }
        }
        
        /* Subtle animations */
        .event-card {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .event-card:nth-child(1) { animation-delay: 0.1s; }
        .event-card:nth-child(2) { animation-delay: 0.2s; }
        .event-card:nth-child(3) { animation-delay: 0.3s; }
        .event-card:nth-child(4) { animation-delay: 0.4s; }
        .event-card:nth-child(5) { animation-delay: 0.5s; }
        .event-card:nth-child(6) { animation-delay: 0.6s; }
        .event-card:nth-child(7) { animation-delay: 0.7s; }
        .event-card:nth-child(8) { animation-delay: 0.8s; }
        .event-card:nth-child(9) { animation-delay: 0.9s; }
        .event-card:nth-child(10) { animation-delay: 1s; }
        .event-card:nth-child(11) { animation-delay: 1.1s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }