        /* Algemene styling voor de body */
        body {
            font-family: 'Open Sans', sans-serif;
			margin: 0;
			padding: 20px;
			/* Vervang de oude gradient door de nieuwe afbeelding */
			background: url('../images/achtergrond_site.webp') no-repeat center center fixed; 
            background-size: cover; 
			color: #333;
			text-align: center;
			overflow-x: hidden;
        }

        /* Styling voor de algemene containerblokken */
        .container {
            margin: 30px auto;
            background-color: #ffffff;
            border-radius: 25px; /* Rondere hoeken */
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Zachte schaduw */
            padding: 30px;
            transform: rotateZ(-1deg); /* Lichte kanteling voor speels effect */
            transition: transform 0.3s ease-in-out;
            box-sizing: border-box; /* Zorgt dat padding binnen de breedte valt */
            max-width: 1200px; /* Houdt de breedte van individuele containers in toom */
        }

        .container:hover {
            transform: rotateZ(0deg) scale(1.01); /* Recht en iets groter bij hover */
        }

        /* Container voor logo en video, om deze naast elkaar te plaatsen */
        .top-section {
            display: grid;
            grid-template-columns: 1.2fr 2fr; /* Verhouding: logo-container iets kleiner, video-wrapper groter */
            gap: 30px; /* Ruimte tussen de kolommen */
            max-width: 1200px; /* Max breedte van deze sectie */
            margin: 30px auto; /* Centereer deze sectie */
        }

        /* Verwijder de "container" stijl van de logo-container en video-wrapper
           omdat de top-section de layout nu beheert.
           Ze krijgen wel de achtergrond, schaduw, etc. via specifieke klassen. */
        .top-section .logo-container,
        .top-section .video-wrapper-outer { /* video-wrapper-outer is de nieuwe wrapper om de video-wrapper */
            background-color: #ffffff;
            border-radius: 25px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            box-sizing: border-box;
            transform: rotateZ(-1deg);
            transition: transform 0.3s ease-in-out;
        }

        .top-section .logo-container:hover,
        .top-section .video-wrapper-outer:hover {
            transform: rotateZ(0deg) scale(1.01);
        }

        /* De echte logo-container binnen top-section */
        .logo-container { /* Behoud deze styling voor de inhoud */
            margin-bottom: 0; /* Geen extra marge hier */
            display: flex;
            flex-direction: column; /* Nu onder elkaar in deze container */
            justify-content: center; /* Verticaal centreren */
            align-items: center; /* Horizontaal centreren */
            text-align: center; /* Tekst centreren */
        }

        .logo {
            max-width: 380px;
            height: auto;
            transition: transform 0.2s ease-in-out;
            margin-right: 0; /* Geen marge meer hier */
            margin-bottom: 20px; /* Ruimte onder het logo */
            flex-shrink: 0;
        }

        .logo:hover {
            transform: scale(1.05) rotate(3deg);
        }

        /* Styling voor titels */
        h1 {
            font-family: 'Fredoka One', cursive;
            color: #FF69B4;
            font-size: 2.7em;
            margin: 0;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
            animation: bounceIn 1s ease-out forwards;
            flex-grow: 1;
            text-align: center; /* Centraal voor de logo-container */
        }

        h2 {
            font-family: 'Fredoka One', cursive;
            color: #4caf50;
            font-size: 1.8em;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        /* NIEUW: Outer wrapper voor de video speler */
        .video-wrapper-outer {
            display: flex; /* Gebruik flexbox om de video en offline message te centreren */
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /* De padding en shadow komen nu van top-section .video-wrapper-outer */
        }

        /* Styling voor de videoplayer container */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 18px; /* Rondere hoeken voor de video */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Schaduw voor de video */
            margin-bottom: 0; /* Geen marge hier, de outer wrapper heeft padding */
            background-color: #000; /* Zwarte achtergrond voor als de video laadt */
            width: 100%; /* Neem de volle breedte van de video-wrapper-outer */
            max-width: 700px; /* Optioneel: max breedte voor de video zelf */
        }
        .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

        .video-wrapper a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

       
        #offline-message > * {
            position: relative;
            z-index: 1;
        }

        /* NIEUW: Styling voor de tekstboodschap boven de video */
        #offline-text-message {
            text-align: center;
            padding: 10px 20px;
            margin-bottom: 20px; /* Ruimte tussen tekst en videoplayer */
            border-radius: 15px;
            font-family: 'Fredoka One', cursive;
        }

        /* AANGEPAST: Dit is nu alleen de achtergrond, geen tekst meer */
        #offline-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/minuutje.webp');
            background-size: cover;
            background-position: center 30%;
            border-radius: 18px;
            /* Alle tekst-gerelateerde styling is hier verwijderd */
        }
        
        #offline-background .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 18px;
            z-index: 0;
        }
       
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3 kolommen, flexibel */
            gap: 25px; /* Ruimte tussen de video's */
            justify-content: center; /* Horizontaal centreren van de grid items */
            max-width: 1000px; /* Optioneel: max breedte voor de grid zelf */
            margin: 0 auto; /* Centreeer de grid binnen de sectie */
        }
		
		.video-item {
            background-color: #fff; /* Witte achtergrond voor elk video item */
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            text-align: left; /* Tekst binnen het item links uitlijnen */
            display: flex; /* Gebruik flexbox voor content in het item */
            flex-direction: column; /* Verticaal gestapeld */
            justify-content: space-between; /* Zorgt dat content van boven naar beneden wordt verdeeld */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	    }

        .video-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        }
        
        .video-info {
            flex-grow: 1; /* Laat de info de resterende ruimte vullen */
            display: flex;
            flex-direction: column;
        }

        .video-info h3 {
            margin-top: 0;
            margin-bottom: 5px;
        }

        .video-info p {
            font-size: 0.9em;
            color: #555;
            line-height: 1.4;
            margin-bottom: 0; /* Geen marge onder de laatste p */
        }
        
        .video-info .video-date {
            font-size: 0.8em;
            color: #777;
            margin-top: auto; /* Plak datum onderaan de flex-item */
            text-align: right; /* Datum rechts uitlijnen */
        }
		
		/* NIEUWE STIJL VOOR DE FILMPJES SECTIE */
        .uploaded-videos-section {
            margin-top: 40px;
            padding: 30px;
            border-radius: 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .uploaded-videos-section h2 {
            color: #FF69B4; /* Roze titel */
            font-size: 2.2em;
            margin-bottom: 30px;
        }

        /* Grid container voor de onderste secties (algemene info) */
        .main-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 30px auto;
        }

        /* Specifieke styling voor de "Over Ons" container in de grid */
        .container.about-us {
            grid-column: span 1;
        }

        /* Specifieke styling voor de "Wat gaan we doen?" container in de grid */
        .container.what-we-do {
            grid-column: span 1;
        }

        /* Styling voor de 'Doe Mee' sectie (voorheen dm.html) */
        #doemee-section { /* Nieuwe ID voor de sectie */
            scroll-margin-top: 50px; /* Offset voor smooth scroll als je een vaste header hebt */
        }
        #doemee-section h1 { /* Pas H1 hier aan, kan anders zijn dan main H1 */
            font-size: 3em; /* Specifieke grootte voor deze titel */
            margin-bottom: 10px;
        }
        #doemee-section .logo-container { /* Zorg dat het logo hier niet dubbel verschijnt */
            display: none; /* Verberg het logo in deze sectie */
        }

        /* Kolommen styling voor de 'Doe Mee' sectie */
        .columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; /* Centreer de kolommen */
            margin-top: 30px;
            gap: 20px; /* Ruimte tussen de kolommen */
        }

        .aankondiging .columns .column {
           background-color:unset;
           max-width:unset;
        }

        .column {
            flex: 1 1 calc(33.333% - 40px/3); /* Verdeel in 3 kolommen met gaps, maar wees flexibel */
            max-width: 380px; /* Max breedte per kolom voor consistentie */
            background-color: #ffffff; /* Een basiskleur voor als de afbeelding nog laadt */
			background-image: url('achtergrond_blokken.png');
			background-position: center;
		    border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            box-sizing: border-box; /* Zorgt dat padding in de breedte zit */
            text-align: center; /* Centreer de tekst in de kolommen */
        }

        .column:hover {
            transform: translateY(-5px);
        }

        .column h3 {
            color: #FF69B4;
            font-family: 'Fredoka One', cursive;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        /* Styling voor de tekst onder de video */
        p {
            font-size: 1.1em;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }

        /* Knoppen (voorbeeld) */
        .button {
            display: inline-block;
            background-color: #FFD700;
            color: #333;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-family: 'Fredoka One', cursive;
            font-size: 1.1em;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin: 0 10px;
            margin-top: 20px; /* Voor knoppen in de columns */
        }

        .button:hover {
            background-color: #FFC0CB;
            transform: translateY(-3px);
        }

        /* Voettekst */
        footer {
            margin-top: 40px;
            font-size: 0.9em;
            color: #777;
        }

        /* Keyframe animaties */
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            60% {
                opacity: 1;
                transform: translateY(10px);
            }
            80% {
                transform: translateY(-5px);
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* --- POPUP / MODAL STYLES --- */
        .modal {
            display: none; /* Verborgen standaard */
            position: fixed; /* Blijft op zijn plek, ook bij scrollen */
            z-index: 1000; /* Bovenop alles */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; /* Scroll indien nodig */
            background-color: rgba(0,0,0,0.6); /* Donkere semi-transparante achtergrond */
            backdrop-filter: blur(5px); /* Vervaag de achtergrond */
            display: flex; /* Gebruik flexbox voor centreren */
            justify-content: center;
            align-items: center;
            padding: 20px; /* Ruimte aan de randen op mobiel */
            box-sizing: border-box;
            animation: fadeIn 0.3s ease-out;
        }

        .modal-content {
            background-color: #fefefe;
            margin: auto; /* Verticaal en horizontaal centreren met flexbox */
            padding: 30px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            position: relative;
            max-width: 700px; /* Max breedte voor de pop-up */
            width: 100%; /* Neemt de beschikbare breedte in beslag */
            animation: zoomIn 0.3s ease-out;
            box-sizing: border-box;
        }

        .close-button {
            color: #aaa;
            float: right;
            font-size: 40px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 20px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-button:hover,
        .close-button:focus {
            color: #333;
            text-decoration: none;
            cursor: pointer;
        }

        .video-preview-container {
            position: relative;
            cursor: pointer;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            background: #000;
        }

        .video-custom-thumbnail {
            width: 100%;
            display: block;
            transition: transform 0.3s ease;
        }

        .video-preview-container:hover .video-custom-thumbnail {
            transform: scale(1.05);
            opacity: 0.8;
        }

        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 105, 180, 0.9); /* Studio Hyper Roze */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }

        .play-icon {
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 25px solid white;
            margin-left: 5px;
        }

        .video-title-bottom {
            position: absolute;
            bottom: 10px;
            left: 15px;
            color: white;
            font-family: 'Fredoka One';
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        /* Stijlen voor het upload formulier in de popup */
        .modal-content h1 { /* Overschrijf de algemene h1 stijl hier */
            font-size: 2.2em;
            color: #FF69B4;
            margin-top: 10px;
            margin-bottom: 20px;
            text-align: center;
        }
        .modal-content h2 {
            font-size: 1.6em;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .modal-content p {
            font-size: 1em;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        /* Formulier specifieke styling in de modal */
        .modal-content form {
            text-align: left;
            padding: 0; /* Geen padding hier, zit al op modal-content */
        }
        .modal-content .form-group {
            margin-bottom: 15px;
        }
        .modal-content label {
            display: block;
            font-family: 'Fredoka One', cursive;
            font-size: 1.1em;
            color: #4CAF50;
            margin-bottom: 5px;
        }
        .modal-content input[type="text"],
        .modal-content input[type="email"],
        .modal-content textarea {
            width: 100%;
            padding: 8px;
            border: 2px solid #a8edfd;
            border-radius: 8px;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.95em;
            box-sizing: border-box;
        }
        .modal-content input[type="file"] {
            border: none;
            padding: 0;
        }
        .modal-content input[type="file"]::file-selector-button {
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 0.9em;
            margin-right: 10px;
        }
        .modal-content textarea {
            min-height: 80px;
        }
        .modal-content .checkbox-group {
            margin-top: 20px;
            font-size: 0.85em;
        }
        .modal-content .checkbox-group input[type="checkbox"] {
            margin-right: 8px;
            margin-top: 2px;
            min-width: 18px;
            min-height: 18px;
        }
        .modal-content .disclaimer {
            font-size: 0.8em;
            margin-top: 5px;
            text-align: left; /* Specifiek voor de disclaimer in de modal */
        }
        .modal-content input[type="submit"] {
            padding: 12px 25px;
            font-size: 1.1em;
            margin-top: 25px;
        }
        /* Styling voor de Login Modal */
        #loginModal {
            display: none; /* Standaard onzichtbaar */
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
        }

        #loginModal .modal-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 25px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        #loginModal input[type="password"] {
            width: 100%;
            padding: 15px;
            margin: 20px 0;
            border: 2px solid #FF69B4;
            border-radius: 15px;
            font-size: 1.5em;
            text-align: center;
            letter-spacing: 5px;
            box-sizing: border-box;
        }
		
		        /* BEGIN AANKONDIGING */
        .zeghet-aankondiging {
            background: #fffbe7;
            border: 3px solid #ffd700;
            margin-top: 40px;
            margin-bottom: 30px;
            padding: 0;
        }

        .zeghet-flex {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            width: 100%;
        }

        .zeghet-content-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        /* Speelse Crew Corner Link */
        .crew-corner-box {
            margin-top: 20px;
            padding: 20px;
            background: #fffbe7; /* Zacht geel */
            border: 3px dashed #ffd700; /* Gestippelde rand voor 'under construction/creativiteit' vibe */
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .crew-corner-box:hover {
            transform: scale(1.02) rotate(1deg);
            background: #fff9d6;
        }

        .crew-corner-box h4 {
            font-family: 'Fredoka One', cursive;
            color: #d97706;
            margin: 0 0 5px 0;
            font-size: 1.1em;
        }

        .crew-corner-box p {
            font-size: 0.85em;
            margin-bottom: 10px;
        }

        .crew-button-small {
            display: inline-block;
            background-color: #FF69B4;
            color: white;
            padding: 8px 15px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: bold;
            font-family: 'Fredoka One', cursive;
            font-size: 0.9em;
            box-shadow: 0 4px 0 #d1478a; /* Een klein 3D effectje */
            transition: 0.2s;
        }

        .crew-button-small:hover {
            transform: translateY(2px);
            box-shadow: 0 2px 0 #d1478a;
        }
		
		/* TikTok Sectie Styling */
		.tiktok-section {
			color: white;
			padding: 40px;
			margin-bottom: 50px;
		}

		.tiktok-section h2 {
			color: #FF69B4;
			font-size: 2.2em;
			margin-bottom: 30px;
		}

		.tiktok-section .column {
			transition: transform 0.3s ease;
			border: 1px solid rgba(255, 255, 255, 0.1);
		}

		.tiktok-section .column:hover {
			transform: scale(1.05) rotate(1deg);
			background: rgba(255, 255, 255, 0.15) !important;
			border-color: #00f2ea;
		}

		/* De knop een extra 'glow' geven */
		.tiktok-section .button:hover {
			box-shadow: 0 0 20px #ff0050;
			transform: translateY(-3px);
		}

		/* Responsiviteit voor mobiel */
		@media (max-width: 768px) {
			.tiktok-section {
				padding: 20px;
				margin: 20px;
			}
			.tiktok-section h2 {
				font-size: 1.8em;
			}
		}

        /* Animatie voor popup */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes zoomIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* --- END POPUP / MODAL STYLES --- */
		
		@media (max-width: 767px) { /* Pas het grid aan op middelgrote schermen */
            .video-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 2 kolommen */
                gap: 20px;
            }
        }

        /* Responsieve aanpassingen */
        @media (max-width: 767px) { /* Pas het breekpunt aan voor wanneer kolommen onder elkaar gaan */
            .top-section {
                grid-template-columns: 1fr; /* Op kleinere schermen onder elkaar */
            }
            .main-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .container,
            .top-section .logo-container,
            .top-section .video-wrapper-outer {
                transform: rotateZ(0deg); /* Haal de kanteling weg op kleinere schermen voor betere leesbaarheid */
                margin: 20px auto; /* Zorg voor wat marge als ze onder elkaar staan */
                padding: 20px;
				width:100%;
            }
            h1 {
                font-size: 2.5em;
                text-align: center; /* Op kleine schermen weer centreren */
            }
            .logo {
                margin-bottom: 15px; /* Ruimte onder het logo op kleine schermen */
            }
            .logo-container { /* Op kleine schermen weer kolomsgewijs */
                flex-direction: column;
                text-align: center;
                margin-right: 0; /* Geen marge meer rechts */
            }
            .button {
                padding: 10px 20px;
                font-size: 1em;
            }
            .offline-text, .recent-videos {
                max-width: 90%;
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }
            .recent-videos {
                max-height: none;
                overflow-y: visible;
            }

            /* Responsive voor de kolommen in de 'Doe Mee' sectie */
            .columns {
                flex-direction: column;
                align-items: center;
            }
            .column {
                width: 100%; /* Volle breedte op mobiel */
                max-width: none; /* Geen max-width meer */
            }
            #doemee-section h1 { /* Pas H1 hier aan voor mobiel */
                font-size: 2.5em;
            }

            /* Responsive voor de popup */
            .modal-content {
                padding: 20px;
                max-width: calc(100% - 40px); /* Iets meer ruimte aan de randen */
            }
            .modal-content h1 {
                font-size: 1.8em;
            }
            .modal-content h2 {
                font-size: 1.4em;
            }
            .modal-content input[type="file"]::file-selector-button {
                font-size: 0.8em;
                padding: 6px 10px;
            }
            .modal-content .checkbox-group label {
                font-size: 0.8em;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            .container,
            .top-section .logo-container,
            .top-section .video-wrapper-outer {
                padding: 15px;
            }
            h1 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.5em;
            }
            .button {
                display: block;
                margin: 10px auto;
            }
            #doemee-section h1 {
                font-size: 2em;
            }
            .modal-content {
                padding: 15px;
            }
            .close-button {
                font-size: 30px;
                top: 5px;
                right: 15px;
            }
        }
		
		@media (max-width: 767px) {
            h1 {
                font-size: 1.9em;
                text-align: center; /* Op kleine schermen weer centreren */
                white-space: normal; /* Sta normale tekstterugloop toe op kleine schermen */
                max-width: 100%; /* Neem de volle breedte op kleine schermen */
            }
            .container {
                margin: 20px auto;
                padding: 20px;
            }
            .logo {
                max-width: 150px;
                margin-right: 0; /* Geen marge meer rechts van het logo op kleine schermen */
                margin-bottom: 15px; /* Ruimte onder het logo op kleine schermen */
            }
            .logo-container {
                flex-direction: column; /* Op kleine schermen onder elkaar */
                text-align: center; /* Alles weer centreren */
                justify-content: center; /* Centereer items bij column-richting */
            }
            .button {
                padding: 10px 20px;
                font-size: 1em;
            }
            #offline-message {
                flex-direction: column;
                justify-content: center;
                align-items: center; /* Zorg dat de tekst ook in het midden staat bij column */
                text-align: center; /* Zorg dat de tekst ook in het midden staat bij column */
            }
            #offline-text-message h2 {
                font-size: 1.2em; /* Iets kleinere tekst op mobiel */
            }

            .uploaded-videos-section h2 {
                font-size: 1.8em;
            }
            .video-grid {
                grid-template-columns: 1fr; /* E n kolom op kleine schermen */
                gap: 15px;
            }
            .video-grid video {
                height: 200px; /* Iets hogere video's op mobiel */
            }
        }

        @media (max-width: 480px) {
            .container,
            .top-section .logo-container,
            .top-section .video-wrapper-outer,
            .uploaded-videos-section,
            .main-content,
            #doemee-section {
                margin-top: 10px !important;
                margin-bottom: 10px !important;
                margin-left: auto;
                margin-right: auto;
            }
            .container {
                padding-top: 12px;
                padding-bottom: 12px;
            }
        }

        @media (max-width: 390px) {
            .zeghet-tekst {
                max-width: 300px !important;
            }
        }


