@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&display=swap');

:root {
    --bg-primary: #0b0f19;
    --bg-gradient: linear-gradient(135deg, #0b0f19 0%, #1a1a2e 100%);
    --accent: #e94560;
    --accent-hover: #ff4766;
    --accent-glow: rgba(233, 69, 96, 0.4);
    --text-main: #ffffff;
    --text-muted: #a2a2bd;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f1c40f;
    --info: #3498db;
}

/* =========================================
   ALGEMENE STYLING
   ========================================= */
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    background-image: radial-gradient(circle at 50% 0%, #16213e 0%, transparent 50%), var(--bg-gradient);
    color: var(--text-main);
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 900;
    text-shadow: 0 0 20px var(--accent-glow);
    letter-spacing: 1px;
}

p {
    font-size: 1.2em;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Algemene Knoppen */
button, .action-btn {
    background: linear-gradient(45deg, var(--accent), var(--accent-hover));
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover, .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1em;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
}

/* Glassmorphism Containers */
.glass-panel, .setup-container, #dilemma-container, #koffer-game-container, #kamelen-setup, #mijnenveld-setup, .mode-btn, .deck-area {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
}

/* =========================================
   STARTPAGINA (index.html)
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
}

.game-card:hover::before {
    left: 200%;
}

.game-icon {
    font-size: 4.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.game-card:hover .game-icon {
    transform: scale(1.1) rotate(5deg);
}

.game-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.game-desc {
    font-size: 1em;
    color: var(--text-muted);
    font-weight: 300;
}

/* =========================================
   HAMERTJE TIK (hamertje-tik.html)
   ========================================= */
.game-header { margin-top: 40px; }
.game-area {
    position: relative;
    width: 300px; height: 400px;
    margin: 40px auto;
    display: flex; justify-content: center; align-items: flex-end;
}
.wood {
    position: absolute; bottom: 0; width: 100%; height: 120px;
    background: linear-gradient(to bottom, #8b5a2b, #5c3a1b);
    border-top: 5px solid #a06b38; border-radius: 5px; z-index: 3;
    box-shadow: inset 0 20px 20px rgba(0,0,0,0.2);
}
.nail {
    position: absolute; bottom: 120px; width: 20px; height: 150px;
    background: linear-gradient(to right, #95a5a6, #bdc3c7, #7f8c8d);
    border-radius: 2px 2px 0 0; z-index: 2; transition: transform 0.1s ease-out;
}
.nail::before {
    content: ''; position: absolute; top: 0; left: -10px; width: 40px; height: 8px;
    background: linear-gradient(to bottom, #bdc3c7, #7f8c8d); border-radius: 2px;
}
.hammer {
    position: absolute; bottom: 280px; left: 50%; font-size: 80px;
    margin-left: -10px; transform-origin: bottom right; z-index: 4;
}
@keyframes hit {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(-45deg); }
    100% { transform: rotate(0deg); }
}
.controls { z-index: 10; padding-bottom: 40px; }
#reset-btn { display: none; background: #34495e; box-shadow: none; }
#reset-btn:hover { background: #2c3e50; }
#status-text { font-size: 1.4em; margin-top: 20px; height: 60px; color: var(--text-main); font-weight: 700; }

/* =========================================
   BIER-BOM (bier-bom.html)
   ========================================= */
.setup-container { max-width: 450px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.setup-group { display: flex; justify-content: space-between; align-items: center; }
.setup-group label { font-size: 1.1em; font-weight: 700; }
.setup-group input {
    width: 70px; padding: 10px; border-radius: 8px; border: 1px solid var(--glass-border);
    text-align: center; font-size: 1.1em; background: rgba(0,0,0,0.3); color: white;
    font-family: 'Outfit', sans-serif;
}
#game-container { display: none; flex-direction: column; align-items: center; }
#beer-grid {
    display: grid; gap: 12px; background: linear-gradient(to bottom, #8b5a2b, #6b4423);
    padding: 20px; border-radius: 12px; border: 5px solid #4a2e16; margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,0,0,0.5);
}
.bottle-cap {
    width: 65px; height: 65px; background: radial-gradient(circle at 30% 30%, #f1c40f, #d4ac0d);
    border-radius: 50%; border: 3px solid #b7950b; cursor: pointer;
    box-shadow: 0 6px 10px rgba(0,0,0,0.4), inset 0 -4px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5em; font-weight: 900; color: #876904; text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
.bottle-cap:hover { transform: scale(1.15) rotate(5deg); }
.bottle-cap.opened {
    background: #1a252f; border-color: #0d131a; box-shadow: inset 0 6px 10px rgba(0,0,0,0.6);
    cursor: default; transform: none; color: white; font-size: 0.9em; text-align: center;
    padding: 5px; word-wrap: break-word; line-height: 1.2; text-shadow: none;
}
.opened.bom { background: linear-gradient(135deg, #c0392b, #922b21); border-color: #7b241c; font-size: 2em; box-shadow: 0 0 20px rgba(231,76,60,0.5); }
.opened.rotje { background: linear-gradient(135deg, #e67e22, #af601a); border-color: #935116; font-size: 1.5em; }

/* =========================================
   KRATTEN-TOREN (kratten-toren.html)
   ========================================= */
.kratten-container { display: flex; flex-direction: column; align-items: center; width: 100%; }
#score-display { font-size: 2.5em; font-weight: 900; color: var(--accent); margin-bottom: 15px; text-shadow: 0 0 15px var(--accent-glow); }
#game-board {
    position: relative; width: 320px; height: 500px;
    background: linear-gradient(to bottom, #1a1a2e, #0f3460);
    border: 2px solid var(--glass-border); border-radius: 16px; overflow: hidden; cursor: pointer;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.7), var(--glass-shadow); margin-bottom: 20px;
}
.crate {
    position: absolute; width: 80px; height: 40px; background: linear-gradient(to bottom, #f39c12, #d35400);
    border: 2px solid #a04000; border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5em; box-sizing: border-box; box-shadow: inset 0 0 10px rgba(0,0,0,0.3), 0 4px 6px rgba(0,0,0,0.4);
    transition: transform 0.1s linear;
}
#moving-crate { top: 20px; left: 0; z-index: 10; }
#tower-area { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; transform-origin: bottom center; transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.tower-crate { bottom: 0; }

/* =========================================
   REACTIE-ADJE (reactie-adje.html)
   ========================================= */
#mode-selector { display: flex; flex-direction: column; gap: 20px; max-width: 450px; margin: 0 auto; }
.mode-btn {
    display: flex; flex-direction: column; align-items: center; border: 1px solid var(--glass-border);
    cursor: pointer; transition: all 0.3s ease; color: white;
}
.mode-btn:hover:not(.disabled) { background: rgba(233, 69, 96, 0.2); border-color: var(--accent); transform: translateY(-3px); }
.mode-btn.disabled { opacity: 0.5; cursor: not-allowed; }
.mode-title { font-size: 1.6em; font-weight: 700; margin-bottom: 8px; }
.mode-desc { font-size: 1em; color: var(--text-muted); }
#reaction-game-area { display: none; flex-direction: column; align-items: center; width: 100%; max-width: 600px; margin: 0 auto; }
#mindfuck-display {
    width: 100%; height: 180px; background: var(--glass-bg); border-radius: 16px; display: flex; justify-content: center; align-items: center;
    font-size: 3.5em; font-weight: 900; text-transform: uppercase; margin-bottom: 25px; border: 2px solid var(--glass-border);
    transition: background-color 0.1s, transform 0.1s; box-shadow: var(--glass-shadow);
}
#split-screen { display: none; width: 100%; height: 300px; gap: 15px; }
.player-half {
    flex: 1; border-radius: 16px; display: flex; justify-content: center; align-items: center;
    font-size: 2em; font-weight: 900; cursor: pointer; user-select: none; transition: transform 0.1s, filter 0.1s;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3), 0 10px 20px rgba(0,0,0,0.3); text-transform: uppercase; letter-spacing: 2px;
}
.player-half:active { transform: scale(0.95); filter: brightness(1.2); }
#player1-btn { background: linear-gradient(135deg, #e74c3c, #c0392b); border: 2px solid #922b21; }
#player2-btn { background: linear-gradient(135deg, #3498db, #2980b9); border: 2px solid #1f618d; }
#party-controls { display: none; flex-direction: column; align-items: center; width: 100%; }

/* =========================================
   DISPUUTS-DILEMMA'S (dilemmas.html)
   ========================================= */
#dilemma-container { max-width: 650px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.dilemma-text { font-size: 1.6em; font-weight: 900; color: var(--accent); margin-bottom: 15px; line-height: 1.4; }
.dilemma-option {
    background: rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; cursor: pointer; transition: all 0.3s ease;
    font-size: 1.2em; border: 1px solid var(--glass-border); font-weight: 700;
}
.dilemma-option:hover { background: rgba(255,255,255,0.1); border-color: var(--accent); transform: translateX(5px); }
.dilemma-option.selected { background: var(--success); color: #fff; border-color: #27ae60; transform: scale(1.02); box-shadow: 0 0 20px rgba(46, 204, 113, 0.4); }
.dilemma-option.wrong { background: var(--danger); color: white; border-color: #c0392b; opacity: 0.8; }
#pass-screen, #result-screen, #group-screen { display: none; flex-direction: column; align-items: center; }

/* =========================================
   DE KOFFER-BLUF (koffer-bluf.html)
   ========================================= */
#koffer-game-container { max-width: 650px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 25px; }
.koffer-visual-container { display: flex; justify-content: center; gap: 40px; margin: 30px 0; }
.koffer {
    width: 140px; height: 110px; background: linear-gradient(to bottom, #a0522d, #8b4513); border: 4px solid #5c3a21;
    border-radius: 12px; position: relative; display: flex; justify-content: center; align-items: center;
    font-size: 3.5em; color: #f1c40f; box-shadow: 0 15px 25px rgba(0,0,0,0.5); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.koffer::before {
    content: ''; position: absolute; top: -18px; width: 50px; height: 12px; border: 4px solid #5c3a21;
    border-bottom: none; border-radius: 10px 10px 0 0; background: transparent;
}
.koffer:hover { transform: translateY(-10px); }
.koffer.opened { background: #2c3e50; border-color: #1a252f; font-size: 1.4em; color: white; text-align: center; padding: 10px; font-weight: 700; transform: none; box-shadow: inset 0 10px 20px rgba(0,0,0,0.5); }
.koffer-label { font-weight: 900; margin-top: 15px; color: var(--text-muted); font-size: 1.2em; text-transform: uppercase; letter-spacing: 2px; }
.action-btn { width: 100%; margin-top: 10px; }
.swap-btn { background: linear-gradient(45deg, #e74c3c, #c0392b); box-shadow: 0 4px 15px rgba(231,76,60,0.4); }
.swap-btn:hover { box-shadow: 0 6px 20px rgba(231,76,60,0.6); }
.keep-btn { background: linear-gradient(45deg, #2ecc71, #27ae60); box-shadow: 0 4px 15px rgba(46,204,113,0.4); }
.keep-btn:hover { box-shadow: 0 6px 20px rgba(46,204,113,0.6); }
.koffer-screen { display: none; flex-direction: column; align-items: center; width: 100%; }

/* =========================================
   KAMELENRACE (kamelenrace.html)
   ========================================= */
#kamelen-setup { max-width: 450px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
#kamelen-game { display: none; flex-direction: column; align-items: center; width: 100%; max-width: 900px; margin: 0 auto; }
.race-track-container {
    width: 100%; background: rgba(0,0,0,0.2); border-radius: 16px; padding: 25px 15px; position: relative;
    border: 1px solid var(--glass-border); margin-bottom: 25px; box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}
.track-lane { position: relative; height: 70px; margin-bottom: 15px; border-bottom: 2px dashed rgba(255,255,255,0.1); }
.track-lane:last-child { border-bottom: none; margin-bottom: 0; }
.playing-card {
    width: 50px; height: 70px; background: white; border-radius: 8px; display: flex; justify-content: center; align-items: center;
    font-size: 2em; font-weight: 900; box-shadow: 0 6px 12px rgba(0,0,0,0.4); position: absolute; top: -5px;
    transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1); user-select: none;
}
.card-red { color: #e74c3c; } .card-black { color: #2c3e50; }
.card-back { background: repeating-linear-gradient(45deg, #2c3e50, #2c3e50 5px, #34495e 5px, #34495e 10px); border: 2px solid #ecf0f1; color: transparent; }
#hurdle-lane { height: 80px; border-bottom: 4px solid var(--accent); margin-bottom: 25px; box-shadow: 0 4px 0 rgba(233, 69, 96, 0.2); }
.deck-area { display: flex; gap: 40px; align-items: center; margin-top: 20px; }
#drawn-card-display { width: 70px; height: 100px; font-size: 3em; position: static; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

/* =========================================
   MIJNENVELD (mijnenveld.html)
   ========================================= */
#mijnenveld-setup { max-width: 550px; margin: 0 auto; display: flex; flex-direction: column; gap: 25px; }
.setup-section { background: rgba(0,0,0,0.2); padding: 20px; border-radius: 12px; border: 1px solid var(--glass-border); text-align: left; }
.setup-section h3 { margin-top: 0; color: var(--accent); font-size: 1.3em; font-weight: 700; }
.radio-group { display: flex; flex-direction: column; gap: 12px; margin-top: 15px; }
.radio-group label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 1.1em; }
.radio-group input[type="radio"] { margin-top: 5px; accent-color: var(--accent); transform: scale(1.2); }
.desc-text { font-size: 0.9em; color: var(--text-muted); display: block; margin-top: 6px; font-weight: 300; }
#mijnenveld-game { display: none; flex-direction: column; align-items: center; width: 100%; max-width: 900px; margin: 0 auto; }
#minefield-board {
    display: flex; gap: 20px; justify-content: center; align-items: center; margin: 30px 0; padding: 30px;
    background: rgba(0,0,0,0.2); border-radius: 16px; border: 1px solid var(--glass-border); overflow-x: auto;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}
.mine-col { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.mine-card {
    width: 65px; height: 95px; background: repeating-linear-gradient(45deg, #2c3e50, #2c3e50 5px, #34495e 5px, #34495e 10px);
    border: 2px solid #ecf0f1; border-radius: 8px; display: flex; justify-content: center; align-items: center;
    font-size: 2em; font-weight: 900; color: transparent; cursor: pointer; box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); user-select: none; position: relative;
}
.mine-card:hover { transform: translateY(-6px) scale(1.05); box-shadow: 0 12px 20px rgba(0,0,0,0.5); border-color: var(--accent); }
.mine-card.open { background: white; background-image: none; border-color: #bdc3c7; cursor: default; color: #2c3e50; }
.mine-card.open.card-red { color: #e74c3c; }
.mine-card.open.card-black { color: #2c3e50; }
.mine-card.open:hover { transform: none; box-shadow: 0 6px 12px rgba(0,0,0,0.4); }
.mine-card.active-col { box-shadow: 0 0 20px rgba(46, 204, 113, 0.6); border-color: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); } }
.mine-card.empty { background: transparent; border: 2px dashed rgba(255,255,255,0.2); box-shadow: none; cursor: default; }
.mine-card.empty:hover { transform: none; border-color: rgba(255,255,255,0.2); }
.card-bomb { color: #c0392b; font-size: 2.5em; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.game-info-bar {
    display: flex; justify-content: space-around; width: 100%; background: var(--glass-bg); padding: 20px;
    border-radius: 12px; margin-bottom: 25px; font-size: 1.1em; border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow);
}
.info-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.info-label { font-size: 0.85em; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.info-value { font-weight: 900; font-size: 1.5em; color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }

/* =========================================
   TACTIEKBORD (opstelling.html)
   ========================================= */
#tactiek-container { display: flex; flex-direction: row; gap: 25px; max-width: 1000px; margin: 20px auto; align-items: flex-start; }
#pitch {
    flex: 3; background: #27ae60; border: 4px solid #ecf0f1; border-radius: 12px; position: relative; padding: 30px 0;
    display: flex; flex-direction: column; justify-content: space-between; min-height: 650px;
    background-image: linear-gradient(rgba(255,255,255,0.4) 2px, transparent 2px), radial-gradient(circle, transparent 50px, rgba(255,255,255,0.4) 52px, rgba(255,255,255,0.4) 54px, transparent 56px);
    background-size: 100% 50%, 100% 100%; background-position: center center, center center; background-repeat: no-repeat;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.4);
}
.pitch-row { display: flex; justify-content: space-around; align-items: center; width: 100%; }
.player-spot { display: flex; flex-direction: column; align-items: center; width: 22%; cursor: pointer; transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.player-spot:hover { transform: scale(1.15); z-index: 10; }
.player-shirt {
    width: 45px; height: 45px; background: linear-gradient(135deg, var(--accent), #c0392b); border: 2px solid white;
    border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-weight: 900;
    box-shadow: 0 6px 10px rgba(0,0,0,0.4); margin-bottom: 8px; font-size: 1.1em;
}
.player-name { background: rgba(0,0,0,0.8); color: white; padding: 5px 10px; border-radius: 6px; font-size: 0.85em; font-weight: 700; text-align: center; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
#bench {
    flex: 1; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px;
    padding: 20px; display: flex; flex-direction: column; gap: 12px; min-width: 220px; box-shadow: var(--glass-shadow);
}
.bench-title { color: var(--accent); margin-top: 0; border-bottom: 2px solid var(--glass-border); padding-bottom: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.sub-item { background: rgba(0,0,0,0.3); padding: 12px; border-radius: 6px; color: var(--text-main); font-weight: 700; font-size: 0.95em; border-left: 4px solid var(--info); cursor: pointer; transition: all 0.2s; }
.sub-item:hover { background: rgba(0,0,0,0.5); transform: translateX(5px); }
.tactiek-selector { text-align: center; margin-bottom: 25px; }
.tactiek-selector select { padding: 12px 20px; font-size: 1.1em; border-radius: 8px; background: rgba(0,0,0,0.5); color: white; border: 2px solid var(--info); outline: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-weight: 700; transition: border-color 0.3s; }
.tactiek-selector select:focus { border-color: var(--accent); }
.selected .player-shirt { box-shadow: 0 0 20px var(--warning); border-color: var(--warning); transform: scale(1.1); }
.sub-item.selected { box-shadow: 0 0 15px rgba(241, 196, 15, 0.4); border-color: var(--warning); background: rgba(241, 196, 15, 0.1); }
.captain-icon { font-size: 1.2em; margin-left: 4px; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5)); }
#trainer-box { border-left-color: var(--warning); margin-bottom: 25px; }

/* =========================================
   📱 MOBIELE WEERGAVE (RESPONSIVE)
   ========================================= */
@media (max-width: 768px) {
    #tactiek-container { flex-direction: column; align-items: stretch; padding: 0; }
    #pitch { width: 100%; box-sizing: border-box; min-height: 500px; }
    #bench { width: 100%; box-sizing: border-box; }
    .player-shirt { width: 35px; height: 35px; font-size: 0.9em; }
    .player-name { font-size: 0.75em; padding: 3px 6px; }
}

@media (max-width: 600px) {
    .container { padding: 20px 10px; }
    h1 { font-size: 2em; }
    
    #dilemma-container { padding: 20px; gap: 15px; }
    .dilemma-text { font-size: 1.3em; }
    .dilemma-option { padding: 15px; font-size: 1.1em; }

    .race-track-container { padding: 15px 10px; }
    .track-lane { height: 50px; }
    #hurdle-lane { height: 60px; }
    .playing-card { width: 38px; height: 55px; font-size: 1.4em; border-radius: 6px; }
    .deck-area { flex-direction: column; gap: 15px; padding: 20px; width: 100%; box-sizing: border-box; }

    #minefield-board { gap: 8px; padding: 15px; }
    .mine-col { gap: 8px; }
    .mine-card { width: 42px; height: 60px; font-size: 1.2em; border-radius: 6px; }
    .game-info-bar { padding: 15px; font-size: 0.9em; flex-wrap: wrap; gap: 10px; }
    
    .glass-panel, .setup-container, #dilemma-container, #koffer-game-container, #kamelen-setup, #mijnenveld-setup { padding: 20px; }
}

@media (max-height: 600px) and (orientation: landscape) {
    h1 { font-size: 1.5em; margin: 5px 0; }
    p { margin-bottom: 15px; }
    .game-header { padding: 5px; margin-bottom: 5px; margin-top: 10px; }
    #game-subtitle { display: none; }
    
    .race-track-container { padding: 10px; margin-bottom: 10px; }
    .track-lane { height: 40px; margin-bottom: 8px; }
    #hurdle-lane { height: 50px; margin-bottom: 15px; }
    .playing-card { width: 35px; height: 50px; font-size: 1.2em; }
    .deck-area { margin-top: 10px; padding: 15px; flex-direction: row; justify-content: center; gap: 25px; }

    .game-info-bar { padding: 10px; margin-bottom: 10px; }
    .info-value { font-size: 1.2em; }
    #status-text { margin: 10px 0; font-size: 1.2em; height: auto; }
    #minefield-board { margin: 10px 0; padding: 15px; gap: 15px; }
    .mine-col { gap: 6px; }
    .mine-card { width: 50px; height: 65px; font-size: 1.3em; }
}