* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #e8f0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card-container {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 660px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.1);
}

.result-card {
    width: 50%;
    padding: 35px;
    background: linear-gradient(180deg, #6743FF, #312CEB);
    color: white;
    text-align: center;
}

.result-card h3 {
    opacity: 0.8;
    font-size: 18px;
    margin-bottom: 20px;
}

.score-circle {
    background: linear-gradient(180deg, #5336FF, #2A28E0);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.score-circle h1 {
    font-size: 55px;
    font-weight: 700;
}

.score-circle p {
    opacity: 0.7;
}

.result-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.desc {
    opacity: 0.8;
    font-size: 14px;
}

.summary-card {
    width: 50%;
    padding: 35px;
}

.summary-card h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.reaction {
    background: #fff6f6;
    color: #e15757;
}

.memory {
    background: #fff9e8;
    color: #e2a100;
}

.verbal {
    background: #e8fff4;
    color: #0ba574;
}

.visual {
    background: #eaf1ff;
    color: #3a63d4;
}

.continue-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    background: #1e1f26;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.continue-btn:hover {
    opacity: 0.9;
}
