    body {
        background: #151515 url('http://www.verwer.net/img/backgrounds/photo-1661946565922-084409a09d35.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        margin: 0;
        padding: 0;
        min-height: 100vh;
        color: #fff;
        position: relative;
    }
    
	/* Fix de overlay zodat die niet meescrollt */
	.img-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #111111;
		opacity: 0.7;
		z-index: 1;
	}

	.container {
		position: fixed;
		top: 0;
		left: 0;           /* Verander van 50% naar 0 */
		width: 100%;       /* Verander van 100vw naar 100% */
		max-width: none;   /* Verwijder max-width beperking */
		height: 100vh;
		z-index: 2;
		padding: 20px;
		color: white;
		overflow-y: auto;
		box-sizing: border-box;  /* Zorg dat padding binnen width valt */
	}

	/* Als je toch een max-width wilt behouden en centreren: */
	.container-inner {
		max-width: 1400px;
		margin: 0 auto;
		width: 100%;
	}
  
  .header {
        text-align: center;
        margin-bottom: 40px;
        padding: 40px 0;
        font-family: "Playfair Display", Vidaloka, serif;
    }
    
    .header h1 {
        font-size: 5rem;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        color: #ffffff;
        font-family: "Playfair Display", Vidaloka, serif;
        line-height: 0.85;
    }
    
    .header .subtitle {
        font-size: 1.5em;
        margin-top: 20px;
        color: #bfbfbf;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        font-style: italic;
    }
    
    .intro-section {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid hsla(0, 0%, 65%, 0.158);
        box-shadow: 0 0 36px 1px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s;
    }
    
    .intro-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .stat-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid hsla(0, 0%, 65%, 0.158);
        box-shadow: 0 0 36px 1px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s, background 0.3s;
        cursor: pointer;
    }
    
    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .stat-number {
        font-size: 2.5em;
        font-weight: bold;
        color: #bfbfbf;
        display: block;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .stat-label {
        font-size: 1.1em;
        color: #ffffff;
        margin-top: 5px;
    }
    
    .content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin: 40px 0;
    }
    
    .content-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid hsla(0, 0%, 65%, 0.158);
        box-shadow: 0 0 36px 1px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s, background 0.3s;
        cursor: pointer;
    }
    
    .content-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .content-card h3 {
        color: #bfbfbf;
        margin-top: 0;
        font-size: 1.4em;
        border-bottom: 2px solid #bfbfbf;
        padding-bottom: 10px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
	.content-card strong {
		color: #ffffff;
	}

    .image-placeholder {
        width: 100%;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px dashed hsla(0, 0%, 65%, 0.3);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 15px 0;
        color: #bfbfbf;
        font-style: italic;
        transition: all 0.3s ease;
    }
	
    .small {
        height: 73px;
	}
	
	/* Foto styling binnen placeholders */
	.image-placeholder img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 10px;
		cursor: pointer;
		transition: transform 0.3s ease, filter 0.3s ease;
	}

	.image-placeholder img:hover {
		transform: scale(1.05);
		filter: brightness(1.1);
	}

	/* Lightbox styling */
	.lightbox {
		display: none;
		position: fixed;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		backdrop-filter: blur(5px);
	}

	.lightbox-content {
		position: relative;
		margin: auto;
		display: block;
		width: 90%;
		max-width: 1200px;
		max-height: 90%;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 10px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	}

	.lightbox-close {
		position: absolute;
		top: 15px;
		right: 35px;
		color: #fff;
		font-size: 40px;
		font-weight: bold;
		cursor: pointer;
		z-index: 10000;
		background: rgba(0, 0, 0, 0.5);
		border-radius: 50%;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background 0.3s ease;
	}

	.lightbox-close:hover {
		background: rgba(255, 255, 255, 0.2);
	}

	.lightbox-caption {
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		font-size: 16px;
		background: rgba(0, 0, 0, 0.7);
		padding: 10px 20px;
		border-radius: 5px;
		text-align: center;
	}

	/* Animatie voor lightbox */
	.lightbox.show {
		display: block;
		animation: fadeIn 0.3s ease;
	}

	@keyframes fadeIn {
		from { opacity: 0; }
		to { opacity: 1; }
	}

.auth-section {
    padding: 25px; /* Verklein van 30px naar 25px */
    margin-top: 20px; /* Verklein van 30px naar 20px */
}

/* Maak login form elementen even breed als auth-buttons */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 15px; /* Verklein spacing */
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px; /* Zelfde breedte als auth-buttons container */
}

/* Override de style3.css input styling */
.login-container form input {
    display: block !important;
    padding: 14.5px;
    width: 100% !important;
    max-width: none !important;
    margin: 1rem 0;
    color: white;
    outline: none;
    background-color: rgba(145, 145, 145, 0.12);
    border: none;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-size: 15px;
    backdrop-filter: blur(15px);
    box-sizing: border-box; /* Belangrijk voor consistente breedte */
}

/* Override de style3.css button styling */
.login-container form button {
    background-color: #0f3460;
    color: white !important;
    display: block;
    padding: 13px 30px; /* Zelfde padding als auth-buttons */
    border-radius: 5px;
    outline: none;
    font-size: 1.1em; /* Zelfde als auth-buttons */
    letter-spacing: 1.5px;
    font-weight: bold;
    width: 100% !important;
    cursor: pointer;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: none;
    box-sizing: border-box; /* Belangrijk voor consistente breedte */
}

.login-container form button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
}

    .auth-section {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid hsla(0, 0%, 65%, 0.158);
        box-shadow: 0 0 36px 1px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        margin-top: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s;
    }
    
    .auth-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
.auth-buttons {
    display: flex;
    flex-direction: column; /* Verander naar column voor verticale stapeling */
    gap: 15px; /* Kleinere gap */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    max-width: 400px; /* Zelfde als login-form */
    margin-left: auto;
    margin-right: auto;
}

/* Register-forget links styling */
.register-forget {
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px; /* Zelfde breedte consistentie */
}

    .btn {
        background-color: #0f3460;
    color: white !important;
    display: block;
    padding: 13px 30px; /* Zelfde padding als form button */
    border-radius: 5px;
    outline: none;
    font-size: 18px; /* Zelfde als form button */
    letter-spacing: 1.5px;
    font-weight: bold;
    width: 100% !important; /* Volle breedte zoals form button */
    cursor: pointer;
    margin: 0; /* Geen margin, gap regelt de spacing */
    transition: all 0.1s ease-in-out;
    border: none;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    }
    
    .btn-primary {
        background-color: #0f3460;
    color: #ffffff !important;
    }
    
    .btn-secondary {
        background-color: #1f72b8;
    color: #ffffff !important;
    }
    
    .btn:hover {
        box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
    }
        
    .footer {
        text-align: center;
        margin-top: 50px;
        padding: 20px;
        color: #bfbfbf;
        font-size: 0.9em;
        border-top: 1px solid hsla(0, 0%, 65%, 0.158);
    }
    
    /* Animaties uit style3.css */
    @keyframes show {
        to {
            opacity: 1;
        }
    }
    
    @keyframes wobble {
        0% { transform: scale(1.025); }
        25% { transform: scale(1); }
        75% { transform: scale(1.025); }
        100% { transform: scale(1); }
    }
    
    .intro-section h2 {
        color: #bfbfbf;
        font-size: 2.2em;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .intro-section p {
        line-height: 1.6;
        margin-bottom: 15px;
        color: #ffffff;
    }
    
    .content-card p {
        line-height: 1.6;
        color: #ffffff;
    }
    
    .auth-section h2 {
        color: #bfbfbf;
        font-size: 2em;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .auth-section p {
        line-height: 1.6;
        color: #ffffff;
        margin-bottom: 15px;
    }
    
    /* Responsive aanpassingen */
    @media (max-width: 768px) {
        .header h1 {
            font-size: 3.5rem;
        }
        
        .content-grid {
            grid-template-columns: 1fr;
        }
        
        .auth-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            width: 200px;
        }
        
        .container {
            padding: 15px;
        }
        
        .intro-section, .content-card, .auth-section {
            padding: 20px;
        }
    }
    
    @media (max-width: 430px) {
        .header h1 {
            font-size: 2.5rem;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .stat-card {
            padding: 15px;
        }
        
        .stat-number {
            font-size: 2em;
        }
        
        .container {
            padding: 10px;
        }
    }
