.elementor-6162 .elementor-element.elementor-element-e468427{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6b0e64d */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 30px;
    overflow: hidden;
}

.screen {
    display: none;
    text-align: center;
}

.screen.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 { color: #2c3e50; margin-bottom: 15px; }
h2 { color: #34495e; margin-bottom: 20px; font-size: 1.2rem; }

input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 20px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}
input[type="text"]:focus { border-color: #3498db; }

/* Buttons */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}
.primary-btn { background: #3498db; color: white; }
.primary-btn:hover { background: #2980b9; }
.secondary-btn { background: #95a5a6; color: white; }
.secondary-btn:hover:not(:disabled) { background: #7f8c8d; }
.danger-btn { background: #e74c3c; color: white; }
.danger-btn:hover { background: #c0392b; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.hidden { display: none !important; }

/* Quiz Layout */
.header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}
.timer { color: #e74c3c; }

.options { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.option:hover { background: #e2e6ea; border-color: #ced4da; }
.option.selected { background: #d4edda; border-color: #28a745; }

.footer-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

/* Result Screen */
.result-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}
.score-details p { margin: 8px 0; font-size: 1.1rem; }
.text-success { color: #28a745; font-weight: bold; }
.text-danger { color: #dc3545; font-weight: bold; }

/* Leaderboard */
.leaderboard { margin-bottom: 20px; text-align: left; }
.leaderboard h3 { color: #2c3e50; margin-bottom: 10px; border-bottom: 2px solid #eee; padding-bottom: 5px; }
.leaderboard ul { list-style: none; }
.leaderboard li {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.leaderboard li:nth-child(1) { font-weight: bold; color: #d35400; }/* End custom CSS */