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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 1rem 2rem;
}

.screen {
    background-color: #E8F5E9;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.hidden {
    display: none !important;
}

h1 {
    color: #2E7D32;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn {
    background-color: #2E7D32;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    font-size: 1.1rem;
    display: block;
    margin: 1.5rem auto;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.answers-container {
    display: grid;
    gap: 1rem;
}

.answer-btn {
    background-color: white;
    border: 2px solid #C8E6C9;
    padding: 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.answer-btn:hover {
    background-color: #E8F5E9;
    transform: translateX(5px);
    border-color: #81C784;
}

#progress-bar {
    width: 100%;
    height: 10px;
    background-color: white;
    border: 2px solid #C8E6C9;
    border-radius: 100px;
    margin-bottom: 2rem;
    overflow: hidden;
}

#progress {
    width: 0%;
    height: 100%;
    background-color: #81C784;
    border-radius: 100px;
    transition: width 0.6s ease;
}

.result-item {
    background-color: #FFFFFF;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    border: 2px solid #C8E6C9;
    transition: transform 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.result-item:hover {
    transform: translateY(-3px);
}

.percentage {
    font-weight: bold;
    color: #2E7D32;
    font-size: 1.2rem;
}

.scroll-indicator {
    text-align: center;
    margin-top: 3rem;
    color: #666;
    animation: bounce 2s infinite;
}

.chevron {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.about-section {
    padding: 4rem 0;
    text-align: center;
    display: block;
    background-color: #F1F8E9;
    border-radius: 30px;
    margin: 2rem auto;
}

.about-section h2 {
    color: #2E7D32;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 2px solid #C8E6C9;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .screen {
        padding: 2rem 1rem;
    }
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.back-btn {
    background: none;
    border: none;
    color: #2E7D32;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.back-btn:hover {
    color: #1B5E20;
}

.hustle-detail-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1rem;
    border: 2px solid #C8E6C9;
}

.hustle-detail-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.detail-section {
    background: #F9FBE7;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.detail-section h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.learn-more-btn {
    color: #2E7D32;
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 2px solid #2E7D32;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.learn-more-btn:hover {
    background: #2E7D32;
    color: white;
    transform: translateX(5px);
}

.scroll-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0;
    display: inline-block;
}

.scroll-btn:hover {
    color: #2E7D32;
}

.result-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.result-main {
    flex: 1;
}

.different-section {
    padding: 4rem 0;
    text-align: center;
    display: block;
    background-color: #E0F2F1;
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 1200px;
}

.different-section h2 {
    color: #2E7D32;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.different-section .feature-card {
    background: white;
    border: 2px solid #E8F5E9;
}

.different-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
}

.header-buttons {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
}

.header-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #2E7D32;
}

.header-btn.start-free {
    background-color: #2E7D32;
    color: white;
}

.header-btn.start-free:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
}

.header-btn:not(.start-free) {
    background-color: transparent;
    color: #2E7D32;
}

.header-btn:not(.start-free):hover {
    background-color: #E8F5E9;
    transform: translateY(-2px);
}

.reviews-section {
    padding: 4rem 0;
    text-align: center;
    margin: 2rem auto;
    max-width: 1200px;
    background-color: #F0F4C3;
    border-radius: 30px;
}

.reviews-section h2 {
    color: #2E7D32;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.review-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
    border: 2px solid #DCEDC8;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.reviewer-name {
    color: #2E7D32;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .header-buttons {
        display: none; /* Hide on mobile */
    }
}

#quiz-screen.screen {
    background-color: #F1F8E9;
}

#results-screen.screen {
    background-color: #F1F8E9;
}

#hustle-details.screen {
    background-color: #E8F5E9;
}

#quiz-screen h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.header-buttons {
    gap: 0.5rem;
}

.disclaimer-btn {
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #2E7D32;
    background-color: transparent;
    color: #2E7D32;
}

.disclaimer-btn:hover {
    background-color: #E8F5E9;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #F9FBE7;
    padding: 3rem 2rem;
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 1200px;
    text-align: left;
    animation: fadeIn 0.6s ease-out;
}

.disclaimer-section h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.disclaimer-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #C8E6C9;
    margin-bottom: 2rem;
}

.disclaimer-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.supported-by-section {
    background-color: #E0F2F1;
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease-out;
}

.supported-by-title {
    color: #2E7D32;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.supported-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    gap: 2rem;
}

.supported-placeholder {
    color: #A5D6A7;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 1px;
} 