.waw-quiz-container {
max-width: 800px;
margin: 40px auto;
font-family: inherit;
background: #fff;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 40px;
text-align: center;
min-height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
}
.waw-quiz-inner {
transition: opacity 0.3s ease;
}
.waw-quiz-loader {
font-size: 18px;
color: #7f8c8d;
}
.waw-quiz-question {
font-size: 28px;
font-weight: bold;
margin-bottom: 30px;
color: #2c3e50;
line-height: 1.3;
}
.waw-quiz-answers {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 500px;
margin: 0 auto;
}
.waw-quiz-btn {
background: #3498db;
color: #fff;
border: none;
padding: 15px 25px;
font-size: 18px;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}
.waw-quiz-btn:hover {
background: #2980b9;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}
.waw-quiz-result-title {
font-size: 28px;
font-weight: bold;
color: #e74c3c;
margin-bottom: 20px;
}
.waw-quiz-stats {
margin-top: 25px;
font-size: 16px;
color: #2c3e50;
font-weight: bold;
background: #f1f2f6;
padding: 12px 20px;
border-radius: 8px;
display: inline-block;
border: 1px solid #dfe4ea;
} .waw-quiz-game-card {
text-align: left;
border: 1px solid #eee;
border-radius: 12px;
padding: 25px;
margin-top: 20px;
background: #fafafa;
box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.waw-quiz-game-header {
display: flex;
gap: 25px;
align-items: flex-start;
margin-bottom: 20px;
}
.waw-quiz-game-logo {
max-width: 180px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.waw-quiz-game-meta-wrap {
flex-grow: 1;
}
.waw-quiz-game-title {
margin: 0 0 10px 0;
font-size: 24px;
color: #222;
}
.waw-quiz-game-meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.waw-quiz-game-meta span {
background: #e0e0e0;
padding: 5px 10px;
border-radius: 5px;
font-size: 13px;
color: #333;
}
.waw-quiz-game-desc {
font-size: 16px;
line-height: 1.6;
color: #444;
margin-bottom: 20px;
}
.waw-quiz-game-tags {
margin-bottom: 20px;
}
.waw-quiz-tag {
display: inline-block;
background: #ffeaa7;
color: #d35400;
padding: 4px 10px;
border-radius: 15px;
font-size: 12px;
margin-right: 8px;
margin-bottom: 8px;
font-weight: bold;
}
.waw-quiz-game-gallery {
display: flex;
gap: 15px;
overflow-x: auto;
padding-bottom: 15px;
}
.waw-quiz-game-gallery img {
height: 100px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.waw-quiz-btn-link {
display: inline-block;
background: #2ecc71;
color: #fff;
padding: 10px 20px;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
transition: background 0.2s;
}
.waw-quiz-btn-link:hover {
background: #27ae60;
color: #fff;
}
@media (max-width: 600px) {
.waw-quiz-game-header {
flex-direction: column;
align-items: center;
text-align: center;
}
.waw-quiz-game-meta {
justify-content: center;
}
}