:root {
--tdj-red: #BA0000;
--tdj-black: #1a1a1a;
--tdj-gray: #f4f4f4;
--tdj-white: #ffffff;
--tdj-border-radius: 8px;
}
#tdj-app {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
max-width: 900px;
margin: 0 auto;
background: transparent;
}
.tdj-dashboard {
background: #fff;
padding: 40px;
border-radius: var(--tdj-border-radius);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
} .tdj-dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 30px;
}
.tdj-level-card {
background: var(--tdj-white);
border: 1px solid #eee;
border-radius: 12px;
padding: 30px 20px;
text-align: center;
transition: all 0.3s ease;
cursor: pointer;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.tdj-level-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.tdj-icon-circle {
width: 60px;
height: 60px;
background: var(--tdj-red);
color: white;
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.5em;
}
.tdj-level-card h3 {
color: var(--tdj-black);
margin-bottom: 5px;
font-size: 1.4em;
font-weight: bold;
}
.tdj-level-card p {
color: #888;
margin-bottom: 25px;
font-size: 0.9em;
}
.tdj-btn-start {
background: var(--tdj-red);
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
width: 100%;
}
.tdj-btn-start:hover {
background: #900000;
} .tdj-test-interface {
background: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.tdj-test-header {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid var(--tdj-red);
padding-bottom: 10px;
margin-bottom: 20px;
}
.tdj-section-title {
background: var(--tdj-black);
color: var(--tdj-white);
padding: 10px 15px;
border-radius: var(--tdj-border-radius);
margin: 30px 0 15px;
display: flex;
justify-content: space-between;
align-items: center;
}
.tdj-section-timer {
font-size: 0.9em;
color: #ffcccc;
}
.tdj-section-text {
background: #fff3cd;
padding: 15px;
margin-bottom: 20px;
border-radius: 4px;
border: 1px solid #ffeeba;
font-size: 1.25em;
line-height: 1.6;
}
.tdj-question {
margin-bottom: 25px;
padding: 20px;
background: #fafafa;
border-left: 4px solid var(--tdj-red);
border-radius: 0 8px 8px 0;
}
.tdj-question-text {
font-size: 1.1em;
margin-bottom: 15px;
font-weight: 500;
}
.tdj-options {
display: flex;
flex-direction: column;
gap: 10px;
}
.tdj-option-label {
display: block;
padding: 12px;
background: var(--tdj-white);
border: 1px solid #ddd;
border-radius: 6px;
cursor: pointer;
transition: background 0.2s;
}
.tdj-option-label:hover {
background: #fdf2f2;
border-color: var(--tdj-red);
}
.tdj-option-input {
margin-right: 10px;
}
.tdj-option-input:checked+span {
font-weight: bold;
color: var(--tdj-red);
} .tdj-audio-player {
background: #f0f0f0;
padding: 15px;
border-radius: var(--tdj-border-radius);
margin-bottom: 20px;
text-align: center;
border: 1px solid #ddd;
} .tdj-result-screen {
text-align: center;
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.tdj-score-circle {
width: 150px;
height: 150px;
border-radius: 50%;
border: 10px solid var(--tdj-red);
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5em;
font-weight: bold;
margin: 0 auto 30px;
color: var(--tdj-black);
}
.tdj-btn {
background: var(--tdj-red);
color: var(--tdj-white);
border: none;
padding: 12px 24px;
font-size: 1em;
border-radius: 4px;
cursor: pointer;
transition: background 0.3s;
}
.tdj-btn:hover {
background: #900000;
}
.tdj-btn.secondary {
background: var(--tdj-black);
}
.tdj-loader {
border: 4px solid #f3f3f3;
border-top: 4px solid var(--tdj-red);
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
margin: 40px auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .tdj-timer-bar {
width: 100%;
height: 4px;
background: #eee;
margin-bottom: 20px;
border-radius: 2px;
overflow: hidden;
}
.tdj-timer-progress {
height: 100%;
background: var(--tdj-red);
width: 100%;
}