* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    padding: 40px 0;
}

header h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2em;
    color: #f0f0f0;
    font-weight: 300;
}

.banner {
    width: 100%;
    max-width: 1200px;
    max-height: 70vh;
    height: auto;  /* Laat hoogte automatisch aanpassen */
    object-fit: contain;  /* Toon hele afbeelding */
    object-position: center top;  /* Focus op bovenkant */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin: 0 auto 30px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.channels h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn i {
    font-size: 1.4em;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.tiktok { background: linear-gradient(45deg, #000, #ff0050); }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.youtube { background: linear-gradient(45deg, #FF0000, #CC0000); }

footer {
    margin-top: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9em;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2.2em;
    }
    
    .banner {
        height: 200px;
    }
    
    .social-btn {
        min-width: 220px;
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }
    
    header p {
        font-size: 1em;
    }
    
    .social-btn {
        min-width: 100%;
        flex-direction: column;
        gap: 8px;
        padding: 18px;
    }
}
