* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0F2027;
    
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.intro {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro p {
    font-size: 1.1rem;
    text-align: center;
    color: #555;
}

.transparency-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(15, 32, 39, 0.1);
    border-radius: 10px;
    border-left: 4px solid #0F2027;
    font-size: 0.95rem;
    text-align: left;
}

.transparency-note a {
    color: #0F2027;
    text-decoration: none;
    font-weight: 600;
}

.transparency-note a:hover {
    text-decoration: underline;
}

.form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.axe-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 2px solid rgba(15, 32, 39, 0.2);
}

.axe-title {
    color: #0F2027;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #0F2027;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.question-group {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #0F2027;
    transition: all 0.3s ease;
}

.question-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(15, 32, 39, 0.15);
}

.question-group h3 {
    color: #0F2027;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.question {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.option:hover {
    border-color: #0F2027;
    background: rgba(15, 32, 39, 0.05);
    transform: translateY(-1px);
}

.option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.option input[type="radio"]:checked + .radio-custom {
    border-color: #0F2027;
    background: #0F2027;
}

.option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-text {
    font-weight: 500;
    color: #555;
}

.submit-btn {
    background-color: #0F2027;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 32, 39, 0.4);
    background-color: #1a2f38;
}

.submit-btn:active {
    transform: translateY(0);
}

.results {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.results.hidden {
    display: none;
}

.results-header h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.score-display {
    margin-bottom: 30px;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    color: #0F2027;
    display: block;
    line-height: 1;
}

.score-max {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
}

.score-category {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 16px;
    border: 2px solid #e1e5e9;
}

.score-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.score-category h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.score-category p {
    color: #666;
    font-size: 1.1rem;
}

.recommendations {
    text-align: left;
    margin-bottom: 30px;
}

.recommendations h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.recommendations ul {
    list-style: none;
    padding: 0;
}

.recommendations li {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 4px solid #0F2027;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.recommendations li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(15, 32, 39, 0.15);
}

.restart-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restart-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .form {
        padding: 25px;
    }
    
    .question-group {
        padding: 20px;
    }
    
    .options {
        flex-direction: column;
        gap: 15px;
    }
    
    .option {
        min-width: auto;
        justify-content: flex-start;
    }
    
    .score-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .form {
        padding: 20px;
    }
    
    .question-group {
        padding: 15px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results {
    animation: fadeInUp 0.6s ease-out;
}

.question-group {
    animation: fadeInUp 0.4s ease-out;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    width: 100%;
}

.form {
    position: relative;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 8px;
    background-color : #3395a7;
    transition: width 0.3s ease;
    z-index: 1000;
    border-radius: 0 4px 4px 0;
    width: 0%;
}

.copyright {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.copyright p {
    margin: 0;
    color: #a2a4a5;
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .copyright {
        padding: 15px;
        margin-top: 30px;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
} 