/* Reset & Basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0f172a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    text-align: center;
}

/* Duin/Strand sfeer achtergrond verloop */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Header */
.badge {
    background: #f59e0b;
    color: #000;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 span {
    color: #38bdf8;
}

.subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* Video Frame */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay-text {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f59e0b;
}

/* Action section & Button */
.action-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.action-section p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-btn i {
    font-size: 1.6rem;
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.6);
}

/* Footer */
footer {
    padding: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive voor mobiel */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .instagram-btn {
        width: 100%;
        font-size: 1rem;
    }
}
