/* --- GLOBAL STYLES & WALLPAPER --- */
body {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.95)), url('images/wallpaper.jpg') center/cover fixed;
    background-color: #2c3e50; 
    color: white; font-family: 'Arial', sans-serif;
    text-align: center; margin: 0; padding: 20px; min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    touch-action: manipulation; 
    user-select: none; 
}

h1 {
    color: #f39c12; text-shadow: 3px 3px #d35400; font-size: 3.5em; margin-bottom: 10px;
    text-transform: uppercase; font-family: 'Bangers', cursive; letter-spacing: 2px;
}
p { font-size: 1.2em; margin-bottom: 30px; color: #bdc3c7; }

/* --- CHARACTER SELECT (HOME) --- */
.character-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.character-card {
    background: linear-gradient(145deg, #f39c12, #e67e22); border: 5px solid #2980b9; 
    border-radius: 15px; padding: 20px; width: 250px; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 8px 15px rgba(0,0,0,0.6);
    display: flex; flex-direction: column; align-items: center; position: relative;
}
.character-card:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 15px 30px rgba(243, 156, 18, 0.8); border-color: #3498db; }
.character-name { font-size: 2.5em; margin-bottom: 5px; text-shadow: 2px 2px rgba(0,0,0,0.3); font-family: 'Bangers', cursive; letter-spacing: 2px; }
.character-level { background-color: rgba(0,0,0,0.4); padding: 5px 10px; border-radius: 8px; font-size: 0.9em; font-weight: bold; margin-bottom: 10px;}

/* Delete User Button */
.delete-user-btn { position: absolute; top: 10px; right: 10px; background: rgba(231, 76, 60, 0.9); border-radius: 50%; padding: 8px; cursor: pointer; font-size: 1.2em; z-index: 10; box-shadow: 0 3px 5px rgba(0,0,0,0.5); transition: 0.2s;}
.delete-user-btn:hover { background: #c0392b; transform: scale(1.1); }

.char-img { height: 110px; width: 110px; object-fit: cover; border-radius: 50%; border: 4px solid #fff; background-color: #34495e; box-shadow: 0 5px 15px rgba(0,0,0,0.5); margin-bottom: 10px; }
.evolved-glow { border-color: #f1c40f !important; box-shadow: 0 0 20px #f1c40f, inset 0 0 10px #f1c40f !important; animation: pulse-gold 2s infinite; }
@keyframes pulse-gold { 0%, 100% { box-shadow: 0 0 10px #f1c40f; } 50% { box-shadow: 0 0 25px #f1c40f; } }

.player-stats { margin-top: 10px; font-size: 0.9em; text-align: left; background: rgba(0,0,0,0.4); padding: 10px; border-radius: 8px; line-height: 1.4; width: 90%; border: 1px solid rgba(255,255,255,0.1);}
.support-slot { background: #34495e; border: 2px dashed #f1c40f; border-radius: 8px; padding: 5px; margin-top: 10px; text-align: center; color: #f1c40f; font-weight: bold; font-size: 0.8em; }

/* --- HOME MENU BUTTONS --- */
.home-controls { display: flex; gap: 15px; margin-top: 30px; flex-wrap: wrap; justify-content: center;}
.control-btn { background: #8e44ad; color: white; border: none; padding: 15px 30px; border-radius: 10px; cursor: pointer; font-size: 1.5em; font-family: 'Bangers', cursive; letter-spacing: 2px; transition: 0.2s; box-shadow: 0 5px 0 #732d91; text-transform: uppercase;}
.control-btn:hover { background: #9b59b6; transform: translateY(2px); box-shadow: 0 3px 0 #732d91; }
.boss-btn { background: #c0392b; box-shadow: 0 5px 0 #922b21; }
.boss-btn:hover { background: #e74c3c; box-shadow: 0 3px 0 #922b21; }
.arcade-btn { background: #27ae60; box-shadow: 0 5px 0 #1e8449; }
.arcade-btn:hover { background: #2ecc71; box-shadow: 0 3px 0 #1e8449; }
.pvp-btn { background: #8e44ad; box-shadow: 0 5px 0 #4a235a; }
.pvp-btn:hover { background: #9b59b6; box-shadow: 0 3px 0 #4a235a; }

/* --- SCREENS --- */
#subject-screen, #training-room, #collection-screen, #boss-select-screen, #boss-room, #arcade-select-screen, #arcade-whack-screen, #arcade-memory-screen, #arcade-flappy-screen, #admin-screen, #pending-approval-screen, #leaderboard-screen, #pvp-setup-screen, #pvp-battle-screen { display: none; width: 100%; max-width: 900px; margin: 0 auto; }
#arcade-target-screen, #arcade-drop-screen, #arcade-mathdash-screen, #arcade-gravity-screen { display: none; width: 100%; max-width: 900px; margin: 0 auto; }

.subject-card { background: linear-gradient(145deg, #27ae60, #2ecc71); border: 5px solid #145a32; border-radius: 15px; padding: 30px 20px; width: 220px; cursor: pointer; transition: 0.2s; box-shadow: 0 8px 15px rgba(0,0,0,0.6); display: flex; flex-direction: column; align-items: center;}
.subject-card.english-card { background: linear-gradient(145deg, #8e44ad, #9b59b6); border-color: #4a235a; }
.subject-card:hover { transform: translateY(-10px) scale(1.05); }
.card-icon { font-size: 4.5em; margin-bottom: 10px; filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4)); }

/* --- TRAINING ROOM --- */
#training-room, #boss-room { background-color: rgba(52, 73, 94, 0.95); padding: 30px; border-radius: 20px; border: 5px solid #f39c12; box-shadow: 0 10px 30px rgba(0,0,0,0.8); backdrop-filter: blur(5px);}
#training-room.super-saiyan { border-color: #f1c40f; background-color: rgba(44, 62, 80, 0.95); box-shadow: 0 0 40px #f1c40f, inset 0 0 20px #f1c40f; animation: gentle-shake 0.5s infinite alternate; }
@keyframes gentle-shake { 0% { transform: translateY(0px); } 100% { transform: translateY(-3px); } }

.header-stats { display: flex; justify-content: space-between; margin-bottom: 20px; background: rgba(0,0,0,0.5); padding: 10px 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);}
.stat-box { font-size: 1.2em; font-weight: bold; color: #e74c3c; text-transform: uppercase; }
.stat-box span { color: #fff; font-size: 1.3em; }
.streak-box { color: #f1c40f; }

.math-question { font-size: 3.5em; font-weight: bold; margin: 20px 0; letter-spacing: 3px; }
.hint-display { font-size: 1.2em; color: #f1c40f; margin-bottom: 20px; font-style: italic; min-height: 25px; }

input { font-size: 2em; padding: 10px; width: 200px; text-align: center; border-radius: 10px; border: 3px solid #bdc3c7; margin-bottom: 20px; background: #ecf0f1; color: #2c3e50; outline: none; user-select: auto;}
input:focus { border-color: #f39c12; }

.action-btn { background-color: #e67e22; color: white; font-size: 1.5em; padding: 15px 30px; border: none; border-radius: 10px; cursor: pointer; font-weight: bold; text-transform: uppercase; box-shadow: 0 5px 0 #d35400; transition: 0.2s; width: 100%;}
.action-btn:hover { background: #f39c12; }
.action-btn:active { transform: translateY(5px); box-shadow: 0 0 0 #d35400; }
.back-btn { background-color: rgba(0,0,0,0.5); color: #bdc3c7; border: 2px solid #bdc3c7; padding: 10px; margin-top: 15px; border-radius: 8px; cursor: pointer; font-size: 1em; width: 100%;}
.back-btn:hover { background-color: #bdc3c7; color: #2c3e50; }
.feedback { font-size: 1.3em; margin-top: 20px; font-weight: bold; min-height: 30px; }
.ssj-message { color: #f1c40f; font-size: 1.5em; text-transform: uppercase; text-shadow: 2px 2px #d35400; display: none; margin-top: 10px; }
#training-room.super-saiyan .ssj-message { display: block; }

/* --- DRAGON BALL TRACKER --- */
.db-tracker { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; min-height: 45px; }
.dragon-ball { width: 40px; height: 40px; background: radial-gradient(circle at 30% 30%, #f1c40f, #e67e22, #d35400); border-radius: 50%; border: 2px solid #a04000; display: flex; align-items: center; justify-content: center; color: #c0392b; font-size: 1.5em; box-shadow: inset -3px -3px 8px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.6); opacity: 0.2; transition: all 0.5s ease; }
.dragon-ball.collected { opacity: 1; transform: scale(1.1) rotate(360deg); animation: pulse-ball 2s infinite; }

/* --- MODALS --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 1000; flex-direction: column; justify-content: flex-start; align-items: center; color: white; text-align: center; overflow-y: auto; padding: 20px; box-sizing: border-box; }
.shenron-video { width: 100%; max-width: 500px; max-height: 30vh; object-fit: cover; border-radius: 15px; margin-bottom: 10px; box-shadow: 0 0 30px #2ecc71; border: 4px solid #2ecc71; background: #000; }
.modal-overlay h1 { font-size: 4.5em; text-shadow: 0 0 20px #f1c40f; margin-bottom: 10px; font-family: 'Bangers', cursive; letter-spacing: 3px;}
.reward-img { height: 150px; border-radius: 50%; border: 5px solid #2ecc71; margin: 15px 0; box-shadow: 0 0 30px rgba(46, 204, 113, 0.6); object-fit: cover; width: 150px; background: #2c3e50;}
.unlocked-char { font-size: 3.5em; color: #2ecc71; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 5px; text-shadow: 0 0 20px rgba(46, 204, 113, 0.5); font-family: 'Bangers', cursive;}
.modal-btn { padding: 15px 40px; font-size: 1.5em; background: #e67e22; border: none; border-radius: 10px; color: white; cursor: pointer; text-transform: uppercase; font-weight: bold; margin-top: 15px; width: 100%; box-sizing: border-box;}
.modal-btn:hover { background: #f39c12; }

.detail-box { background: rgba(44, 62, 80, 0.95); border: 5px solid #3498db; padding: 30px; border-radius: 15px; max-width: 400px; width: 100%; max-height: 90vh; overflow-y: auto; backdrop-filter: blur(10px); margin: auto; box-sizing: border-box;}
.rarity-badge { display: inline-block; padding: 5px 15px; border-radius: 20px; font-weight: bold; text-transform: uppercase; margin-bottom: 15px; font-size: 0.9em; border: 2px solid rgba(255,255,255,0.3);}
.r-common { background: #7f8c8d; } .r-rare { background: #2980b9; } .r-epic { background: #8e44ad; } .r-legendary { background: #f39c12; color: #2c3e50; }
.detail-stats { text-align: left; background: rgba(0,0,0,0.5); padding: 15px; border-radius: 10px; margin-bottom: 20px; line-height: 1.6;}
.detail-stats span { color: #f1c40f; font-weight: bold; }
.btn-disabled { background: #7f8c8d !important; cursor: not-allowed; box-shadow: none !important; }

/* Guide Modal Text Formatting */
.guide-content { text-align: left; font-size: 1.1em; line-height: 1.5; color: #bdc3c7; }
.guide-content h3 { color: #f39c12; font-family: 'Bangers', cursive; font-size: 1.8em; letter-spacing: 1px; margin-bottom: 5px; border-bottom: 2px solid #f39c12; padding-bottom: 5px; margin-top: 15px;}
.guide-content ul { padding-left: 20px; margin-top: 5px;}
.guide-content li { margin-bottom: 8px; }

/* --- COLLECTION & TEAM SELECT GRID --- */
.collection-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 20px; }
.collection-item { background: rgba(52, 73, 94, 0.9); border: 3px solid #2c3e50; border-radius: 10px; padding: 10px; width: 100px; text-align: center; position: relative; cursor: pointer; transition: 0.2s;}
.collection-item:hover { transform: scale(1.05); border-color: #f39c12; z-index: 10; }
.border-Common { border-color: #7f8c8d; } .border-Rare { border-color: #2980b9; } .border-Epic { border-color: #8e44ad; } .border-Legendary { border-color: #f1c40f; }
.collection-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; background: #2c3e50; margin-bottom: 5px; }
.locked-char img { filter: brightness(0.4); } 
.lock-icon { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); font-size: 2.5em; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.owned-badge { position: absolute; top: -10px; right: -10px; background: #2ecc71; color: white; font-size: 1.2em; padding: 3px; border-radius: 50%; border: 3px solid #2c3e50; box-shadow: 0 2px 5px rgba(0,0,0,0.5); width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; }
.locked-char .char-label { color: #bdc3c7; }
.char-label { font-size: 1em; color: #fff; font-family: 'Bangers', cursive; letter-spacing: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.view-collection-btn { background: #8e44ad; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; margin-top: 10px; font-weight: bold; width: 100%; transition: 0.2s; text-transform: uppercase;}
.view-collection-btn:hover { background: #9b59b6; }

/* --- BOSS BATTLE --- */
#boss-room { border-color: #c0392b; max-width: 600px;}
.boss-img { height: 180px; filter: drop-shadow(0 0 20px #e74c3c); animation: float 3s infinite alternate; margin-bottom: 10px;}
@keyframes float { 0% { transform: translateY(0px); } 100% { transform: translateY(-15px); } }
.shake-hit { animation: boss-shake 0.3s !important; filter: drop-shadow(0 0 30px #fff) brightness(1.5) !important;}
@keyframes boss-shake { 0% { transform: translate(10px, 10px); } 25% { transform: translate(-10px, -10px); } 50% { transform: translate(10px, -10px); } 75% { transform: translate(-10px, 10px); } 100% { transform: translate(0, 0); } }

.hp-bar-container { width: 100%; background: rgba(0,0,0,0.5); height: 30px; border-radius: 15px; border: 3px solid #000; overflow: hidden; margin-bottom: 20px; position: relative;}
.hp-bar-fill { height: 100%; background: linear-gradient(90deg, #c0392b, #e74c3c); width: 100%; transition: width 0.3s ease; }
.hp-text { position: absolute; top: 3px; left: 0; width: 100%; text-align: center; font-weight: bold; font-size: 1.1em; text-shadow: 1px 1px 2px #000;}

.team-hud { display: flex; justify-content: center; gap: 15px; margin-top: 20px; padding-top: 20px; border-top: 2px solid rgba(255,255,255,0.2);}
.team-member { width: 60px; height: 60px; border-radius: 50%; border: 3px solid #3498db; object-fit: cover; }
.team-select-slot { width: 80px; height: 80px; border-radius: 50%; border: 3px dashed #bdc3c7; margin: 0 10px; display: inline-flex; justify-content: center; align-items: center; background: rgba(0,0,0,0.5); color: #bdc3c7; font-size: 2em; overflow: hidden;}
.team-select-slot img { width: 100%; height: 100%; object-fit: cover; }
.slot-selected { border-style: solid; border-color: #f1c40f; }

/* --- PVP ARENA STYLES --- */
#pvp-battlefield { position: relative; width: 100%; height: 280px; background: url('images/wallpaper.jpg') center/cover; border: 5px solid #8e44ad; border-radius: 15px; overflow: hidden; margin-bottom: 20px; box-shadow: inset 0 0 20px #000;}
.pvp-base { position: absolute; top: 0; bottom: 0; width: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(0,0,0,0.7); z-index: 10;}
.pvp-base-left { left: 0; border-right: 4px solid #3498db; }
.pvp-base-right { right: 0; border-left: 4px solid #e74c3c; }
.pvp-base-hp-container { width: 80%; height: 100px; background: #2c3e50; border-radius: 5px; border: 2px solid #fff; overflow: hidden; position: relative; margin-top: 10px;}
.pvp-base-hp-fill { position: absolute; bottom: 0; width: 100%; background: #2ecc71; transition: height 0.2s;}
.pvp-base-avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; background: #2c3e50; margin-top: 10px;}

.pvp-troop { position: absolute; width: 50px; height: 50px; transition: left 0.05s linear; z-index: 5;}
.pvp-troop img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #2c3e50; border: 2px solid #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.5);}
.pvp-troop.enemy img { transform: scaleX(-1); border-color: #e74c3c; }
.pvp-troop.player img { border-color: #3498db; }
.pvp-hp-bar { position: absolute; top: -8px; left: 0; width: 100%; height: 5px; background: #e74c3c; border-radius: 2px; border: 1px solid #000;}
.pvp-hp-fill { height: 100%; background: #2ecc71; width: 100%; border-radius: 2px; transition: width 0.1s;}

.pvp-deck-container { display: flex; gap: 10px; justify-content: center; padding: 15px; background: rgba(0,0,0,0.5); border-radius: 10px; margin-bottom: 20px; overflow-x: auto;}
.pvp-deck-card { position: relative; width: 60px; cursor: pointer; text-align: center; transition: 0.2s;}
.pvp-deck-card img { width: 60px; height: 60px; border-radius: 50%; border: 3px solid #3498db; object-fit: cover; background: #2c3e50;}
.pvp-deck-cost { position: absolute; bottom: 0; right: -5px; background: #8e44ad; color: white; border-radius: 50%; width: 22px; height: 22px; font-size: 0.8em; display: flex; align-items: center; justify-content: center; border: 2px solid white; font-weight: bold; z-index: 2;}
.pvp-deck-card.disabled img { filter: grayscale(100%) brightness(0.4); border-color: #7f8c8d; }
.pvp-deck-card:active { transform: scale(0.9); }

.pvp-energy-container { width: 100%; height: 25px; background: #2c3e50; border-radius: 15px; border: 3px solid #fff; overflow: hidden; position: relative; margin-bottom: 15px;}
.pvp-energy-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #9b59b6, #8e44ad); transition: width 0.2s; }
.pvp-energy-text { position: absolute; width: 100%; text-align: center; font-weight: bold; line-height: 25px; text-shadow: 1px 1px 2px #000; font-family: 'Bangers', cursive; font-size: 1.2em; letter-spacing: 1px;}
.pvp-damage-text { position: absolute; color: #ffeb3b; font-weight: bold; font-size: 1.2em; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; animation: float-up 0.5s forwards; pointer-events: none; z-index: 20;}

@keyframes walk-bounce { 0% { transform: translateY(0); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0); } }
.pvp-walking img { animation: walk-bounce 0.3s infinite; }
@keyframes attack-bump-right { 0% { transform: translateX(0); } 50% { transform: translateX(10px); } 100% { transform: translateX(0); } }
@keyframes attack-bump-left { 0% { transform: translateX(0); } 50% { transform: translateX(-10px); } 100% { transform: translateX(0); } }
.pvp-attacking.player img { animation: attack-bump-right 0.5s infinite; }
.pvp-attacking.enemy img { animation: attack-bump-left 0.5s infinite; }
@keyframes float-up { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-20px); } }

/* --- ARCADE MENU & MINI-GAMES --- */
.arcade-card { background: linear-gradient(145deg, #27ae60, #2ecc71); border: 5px solid #145a32; border-radius: 15px; padding: 20px; width: 220px; cursor: pointer; transition: 0.2s; box-shadow: 0 8px 15px rgba(0,0,0,0.6); display: flex; flex-direction: column; align-items: center; margin-bottom: 20px;}
.arcade-card:hover { transform: translateY(-10px) scale(1.05); }

#arcade-whack-screen, #arcade-memory-screen, #arcade-flappy-screen { background-color: rgba(44, 62, 80, 0.95); padding: 30px; border-radius: 20px; border: 5px solid #2ecc71; box-shadow: 0 10px 30px rgba(0,0,0,0.8); max-width: 600px; backdrop-filter: blur(5px);}
.arcade-hud { display: flex; justify-content: space-between; font-size: 1.5em; font-family: 'Bangers', cursive; color: #f1c40f; margin-bottom: 15px; padding: 10px; background: rgba(0,0,0,0.5); border-radius: 10px;}

/* Whack-a-Villain */
.arcade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; }
.hole { background: radial-gradient(circle, #1a252f, #000); border: 4px solid #2c3e50; border-radius: 50%; height: 120px; position: relative; overflow: hidden; box-shadow: inset 0 10px 20px rgba(0,0,0,0.8); }
.mole { position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 90px; height: 90px; object-fit: cover; border-radius: 50%; border: 3px solid transparent; transition: bottom 0.2s ease-out; cursor: crosshair;}
.mole.up { bottom: 10px; }
.mole.villain { border-color: #e74c3c; box-shadow: 0 0 15px #e74c3c; }
.mole.ally { border-color: #3498db; box-shadow: 0 0 15px #3498db; }
.flash-red { animation: flash-red 0.3s; }
.flash-green { animation: flash-green 0.3s; }
@keyframes flash-red { 0%, 100% { background-color: rgba(44, 62, 80, 0.95); } 50% { background-color: #e74c3c; } }
@keyframes flash-green { 0%, 100% { background-color: rgba(44, 62, 80, 0.95); } 50% { background-color: #2ecc71; } }

/* Memory Match */
.memory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 450px; margin: 0 auto 20px auto; }
.memory-card { width: 100%; aspect-ratio: 1; perspective: 1000px; cursor: pointer; }
.memory-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.4s; transform-style: preserve-3d; }
.memory-card.flipped .memory-card-inner { transform: rotateY(180deg); }
.memory-front, .memory-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 10px; border: 3px solid #bdc3c7;}
.memory-front { background: #2c3e50; display: flex; justify-content: center; align-items: center; font-size: 3em; }
.memory-back { background: #34495e; transform: rotateY(180deg); display: flex; align-items: center; justify-content: center; }
.memory-back img { width: 85%; height: 85%; object-fit: cover; border-radius: 50%; border: 2px solid #2ecc71;}

/* Flappy Runner */
#flappy-container { position: relative; width: 100%; height: 350px; background: #34495e; overflow: hidden; border: 5px solid #3498db; border-radius: 15px; margin-bottom: 20px; }
#flappy-bird { position: absolute; width: 50px; height: 50px; border-radius: 50%; left: 50px; background: #f1c40f; box-shadow: 0 0 15px #f1c40f; z-index: 10; display: flex; justify-content: center; align-items: center; overflow: hidden;}
#flappy-bird img { width: 100%; height: 100%; object-fit: cover; }
.flappy-pipe { position: absolute; width: 60px; background: #e74c3c; border: 3px solid #c0392b; border-radius: 5px; }

/* New Arcade Games */
#target-container { position: relative; width: 100%; height: 350px; background: #1a252f; overflow: hidden; border: 5px solid #9b59b6; border-radius: 15px; margin-bottom: 20px; }
.target-mob { position: absolute; width: 70px; height: 70px; border-radius: 50%; border: 3px solid #e74c3c; cursor: crosshair; transition: transform 0.1s; box-shadow: 0 0 15px #e74c3c;}
.target-mob:active { transform: scale(0.8); }

#drop-area { position: relative; width: 100%; height: 350px; background: #2c3e50; overflow: hidden; border: 5px solid #f1c40f; border-radius: 15px; margin-bottom: 20px; touch-action: none;}
#drop-basket { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; font-size: 4em; display: flex; justify-content: center; align-items: center; text-shadow: 0 5px 10px rgba(0,0,0,0.5);}
.drop-item { position: absolute; width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 3em; top: -50px; text-shadow: 0 5px 10px rgba(0,0,0,0.5);}

.tf-btn { flex: 1; padding: 30px 10px; font-size: 2.5em; border-radius: 15px; border: none; font-weight: bold; cursor: pointer; font-family: 'Bangers', cursive; box-shadow: 0 5px 0 rgba(0,0,0,0.5); color: white;}
.gravity-bar-bg { width: 100%; height: 50px; background: #1a252f; border-radius: 25px; border: 4px solid #000; overflow: hidden; margin: 20px 0; position: relative;}
.gravity-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #e74c3c, #f1c40f); transition: width 0.1s; }
.mash-btn { width: 180px; height: 180px; border-radius: 50%; background: #e74c3c; border: 10px solid #c0392b; color: white; font-size: 3.5em; font-weight: bold; cursor: pointer; box-shadow: 0 15px 0 #922b21, inset 0 0 20px rgba(0,0,0,0.5); font-family: 'Bangers', cursive; text-transform: uppercase; margin-bottom: 20px;}
.mash-btn:active { transform: translateY(15px); box-shadow: 0 0 0 #922b21, inset 0 0 20px rgba(0,0,0,0.5); }

/* --- ADMIN DASHBOARD --- */
#admin-screen { display: none; width: 100%; max-width: 900px; margin: 0 auto; background: rgba(44, 62, 80, 0.95); padding: 30px; border-radius: 20px; border: 5px solid #e74c3c; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.admin-user-row { background: rgba(0,0,0,0.5); padding: 15px; margin-bottom: 10px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,0.2);}
.admin-btn { background: #3498db; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-weight: bold;}
.admin-btn:hover { background: #2980b9; }