/* MR Agency Lingo - Upfluence Style met Echte Lingo Regels */

body {
    background: linear-gradient(135deg, #a8d5e2 0%, #89c4d4 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

.mr-lingo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* ========== START SCHERM ========== */
.mr-lingo-start-screen {
    text-align: center;
}

.mr-lingo-start-header {
    margin-bottom: 50px;
}

.mr-lingo-start-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.mr-lingo-start-title {
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 10px 0;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 0, 128, 0.3);
    letter-spacing: 20px;
}

.mr-lingo-start-subtitle {
    font-size: 18px;
    color: #4a5d6e;
    letter-spacing: 4px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.mr-lingo-start-text {
    font-size: 24px;
    color: #4a5d6e;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.mr-lingo-difficulty-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.mr-lingo-difficulty-btn {
    width: 280px;
    padding: 35px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mr-lingo-easy {
    background: linear-gradient(135deg, #5b8fc7 0%, #4a7ab8 100%);
    color: white;
}

.mr-lingo-medium {
    background: linear-gradient(135deg, #e85d75 0%, #d94861 100%);
    color: white;
}

.mr-lingo-hard {
    background: linear-gradient(135deg, #c85a96 0%, #b44882 100%);
    color: white;
}

.mr-lingo-difficulty-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.mr-lingo-diff-title {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.mr-lingo-diff-desc {
    font-size: 16px;
    opacity: 0.9;
}

/* ========== GAME SCHERM ========== */
.mr-lingo-game-screen {
    display: block;
}

/* ── GAME LAYOUT: bord links, sidebar rechts ── */
.mr-lingo-game-layout {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 20px;
    align-items: flex-start;
}

.mr-lingo-game-board {
    background: linear-gradient(135deg, #4a7ab8 0%, #3d6ca8 100%);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 -8px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    border: 8px solid #5b8fc7;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.mr-lingo-game-sidebar {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-top: 10px;
}

.mr-lingo-word-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mr-lingo-word-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mr-lingo-letter-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6b9dd4 0%, #5b8fc7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 -4px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mr-lingo-letter-box.filled {
    color: #fff;
    background: linear-gradient(135deg, #5b8fc7 0%, #4a7ab8 100%);
}

.mr-lingo-letter-box.correct {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    color: #fff;
    border-color: #fff;
    animation: popIn 0.5s ease;
}

.mr-lingo-letter-box.present {
    background: linear-gradient(135deg, #f0ad4e 0%, #ec971f 100%);
    color: #fff;
    border-color: #fff;
    animation: popIn 0.5s ease;
}

.mr-lingo-letter-box.absent {
    background: linear-gradient(135deg, #4a5d6e 0%, #3a4d5e 100%);
    color: rgba(255, 255, 255, 0.5);
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.mr-lingo-word-row.shake {
    animation: shake 0.5s ease;
}

.mr-lingo-letter-box.reveal {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── SIDEBAR CONTENT ── */
.mr-lingo-game-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.mr-lingo-round-display {
    text-align: center;
    color: #fff;
}

.mr-lingo-round-label,
.mr-lingo-round-text {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 3px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.mr-lingo-round-number {
    display: block;
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1;
}

.mr-lingo-round-number.small-text {
    font-size: 42px;
    letter-spacing: 1px;
}

/* ── SCORE BUBBLE MET RING TIMER ── */
.mr-lingo-score-bubble {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SVG ring zit via JS in de bubble, of we stylen de border */
.mr-lingo-timer-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
    pointer-events: none;
}

.mr-lingo-timer-ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 10;
}

.mr-lingo-timer-ring-progress {
    fill: none;
    stroke: #5cb85c;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 408;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear, stroke 0.5s ease;
}

.mr-lingo-timer-ring-progress.warning {
    stroke: #f0ad4e;
}

.mr-lingo-timer-ring-progress.danger {
    stroke: #d9534f;
    animation: ringPulse 0.5s infinite;
}

@keyframes ringPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Binnenste score cirkel */
.mr-lingo-score-inner {
    width: 124px;
    height: 124px;
    background: linear-gradient(135deg, #4a7ab8 0%, #3d6ca8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 -4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #5b8fc7;
    position: relative;
    z-index: 1;
}

/* Score icon (lampje naast bubble) - verborgen */
.mr-lingo-score-icon {
    display: none;
}

.mr-lingo-score-number {
    font-size: 44px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Timer bar: verbergen - gebruiken ring timer */
.mr-lingo-timer-bar-container {
    display: none;
}

.mr-lingo-timer-bar { display: none; }
.mr-lingo-timer-display { display: none; }

/* Letters display */
.mr-lingo-word-length {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #4a5d6e;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mr-lingo-length-number {
    font-size: 28px;
    color: #4a7ab8;
}

.mr-lingo-check-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mr-lingo-check-btn:hover {
    transform: scale(1.1);
}

.mr-lingo-check-icon {
    font-size: 40px;
    color: #fff;
}

.mr-lingo-info-text {
    font-size: 16px;
    color: #4a5d6e;
    font-weight: 600;
}

.mr-lingo-small-logo-container {
    margin-top: auto;
}

.mr-lingo-small-logo {
    width: 120px;
    height: auto;
    opacity: 0.8;
}

/* ========== LINGO KAART SCHERM ========== */


/* Lingo Kaart Sectie */







/* Getrokken ballen ALTIJD GEEL - ook als blocked! */


/* Klikbare cellen bij vraagteken bal */


@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 20px 10px rgba(255, 215, 0, 0);
    }
}

/* Rode driehoekjes bij Lingo kansen */



@keyframes markCell {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.15); }
}

















/* Drawn History */
.mr-lingo-drawn-history {
    margin: 25px 0;
}

.mr-lingo-drawn-history h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 12px 0;
    text-align: center;
}









.mr-lingo-green-label {
    color: #fff;
    font-weight: bold;
}

.mr-lingo-green-count {
    display: flex;
    gap: 8px;
}



/* Actions */

.mr-lingo-continue-btn,
.mr-lingo-back-btn {
    padding: 18px 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.mr-lingo-continue-btn {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(92, 184, 92, 0.4);
}

.mr-lingo-continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 184, 92, 0.6);
}

.mr-lingo-back-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #4a7ab8;
    border: 3px solid #4a7ab8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mr-lingo-back-btn:hover {
    background: #4a7ab8;
    color: #fff;
    transform: translateY(-3px);
}

/* Overlay */
.mr-lingo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.mr-lingo-overlay-content {
    background: linear-gradient(135deg, #4a7ab8 0%, #3d6ca8 100%);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 6px solid #5b8fc7;
    max-width: 500px;
}

.mr-lingo-overlay-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.mr-lingo-overlay-text {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mr-lingo-overlay-btn {
    background: linear-gradient(135deg, #e85d75 0%, #d94861 100%);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(232, 93, 117, 0.4);
}

.mr-lingo-overlay-btn:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    
    
}

@media (max-width: 900px) {
    .mr-lingo-game-layout {
        flex-direction: column;
    }
    
    .mr-lingo-game-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }
    
    .mr-lingo-difficulty-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .mr-lingo-start-title {
        font-size: 60px;
        letter-spacing: 12px;
    }
    
    .mr-lingo-letter-box {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
    
    .mr-lingo-game-layout {
        flex-direction: column;
        padding: 12px;
    }
    .mr-lingo-game-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
.mr-lingo-round-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mr-lingo-round-popup.show {
    opacity: 1;
}

.mr-lingo-round-popup-content {
    background: linear-gradient(135deg, #5b8fc7 0%, #4a7db5 100%);
    border-radius: 30px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #fff;
}

.mr-lingo-round-title {
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.mr-lingo-round-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mr-lingo-round-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mr-lingo-round-agency {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mr-lingo-round-start-btn {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 40px;
    letter-spacing: 1px;
}

.mr-lingo-round-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Next Word Popup Styles */
.mr-lingo-next-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mr-lingo-next-popup.show {
    opacity: 1;
}

.mr-lingo-next-popup-content {
    background: linear-gradient(135deg, #5b8fc7 0%, #4a7db5 100%);
    border-radius: 30px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #fff;
    max-width: 500px;
}

.mr-lingo-next-round {
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.mr-lingo-next-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.mr-lingo-next-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.mr-lingo-next-score-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 25px 40px;
    margin: 30px 0;
}

.mr-lingo-next-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    letter-spacing: 2px;
}


.mr-lingo-next-hint {
    font-size: 18px;
    color: #ffd700;
    margin: 20px 0;
}

.mr-lingo-next-btn {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 30px;
    letter-spacing: 1px;
}

.mr-lingo-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ============================================
   PROMOTIONAL BANNER
   ============================================ */

.mr-lingo-promo-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(91, 143, 199, 0.95) 0%, rgba(74, 122, 184, 0.95) 100%);
    padding: 15px 30px;
    text-align: center;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: promoBanner 12s ease-in-out infinite;
    opacity: 0;
    margin: 30px 10px 0 10px; /* Top margin voor ruimte onder buttons */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.5s ease-in-out;
}

/* Position: Top - Image boven tekst */
.mr-lingo-promo-banner.mr-lingo-promo-position-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Position: Left - Image links van tekst */
.mr-lingo-promo-banner.mr-lingo-promo-position-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.mr-lingo-promo-banner.mr-lingo-promo-position-left .mr-lingo-promo-text {
    display: inline-block;
    flex: 1;
}

/* Position: Right - Image rechts van tekst */
.mr-lingo-promo-banner.mr-lingo-promo-position-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.mr-lingo-promo-banner.mr-lingo-promo-position-right .mr-lingo-promo-text {
    display: inline-block;
    flex: 1;
}

/* Verberg banner wanneer game/card schermen actief zijn */
.mr-lingo-game-screen:not([style*="display: none"]) ~ .mr-lingo-promo-banner,

.mr-lingo-promo-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease-in-out;
}

.mr-lingo-promo-highlight {
    color: #ffd700;
    font-weight: bold;
    font-size: 17px;
    text-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
}

/* Fade In/Out Animation */
@keyframes promoBanner {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Responsive sizing */
@media (max-width: 768px) {
    .mr-lingo-promo-banner {
        padding: 12px 20px;
    }
    
    .mr-lingo-promo-text {
        font-size: 14px;
    }
    
    .mr-lingo-promo-highlight {
        font-size: 15px;
    }
}

/* ============================================
   WORD RESULT POPUPS (Red/Green)
   ============================================ */

.mr-lingo-result-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mr-lingo-result-popup.show {
    opacity: 1;
}

.mr-lingo-result-content {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    padding: 35px 45px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 380px;
    max-width: 90vw;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.mr-lingo-result-popup.red .mr-lingo-result-content {
    background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
}

.mr-lingo-result-round {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.mr-lingo-result-title {
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.1;
}

.mr-lingo-result-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.mr-lingo-result-score {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 16px 30px;
    margin-bottom: 20px;
}

.mr-lingo-result-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mr-lingo-result-number {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.mr-lingo-result-total {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.mr-lingo-result-btn {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #333;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    width: 100%;
}

.mr-lingo-result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ============================================
   IN-GAME PROMO BANNER (klein onder grid)
   ============================================ */

.mr-lingo-game-promo {
    margin-top: 15px;
    background: linear-gradient(135deg, rgba(91, 143, 199, 0.9) 0%, rgba(74, 122, 184, 0.9) 100%);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: gamePromoPulse 12s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}

.mr-lingo-game-promo-text {
    color: #fff;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: opacity 0.5s ease-in-out;
}

@keyframes gamePromoPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .mr-lingo-game-promo {
        padding: 8px 12px;
    }
    
    .mr-lingo-game-promo-text {
        font-size: 11px;
    }
}

/* HINT LAMPJE */
.mr-lingo-hint-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 4px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
    transition: all 0.3s;
}
.mr-lingo-hint-btn:hover:not(.disabled) { transform: scale(1.1); }
.mr-lingo-hint-btn.disabled { opacity: 0.4; cursor: not-allowed; background: linear-gradient(135deg, #999, #666); }
.mr-lingo-hint-icon { font-size: 32px; }
.mr-lingo-hint-counter { font-size: 18px; font-weight: bold; color: #fff; }
.mr-lingo-hint-btn.has-hints { animation: hintPulse 2s infinite; }
@keyframes hintPulse { 0%, 100% { box-shadow: 0 4px 15px rgba(255,215,0,0.4); } 50% { box-shadow: 0 6px 25px rgba(255,215,0,0.8); } }

/* HIDE CARD */
.mr-lingo-overlay-btn {
    margin-top: 20px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mr-lingo-overlay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(102,126,234,0.5);
}
