/**
 * NVSP Sloganhunt - Action Page Styles
 * Versie: 2.4 - Prijsblokken grid fix + witte tekst fix + overflow fix
 * Encoding: UTF-8 zonder BOM
 * Compatible: Joomla 5.x + Astroid Framework
 *
 * CHANGELOG v2.4 (2026-03-17):
 * - box-sizing: border-box + overflow-x: hidden op .sloganhunt-action-page
 * - prizes-grid: alle 3 cards in 1 rij via repeat(3, 1fr), geen grid-column:1/-1
 * - prize-card-main: geen volle-breedte-override meer, gelijke card als extra prijzen
 * - registration-info-col: alle child-elementen geforceerd wit via color: white !important
 * - Breakpoint 1024px: prizes-grid blijft 3 kolommen (was onterecht naar 1fr)
 * - Breakpoint 768px: prizes-grid naar 1 kolom
 *
 * CHANGELOG v2.2 (2 november 2025):
 * - Added word-wrap for text in blue info column
 * - Added box-sizing: border-box for all form inputs
 * - Added container margins for mobile
 * - Fixed grid-template-columns at 768px (moved from 1024px)
 * - Improved Cloudflare Turnstile scaling
 */

/* ========================================
   ✅ v2.4: GLOBALE BOX-SIZING + OVERFLOW FIX
======================================== */
.sloganhunt-action-page,
.sloganhunt-action-page *,
.sloganhunt-action-page *::before,
.sloganhunt-action-page *::after {
    box-sizing: border-box;
}

.sloganhunt-action-page {
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   HERO - TRANSPARANT MET PULSERENDE TEKST
======================================== */
.sloganhunt-hero {
    background: transparent;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-logo-wrapper {
    margin-bottom: 30px;
}

.hero-logo-main {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-title {
    font-size: 2.5rem;
    color: #0066CC;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ✅ v2.5: hero staat op blauwe Astroid-achtergrond — tekst wit */
.sloganhunt-hero .hero-title {
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
}

.sloganhunt-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.hero-prize-text {
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    animation: textPulse 2s ease-in-out infinite;
}

/* ✅ v2.5: prize-text wit op blauwe hero-achtergrond */
.sloganhunt-hero .hero-prize-text {
    color: white;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

.hero-prize-icon {
    font-size: 2rem;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* ========================================
   PRIJZEN SECTIE - ALLE 3 CARDS IN 1 RIJ
   ✅ v2.4: prize-card-main heeft GEEN grid-column:1/-1 meer.
   Alle 3 cards zijn gelijke kolommen in repeat(3, 1fr).
   Onderscheid via .prize-card-main vs .prize-card-extra badge-kleur.
======================================== */
.sloganhunt-prizes-showcase {
    margin: 80px 0;
}

/* ✅ v2.4: max-width container voor alle prize-cards */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* ✅ v2.4: prize-card-main is een gewone grid-cell, geen grid-column override */
.prize-card-main {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.prize-card-main:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-color: #FFD700;
}

.prize-badge {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 12px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-image {
    padding: 30px 25px;
    text-align: center;
    background: #fafafa;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-image img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.prize-image-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.prize-icon {
    font-size: 5rem;
    opacity: 0.3;
}

.prize-image-placeholder p {
    font-size: 1.2rem;
    color: #999;
    font-weight: 600;
}

.prize-content {
    padding: 20px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prize-content h3,
.prize-name {
    font-size: 1.4rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.prize-content p,
.prize-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.prize-value {
    font-size: 1.1rem;
    color: #0066CC;
    font-weight: 700;
    background: rgba(0, 102, 204, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    align-self: flex-start;
}

.prize-value .value-label {
    margin-right: 6px;
}

/* ========================================
   EXTRA PRIJZEN CARDS
======================================== */
.prize-card-extra {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.prize-card-extra:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-color: #0066CC;
}

.prize-badge-small {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.prize-image-small {
    padding: 30px 25px;
    text-align: center;
    background: #fafafa;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-image-small img {
    max-width: 100%;
    max-height: 180px;
    height: auto;
    border-radius: 10px;
}

.prize-image-small.prize-image-placeholder .prize-icon {
    font-size: 4rem;
}

.prize-card-extra .prize-content {
    padding: 20px 25px 25px;
}

.prize-card-extra .prize-name {
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.prize-card-extra .prize-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.prize-value-small {
    font-size: 1rem;
    color: #0066CC;
    font-weight: 600;
    background: rgba(0, 102, 204, 0.1);
    display: inline-block;
    padding: 7px 16px;
    border-radius: 20px;
}

/* ========================================
   HOE WERKT HET - STAPPEN
======================================== */
.sloganhunt-steps {
    margin: 80px 0;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-width: 220px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: #0066CC;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
    border: 3px solid white;
}

.step-icon {
    font-size: 4rem;
    margin: 25px 0 20px;
}

.step-title {
    font-size: 1.2rem;
    color: #0066CC;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2.5rem;
    color: #0066CC;
    font-weight: bold;
    align-self: center;
    margin-top: 20px;
}

/* ========================================
   REGISTRATIE - 2 KOLOMMEN
======================================== */
.sloganhunt-main-action {
    margin: 80px 0;
}

.registration-wrapper {
    margin: 0;
}

.registration-card-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 700px;
}

/* ✅ v2.4: BLAUWE KOLOM - alle tekst geforceerd wit */
.registration-info-col {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.registration-info-col::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* ✅ v2.4: Alle child-elementen in blauwe kolom wit */
.registration-info-col,
.registration-info-col *,
.registration-info-col h2,
.registration-info-col h3,
.registration-info-col p,
.registration-info-col span,
.registration-info-col div,
.registration-info-col strong,
.registration-info-col li {
    color: white !important;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.registration-info-col h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.info-description {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.25);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.info-prize-highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.prize-highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.prize-highlight-text {
    line-height: 1.6;
}

.prize-highlight-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.registration-form-col {
    padding: 60px 50px;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.05rem;
}

.sloganhunt-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.sloganhunt-form-modern .form-group {
    margin-bottom: 25px;
}

.sloganhunt-form-modern .form-group-half {
    margin-bottom: 0;
}

.sloganhunt-form-modern label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.sloganhunt-form-modern input[type="text"],
.sloganhunt-form-modern input[type="email"],
.sloganhunt-form-modern input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    max-width: 100%;
}

.sloganhunt-form-modern input:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    box-sizing: border-box;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0052A3 0%, #003D7A 100%);
}

.btn-icon {
    font-size: 1.4rem;
}

.form-footer-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.form-footer-note a {
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
}

.form-footer-note a:hover {
    text-decoration: underline;
}

/* ========================================
   VOORTGANG CARD
======================================== */
.progress-card {
    background: white;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.progress-card-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
}

.progress-code {
    color: #666;
    font-size: 1.15rem;
}

.progress-code strong {
    color: #0066CC;
    font-size: 1.3rem;
    font-weight: 700;
}

.progress-stat-main {
    text-align: center;
    margin: 40px 0;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: #0066CC;
}

.stat-separator {
    font-size: 4rem;
    color: #ccc;
    margin: 0 15px;
}

.stat-total {
    font-size: 3rem;
    color: #999;
    font-weight: 600;
}

.stat-label {
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
    color: #666;
}

.progress-bar-container {
    margin: 40px 0;
}

.progress-bar-track {
    background: #e8e8e8;
    height: 35px;
    border-radius: 18px;
    overflow: hidden;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #0066CC 0%, #003D7A 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.8s ease;
}

.progress-bar-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.progress-bar-label {
    margin-top: 15px;
    text-align: center;
    color: #666;
    font-size: 1.05rem;
}

.progress-complete {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    border-radius: 20px;
    color: white;
    margin-top: 30px;
}

.complete-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.progress-complete h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.progress-complete p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.progress-actions {
    text-align: center;
    margin-top: 30px;
}

/* ========================================
   FAQ SECTIE
======================================== */
.sloganhunt-faq {
    margin: 80px 0 40px;
    padding: 60px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sloganhunt-faq .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #fefefe;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #0066CC;
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #0066CC;
}

.faq-answer {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   ALERT MESSAGES
======================================== */
.alert-action-closed {
    background: white;
    border: 3px solid #FFA500;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    box-shadow: 0 10px 35px rgba(255, 165, 0, 0.15);
}

.alert-action-closed h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.alert-action-closed p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 12px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0052A3 0%, #002952 100%);
}

.btn-secondary {
    background: white;
    color: #0066CC;
    border: 2px solid #0066CC;
}

.btn-secondary:hover {
    background: #0066CC;
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.25);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ========================================
   RULES/TERMS LINK
======================================== */
.sloganhunt-rules-link {
    text-align: center;
    margin: 40px 0;
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ✅ v2.4: prizes-grid NIET naar 1fr - blijft repeat(3,1fr)
   Alleen stappen en FAQ aanpassen op tablet
======================================== */
@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ========================================
   RESPONSIVE - MOBIEL (768px)
   v2.7: Geconsolideerd — geen conflicterende regels
======================================== */
@media (max-width: 768px) {

    .sloganhunt-action-page {
        padding: 15px;
    }

    .sloganhunt-section {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Prijzen: 1 kolom */
    .prizes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prize-content h3,
    .prize-name {
        font-size: 2rem;
    }

    .prize-content p,
    .prize-description {
        font-size: 1.05rem;
    }

    .prize-image {
        min-height: 180px;
        padding: 20px;
    }

    .prize-image img {
        max-height: 160px;
    }

    .prize-image-placeholder {
        max-height: 350px;
        padding: 40px 20px;
    }

    .prize-icon {
        font-size: 5rem;
    }

    /* Formulier: naam-velden onder elkaar */
    .sloganhunt-form-modern .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sloganhunt-form-modern .form-group-half {
        margin-bottom: 25px;
    }

    /* Form inputs: nooit breder dan container */
    .sloganhunt-form-modern input[type="text"],
    .sloganhunt-form-modern input[type="email"],
    .sloganhunt-form-modern input[type="tel"],
    .sloganhunt-form-modern button {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* Registratieblok: 1 kolom, geen min-height */
    .registration-card-modern {
        display: block;
        margin: 0;
        min-height: auto;
        border-radius: 16px;
    }

    /* Blauwe kolom: vaste breedte 100%, padding klein genoeg voor 320px */
    .registration-info-col {
        width: 100%;
        max-width: 100%;
        padding: 35px 20px;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Witte kolom: zelfde padding */
    .registration-form-col {
        width: 100%;
        max-width: 100%;
        padding: 35px 20px;
        box-sizing: border-box;
    }

    /* Tekst in blauwe kolom: altijd wrappen */
    .benefit-item {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .benefit-item span:last-child {
        min-width: 0;
        flex: 1;
        word-break: break-word;
    }

    .info-description,
    .registration-info-col h2,
    .prize-highlight-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }

    /* FAQ */
    .sloganhunt-faq {
        padding: 40px 25px;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    /* Hero */
    .hero-prize-text {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }

    .hero-logo-main {
        max-width: 450px;
    }

    /* Voortgang */
    .stat-number {
        font-size: 4rem;
    }

    .stat-total {
        font-size: 2.5rem;
    }

    /* Turnstile */
    .cf-turnstile {
        transform: scale(0.85);
        transform-origin: 0 0;
        max-width: 100%;
        overflow: hidden;
    }

}

/* ========================================
   RESPONSIVE - KLEIN MOBIEL (480px)
======================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-prize-text {
        font-size: 1.1rem;
    }

    .hero-logo-main {
        max-width: 100%;
    }

    .prize-content h3,
    .prize-name {
        font-size: 1.8rem;
    }

    .prize-value {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .prize-image img {
        max-height: 160px;
    }

    .prize-image-placeholder {
        max-height: 300px;
        min-height: 180px;
    }

    .prize-card-main {
        border-radius: 15px;
    }

    .faq-item {
        padding: 20px 15px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    /* ✅ v2.2: EXTRA KLEINE MOBIEL PADDING */
    .registration-form-col {
        padding: 30px 20px;
    }

    /* ✅ v2.2: TURNSTILE EXTRA KLEIN */
    .cf-turnstile {
        transform: scale(0.8);
    }

    /* ✅ v2.2: FORM INPUT PADDING VERKLEINEN */
    .sloganhunt-form-modern input[type="text"],
    .sloganhunt-form-modern input[type="email"],
    .sloganhunt-form-modern input[type="tel"] {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    /* ✅ v2.2: BUTTON PADDING VERKLEINEN */
    .btn-register {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ========================================
   RESPONSIVE - EXTRA KLEIN (360px)
   ✅ v2.2: SECTIE VOOR ZEER KLEINE SCHERMEN
======================================== */
@media (max-width: 400px) {
    .sloganhunt-hero {
        padding: 40px 15px;
    }

    .prize-card-main {
        padding: 0;
    }

    .faq-grid {
        gap: 20px;
    }

    .sloganhunt-faq {
        padding: 30px 15px;
    }

    /* ✅ v2.2: ZEER KLEINE MOBIEL - TURNSTILE */
    .cf-turnstile {
        transform: scale(0.75);
        transform-origin: 0 0;
    }

    /* ✅ v2.2: ZEER KLEINE MOBIEL - FORM CONTAINER */
    .registration-card-modern {
        margin: 0 10px;
    }

    /* ✅ v2.2: ZEER KLEINE MOBIEL - FORM PADDING */
    .registration-form-col {
        padding: 25px 15px;
    }

    /* ✅ v2.2: ZEER KLEINE MOBIEL - INPUT FIELDS */
    .sloganhunt-form-modern input[type="text"],
    .sloganhunt-form-modern input[type="email"],
    .sloganhunt-form-modern input[type="tel"] {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* ✅ v2.2: ZEER KLEINE MOBIEL - LABELS */
    .sloganhunt-form-modern label {
        font-size: 0.95rem;
    }

    /* ✅ v2.2: ZEER KLEINE MOBIEL - FORM HEADER */
    .form-header h3 {
        font-size: 1.6rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .sloganhunt-hero,
    .btn,
    .faq-item,
    .registration-card-modern {
        page-break-inside: avoid;
    }
}
