Class_generator/css/games.css

1525 lines
28 KiB
CSS

/* === GAME PAGE LAYOUT === */
.game-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 30px;
padding: 20px;
background: var(--card-background);
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}
.game-header h3 {
color: var(--primary-color);
font-size: 1.5rem;
font-weight: 600;
margin: 0;
}
.score-display {
background: var(--secondary-color);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-weight: 600;
font-size: 1.1rem;
}
/* === GAME CONTAINER === */
.game-container {
background: var(--card-background);
border-radius: var(--border-radius);
box-shadow: var(--shadow);
padding: 30px;
min-height: 500px;
position: relative;
overflow: hidden;
}
/* === GAME ERROR DISPLAY === */
.game-error {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
min-height: 400px;
text-align: center;
padding: 40px 20px;
color: var(--text-secondary);
}
/* === MEMORY MATCH GAME === */
.memory-match-wrapper {
display: flex;
flex-direction: column;
gap: 20px;
max-width: 600px;
margin: 0 auto;
}
.game-stats {
display: flex;
justify-content: space-around;
background: var(--card-background);
padding: 15px;
border-radius: var(--border-radius);
box-shadow: var(--shadow-light);
}
.stat-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
}
.stat-label {
font-size: 0.9rem;
color: var(--text-secondary);
font-weight: 500;
}
.stat-item span:last-child {
font-size: 1.2rem;
font-weight: 600;
color: var(--primary-color);
}
.memory-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
padding: 20px;
background: var(--background);
border-radius: var(--border-radius);
}
.memory-card {
aspect-ratio: 1;
perspective: 1000px;
cursor: pointer;
border-radius: 8px;
transition: transform 0.2s ease;
}
.memory-card:hover {
transform: scale(1.05);
}
.card-inner {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.6s ease;
border-radius: 8px;
}
.memory-card.flipped .card-inner {
transform: rotateY(180deg);
}
.card-front,
.card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: var(--shadow);
border: 2px solid transparent;
}
.card-front {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}
.card-back {
background: var(--card-background);
color: var(--text-primary);
transform: rotateY(180deg);
padding: 10px;
}
.card-icon {
font-size: 2rem;
}
.card-content {
font-size: 1rem;
font-weight: 600;
text-align: center;
word-break: break-word;
line-height: 1.2;
}
.card-type {
font-size: 1.2rem;
margin-top: 5px;
}
.memory-card.matched .card-back {
background: var(--success-color);
color: white;
border-color: var(--success-color);
}
.memory-card.hint .card-inner {
transform: rotateY(180deg);
animation: hint-pulse 0.5s ease-in-out;
}
@keyframes hint-pulse {
0%, 100% { transform: rotateY(180deg) scale(1); }
50% { transform: rotateY(180deg) scale(1.1); }
}
.game-controls {
display: flex;
gap: 15px;
justify-content: center;
}
/* Responsive design */
@media (max-width: 600px) {
.memory-grid {
gap: 10px;
padding: 15px;
}
.card-content {
font-size: 0.9rem;
}
.game-stats {
flex-direction: column;
gap: 15px;
}
}
/* === QUIZ GAME === */
.quiz-game-wrapper {
display: flex;
flex-direction: column;
gap: 25px;
max-width: 700px;
margin: 0 auto;
}
.quiz-progress {
background: var(--card-background);
padding: 20px;
border-radius: var(--border-radius);
box-shadow: var(--shadow-light);
}
.progress-bar {
width: 100%;
height: 8px;
background: var(--background);
border-radius: 4px;
overflow: hidden;
margin-bottom: 15px;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
border-radius: 4px;
transition: width 0.3s ease;
width: 10%;
}
.progress-text {
display: flex;
justify-content: space-between;
font-weight: 600;
color: var(--text-primary);
}
.question-area {
background: var(--card-background);
padding: 30px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
text-align: center;
}
.question-text {
font-size: 1.4rem;
color: var(--text-primary);
line-height: 1.5;
margin: 0;
}
.question-text strong {
color: var(--primary-color);
font-size: 1.6rem;
}
.options-area {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
padding: 20px;
}
.quiz-option {
background: var(--card-background);
border: 2px solid var(--border-color);
border-radius: var(--border-radius);
padding: 20px;
font-size: 1.1rem;
font-weight: 500;
color: var(--text-primary);
cursor: pointer;
transition: all 0.2s ease;
min-height: 60px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.quiz-option:hover:not(:disabled) {
border-color: var(--primary-color);
background: var(--primary-light);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.quiz-option:disabled {
cursor: not-allowed;
}
.quiz-option.correct {
background: var(--success-color);
border-color: var(--success-color);
color: white;
animation: success-pulse 0.6s ease;
}
.quiz-option.wrong {
background: var(--error-color);
border-color: var(--error-color);
color: white;
animation: error-shake 0.6s ease;
}
.quiz-option.disabled {
opacity: 0.5;
background: var(--text-secondary);
border-color: var(--text-secondary);
}
@keyframes success-pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
@keyframes error-shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
.quiz-controls {
display: flex;
gap: 15px;
justify-content: center;
align-items: center;
}
#next-btn {
font-size: 1.1rem;
padding: 12px 24px;
}
/* Responsive design */
@media (max-width: 600px) {
.options-area {
grid-template-columns: 1fr;
gap: 12px;
padding: 15px;
}
.quiz-option {
padding: 15px;
font-size: 1rem;
min-height: 50px;
}
.question-text {
font-size: 1.2rem;
}
.question-text strong {
font-size: 1.4rem;
}
.progress-text {
flex-direction: column;
gap: 8px;
text-align: center;
}
}
/* === ADVENTURE READER GAME === */
.adventure-reader-wrapper {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 1000px;
margin: 0 auto;
user-select: none;
}
.game-hud {
display: flex;
justify-content: space-between;
align-items: center;
background: var(--card-background);
padding: 15px 20px;
border-radius: var(--border-radius);
box-shadow: var(--shadow-light);
border: 2px solid var(--primary-color);
}
.hud-left {
display: flex;
gap: 20px;
}
.stat-item {
display: flex;
align-items: center;
gap: 8px;
font-weight: 600;
font-size: 1.1rem;
}
.stat-icon {
font-size: 1.3rem;
}
.progress-info {
font-weight: 500;
color: var(--primary-color);
}
.game-map {
position: relative;
width: 70vw;
height: 55vh;
max-width: 800px;
max-height: 500px;
min-width: 400px;
min-height: 300px;
background: linear-gradient(135deg, #8fbc8f, #90ee90);
border-radius: var(--border-radius);
border: 3px solid var(--primary-color);
overflow: hidden;
cursor: crosshair;
margin: 0 auto;
}
.player {
position: absolute;
width: 40px;
height: 40px;
font-size: 30px;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
transition: all 0.8s ease;
}
.pot, .enemy {
position: absolute;
width: 40px;
height: 40px;
font-size: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}
/* Invisible larger clickable area */
.pot::before, .enemy::before {
content: '';
position: absolute;
top: -15px;
left: -15px;
right: -15px;
bottom: -15px;
border-radius: 50%;
background: transparent;
pointer-events: auto;
}
.pot:hover, .enemy:hover {
transform: scale(1.2);
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}
.pot.destroyed, .enemy.defeated {
pointer-events: none;
animation: destruction 0.5s ease;
}
@keyframes destruction {
0% { transform: scale(1); }
50% { transform: scale(1.5) rotate(180deg); }
100% { transform: scale(0.8); }
}
.enemy {
animation: enemyFloat 2s ease-in-out infinite alternate;
}
@keyframes enemyFloat {
0% { transform: translateY(0px); }
100% { transform: translateY(-5px); }
}
.game-controls {
text-align: center;
background: var(--card-background);
padding: 15px;
border-radius: var(--border-radius);
box-shadow: var(--shadow-light);
}
.instructions {
margin-bottom: 15px;
color: var(--text-secondary);
font-style: italic;
}
/* Reading Modal */
.reading-modal {
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: 1000;
opacity: 0;
transition: opacity 0.3s ease;
}
.reading-modal.show {
opacity: 1;
}
.modal-content {
background: var(--card-background);
border-radius: var(--border-radius);
max-width: 500px;
width: 90%;
max-height: 80%;
overflow-y: auto;
transform: translateY(20px);
transition: transform 0.3s ease;
}
.reading-modal.show .modal-content {
transform: translateY(0);
}
.modal-header {
background: var(--primary-color);
color: white;
padding: 20px;
border-radius: var(--border-radius) var(--border-radius) 0 0;
text-align: center;
}
.modal-header h3 {
margin: 0;
font-size: 1.5rem;
}
.modal-body {
padding: 30px;
}
.sentence-content .english-text {
font-size: 1.3rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 15px;
line-height: 1.5;
}
.sentence-content .translation-text {
font-size: 1.1rem;
color: var(--text-secondary);
font-style: italic;
line-height: 1.4;
}
.modal-footer {
padding: 20px;
text-align: center;
background: var(--background);
border-radius: 0 0 var(--border-radius) var(--border-radius);
}
/* Vocab Popup */
.vocab-popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);
background: var(--success-color);
color: white;
padding: 20px 30px;
border-radius: var(--border-radius);
z-index: 500;
opacity: 0;
transition: all 0.3s ease;
box-shadow: var(--shadow-lg);
}
.vocab-popup.show {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.popup-content {
text-align: center;
}
.vocab-word {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 8px;
}
.vocab-translation {
font-size: 1.1rem;
opacity: 0.9;
}
/* Responsive design */
@media (max-width: 600px) {
.game-map {
width: 95vw;
height: 50vh;
max-width: none;
}
.hud-left {
flex-direction: column;
gap: 10px;
}
.game-hud {
flex-direction: column;
gap: 15px;
text-align: center;
}
.pot, .enemy, .player {
width: 35px;
height: 35px;
font-size: 25px;
}
.modal-content {
width: 95%;
}
.modal-body {
padding: 20px;
}
}
/* === DECORATIVE ELEMENTS === */
.decoration {
position: absolute;
pointer-events: none;
z-index: 1;
opacity: 0.8;
user-select: none;
}
.decoration.tree {
z-index: 5;
filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}
.decoration.grass {
z-index: 1;
opacity: 0.6;
animation: grassSway 3s ease-in-out infinite;
}
.decoration.rock {
z-index: 2;
opacity: 0.7;
filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}
@keyframes grassSway {
0%, 100% { transform: rotate(-2deg); }
50% { transform: rotate(2deg); }
}
/* Player and interactive elements should be above decorations */
.player {
z-index: 10 !important;
}
.pot, .enemy {
z-index: 8 !important;
}
/* Damage animation */
@keyframes damageFloat {
0% {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
100% {
opacity: 0;
transform: translate(-50%, -80px) scale(1.2);
}
}
/* Protection animation */
@keyframes protectionFloat {
0% {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
50% {
opacity: 0.7;
transform: translate(-50%, -40px) scale(1.1);
}
100% {
opacity: 0;
transform: translate(-50%, -60px) scale(0.9);
}
}
.game-error h3 {
color: var(--error-color);
font-size: 1.8rem;
margin-bottom: 20px;
font-weight: 600;
}
.game-error p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 15px;
max-width: 500px;
}
.game-error .back-btn {
background: var(--primary-color);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
margin-top: 20px;
transition: all 0.3s ease;
}
.game-error .back-btn:hover {
background: #2563EB;
transform: translateY(-1px);
}
/* === FILL THE BLANK SPECIFIC STYLES === */
.fill-blank-wrapper {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.translation-hint {
background: #f0f9ff;
border: 2px solid #3b82f6;
border-radius: 12px;
padding: 15px;
margin-bottom: 20px;
text-align: center;
font-size: 1.1rem;
color: #1e40af;
}
.translation-hint:empty {
display: none;
}
.sentence-container {
background: white;
border: 3px solid #e5e7eb;
border-radius: 15px;
padding: 25px;
margin-bottom: 25px;
font-size: 1.4rem;
line-height: 1.8;
text-align: center;
min-height: 80px;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
}
.word {
color: var(--text-primary);
font-weight: 500;
}
.blank-wrapper {
display: inline-flex;
align-items: center;
gap: 2px;
}
.blank-input {
background: #fef3c7;
border: 2px solid #f59e0b;
border-radius: 8px;
padding: 8px 12px;
font-size: 1.3rem;
font-weight: 600;
text-align: center;
min-width: 60px;
width: auto;
color: var(--text-primary);
transition: all 0.3s ease;
}
.blank-input:focus {
outline: none;
border-color: var(--primary-color);
background: #dbeafe;
transform: scale(1.05);
}
.blank-input.correct {
background: #d1fae5;
border-color: #10b981;
color: #065f46;
}
.blank-input.incorrect {
background: #fee2e2;
border-color: #ef4444;
color: #991b1b;
animation: shake 0.5s ease-in-out;
}
.blank-input.revealed {
background: #f3f4f6;
border-color: #6b7280;
color: #374151;
font-style: italic;
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
.input-area {
margin-bottom: 25px;
min-height: 50px;
}
.game-controls {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 20px;
}
.control-btn {
background: var(--primary-color);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
min-width: 120px;
}
.control-btn:hover {
background: #2563EB;
transform: translateY(-2px);
}
.control-btn.secondary {
background: #6b7280;
}
.control-btn.secondary:hover {
background: #4b5563;
}
.instruction.success {
background: #d1fae5;
color: #065f46;
border: 2px solid #10b981;
}
.instruction.partial {
background: #fef3c7;
color: #92400e;
border: 2px solid #f59e0b;
}
.instruction.error {
background: #fee2e2;
color: #991b1b;
border: 2px solid #ef4444;
}
.instruction.info {
background: #dbeafe;
color: #1e40af;
border: 2px solid #3b82f6;
}
/* Responsive pour Fill the Blank */
@media (max-width: 768px) {
.fill-blank-wrapper {
padding: 15px;
}
.sentence-container {
font-size: 1.2rem;
padding: 20px 15px;
}
.blank-input {
font-size: 1.1rem;
padding: 6px 10px;
min-width: 50px;
}
.game-controls {
flex-direction: column;
align-items: center;
}
.control-btn {
width: 100%;
max-width: 200px;
}
}
/* === WHACK-A-MOLE SPECIFIC STYLES === */
.whack-game-board {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
max-width: 600px;
margin: 0 auto;
padding: 20px 0;
}
/* === TEXT READER STYLES === */
.text-reader-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
.text-selection {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 25px;
border-radius: 15px;
text-align: center;
margin-bottom: 30px;
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.text-selector-label {
display: block;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 15px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.text-selector {
background: white;
color: var(--text-primary);
border: none;
padding: 12px 20px;
border-radius: 10px;
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 15px;
width: 100%;
max-width: 400px;
cursor: pointer;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
transition: all 0.3s ease;
}
.text-selector:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
transform: translateY(-1px);
}
.text-selector:hover {
transform: translateY(-1px);
box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.text-progress {
font-size: 1rem;
opacity: 0.9;
font-weight: 500;
}
.reading-area {
background: white;
border: 3px solid #e5e7eb;
border-radius: 20px;
padding: 40px;
margin-bottom: 30px;
min-height: 200px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sentence-display {
text-align: center;
width: 100%;
}
.current-sentence {
font-size: 1.6rem;
line-height: 1.8;
color: var(--text-primary);
font-weight: 500;
animation: fadeInUp 0.5s ease-out;
}
.full-text-display {
width: 100%;
text-align: left;
}
.full-text-content {
font-size: 1.3rem;
line-height: 1.8;
color: var(--text-primary);
}
.full-text-content p {
margin-bottom: 20px;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.reader-controls, .text-navigation {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.reader-controls .control-btn,
.text-navigation .control-btn {
background: var(--primary-color);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
min-width: 140px;
}
.reader-controls .control-btn:hover,
.text-navigation .control-btn:hover {
background: #2563EB;
transform: translateY(-2px);
}
.reader-controls .control-btn.secondary,
.text-navigation .control-btn.secondary {
background: #6b7280;
}
.reader-controls .control-btn.secondary:hover,
.text-navigation .control-btn.secondary:hover {
background: #4b5563;
}
.reader-controls .control-btn:disabled,
.text-navigation .control-btn:disabled {
background: #d1d5db;
color: #9ca3af;
cursor: not-allowed;
transform: none;
}
.reader-controls .control-btn:disabled:hover,
.text-navigation .control-btn:disabled:hover {
background: #d1d5db;
transform: none;
}
/* Responsive pour Text Reader */
@media (max-width: 768px) {
.text-reader-wrapper {
padding: 15px;
}
.text-title {
font-size: 1.4rem;
}
.reading-area {
padding: 25px 20px;
min-height: 150px;
}
.current-sentence {
font-size: 1.3rem;
}
.full-text-content {
font-size: 1.1rem;
}
.reader-controls, .text-navigation {
flex-direction: column;
align-items: center;
gap: 10px;
}
.reader-controls .control-btn,
.text-navigation .control-btn {
width: 100%;
max-width: 250px;
}
}
@media (max-width: 480px) {
.text-info {
padding: 15px;
}
.text-progress {
font-size: 0.8rem;
}
.current-sentence {
font-size: 1.2rem;
}
.reading-area {
padding: 20px 15px;
}
}
/* === WHACK-A-MOLE HARD MODE STYLES === */
.whack-game-board.hard-mode {
grid-template-columns: repeat(5, 1fr);
max-width: 800px;
gap: 15px;
}
.whack-hole {
aspect-ratio: 1;
background: radial-gradient(circle, #8B4513 0%, #654321 70%, #3D2817 100%);
border-radius: 50%;
position: relative;
cursor: pointer;
transition: var(--transition);
box-shadow: inset 0 4px 8px rgba(0,0,0,0.3);
border: 4px solid #654321;
}
.whack-hole:hover {
transform: scale(1.05);
}
.whack-mole {
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 80%;
height: 80%;
background: #8B4513;
border-radius: 50% 50% 40% 40%;
transition: all 0.3s ease-out;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.whack-mole.active {
bottom: 10px;
animation: pop-up 0.3s ease-out;
}
.whack-mole.hit {
animation: hit-animation 0.5s ease-out;
}
.whack-mole .word {
color: white;
font-weight: bold;
font-size: 0.9rem;
text-align: center;
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
padding: 5px;
}
@keyframes pop-up {
0% { bottom: -20px; transform: translateX(-50%) scale(0.8); }
50% { transform: translateX(-50%) scale(1.1); }
100% { bottom: 10px; transform: translateX(-50%) scale(1); }
}
@keyframes hit-animation {
0% { transform: translateX(-50%) scale(1); }
25% { transform: translateX(-50%) scale(1.2) rotate(5deg); }
50% { transform: translateX(-50%) scale(0.9) rotate(-3deg); }
75% { transform: translateX(-50%) scale(1.1) rotate(2deg); }
100% { transform: translateX(-50%) scale(1) rotate(0deg); }
}
/* === GAME UI ELEMENTS === */
.game-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding: 15px 20px;
background: linear-gradient(135deg, #f8fafc, #e2e8f0);
border-radius: var(--border-radius);
}
.game-stats {
display: flex;
gap: 20px;
}
.stat-item {
text-align: center;
}
.stat-value {
display: block;
font-size: 1.5rem;
font-weight: bold;
color: var(--primary-color);
}
.stat-label {
font-size: 0.9rem;
color: var(--text-secondary);
}
.game-controls {
display: flex;
gap: 10px;
}
.control-btn {
background: var(--primary-color);
color: white;
padding: 10px 20px;
border-radius: 25px;
font-size: 0.9rem;
transition: var(--transition);
}
.control-btn:hover {
background: #2563EB;
transform: translateY(-2px);
}
.control-btn:disabled {
background: var(--neutral-color);
cursor: not-allowed;
transform: none;
}
/* === FEEDBACK ANIMATIONS === */
.score-popup {
position: absolute;
font-weight: bold;
font-size: 1.2rem;
color: var(--secondary-color);
pointer-events: none;
animation: score-float 1s ease-out forwards;
z-index: 10;
}
@keyframes score-float {
0% {
opacity: 1;
transform: translateY(0) scale(1);
}
100% {
opacity: 0;
transform: translateY(-50px) scale(1.2);
}
}
.wrong-answer {
color: var(--error-color) !important;
}
.correct-answer {
color: var(--secondary-color) !important;
}
/* === GAME MODES === */
.mode-selector {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 20px;
padding: 15px;
background: var(--background-color);
border-radius: var(--border-radius);
}
.mode-btn {
background: white;
border: 2px solid var(--neutral-color);
color: var(--text-primary);
padding: 10px 20px;
border-radius: 25px;
font-size: 0.9rem;
transition: var(--transition);
}
.mode-btn.active {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
}
.mode-btn:hover {
border-color: var(--primary-color);
}
/* === RESPONSIVE GAMES === */
@media (max-width: 768px) {
.game-header {
flex-direction: column;
gap: 15px;
text-align: center;
}
.game-container {
padding: 20px;
min-height: 400px;
}
.whack-game-board {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
max-width: 400px;
}
.game-info {
flex-direction: column;
gap: 15px;
}
.game-stats {
justify-content: center;
}
.mode-selector {
flex-wrap: wrap;
gap: 10px;
}
}
/* === GAME END OVERLAY === */
.game-end-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
animation: fadeIn 0.3s ease-out;
}
.game-end-modal {
background: white;
border-radius: var(--border-radius);
padding: 40px;
text-align: center;
max-width: 400px;
margin: 20px;
box-shadow: var(--shadow-lg);
animation: slideUp 0.3s ease-out;
}
.game-end-modal h3 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 20px;
}
.final-score {
font-size: 1.5rem;
color: var(--secondary-color);
margin-bottom: 10px;
}
.best-score {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 30px;
}
.game-end-buttons {
display: flex;
flex-direction: column;
gap: 12px;
}
.restart-game-btn, .back-to-levels-btn, .back-to-games-btn {
padding: 12px 20px;
border: none;
border-radius: 25px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: var(--transition);
}
.restart-game-btn {
background: var(--secondary-color);
color: white;
}
.restart-game-btn:hover {
background: #059669;
transform: translateY(-2px);
}
.back-to-levels-btn {
background: var(--primary-color);
color: white;
}
.back-to-levels-btn:hover {
background: #2563EB;
transform: translateY(-2px);
}
.back-to-games-btn {
background: var(--neutral-color);
color: white;
}
.back-to-games-btn:hover {
background: #4B5563;
transform: translateY(-2px);
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 480px) {
.whack-game-board {
grid-template-columns: 1fr 1fr;
gap: 10px;
max-width: 300px;
}
.whack-mole .word {
font-size: 0.8rem;
}
.game-header h3 {
font-size: 1.2rem;
}
.score-display {
font-size: 1rem;
padding: 6px 12px;
}
.game-end-modal {
padding: 30px 20px;
margin: 15px;
}
.game-end-modal h3 {
font-size: 1.5rem;
}
.game-end-buttons {
gap: 10px;
}
}