/* Bisherige Styles bleiben erhalten */

/* Neue Premium-Styles */
.premium-section {
    margin-top: 50px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.premium-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.premium-card:hover {
    transform: translateY(-10px);
}

.premium-card i {
    font-size: 3em;
    color: var(--secondary);
    margin-bottom: 20px;
}

.premium-card button {
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.premium-card button:hover {
    transform: scale(1.05);
}

/* Shop Styles */
.shop-section {
    margin-top: 50px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-price {
    font-size: 1.2em;
    color: var(--secondary);
    font-weight: bold;
}

.buy-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
}

.diagnostic-workspace {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.symptom-scanner {
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.scan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.scan-controls {
    display: flex;
    gap: 1rem;
}

.quick-scan-btn, .deep-scan-btn {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-scan-btn {
    background: var(--gradient-primary);
    color: var(--primary-bg);
}

.deep-scan-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.symptoms-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.symptom-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.symptom-card:hover {
    background: rgba(0, 247, 255, 0.1);
    border-color: var(--accent-color);
}

.symptom-card.selected {
    background: rgba(0, 247, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-neon);
}

.diagnostic-results {
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.results-visualizer {
    height: 200px;
    background: rgba(0, 247, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.solution-matrix {
    display: grid;
    gap: 1rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.solution-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.solution-steps {
    list-style: none;
}

.solution-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.step-number {
    background: rgba(0, 247, 255, 0.1);
    color: var(--accent-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.probability-indicator {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.probability-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

@keyframes scanAnimation {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.scanning::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: scanAnimation 2s linear infinite;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: #f5f7fa;
    color: #2d3436;
    padding: 20px;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Quiz Header */
.quiz-header {
    text-align: center;
    margin-bottom: 40px;
}

.quiz-header h1 {
    font-size: 2.2em;
    color: #2d3436;
    margin-bottom: 10px;
}

.quiz-header p {
    color: #636e72;
    font-size: 1.1em;
}

/* Fortschrittsanzeige */
.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 30px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00b894, #00cec9);
    width: 0;
    transition: width 0.3s ease;
}

/* Fragen */
.question-container {
    margin-bottom: 30px;
}

.question-text {
    font-size: 1.3em;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Antwortoptionen */
.option-label {
    display: block;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-label:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

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

.option-text {
    font-size: 1.1em;
    color: #2d3436;
}

.option-description {
    display: block;
    font-size: 0.9em;
    color: #636e72;
    margin-top: 5px;
}

/* Ausgewählte Option */
.option-label input[type="radio"]:checked + .option-text {
    color: #00b894;
    font-weight: 500;
}

.option-label input[type="radio"]:checked + .option-text::before {
    content: '✓';
    margin-right: 10px;
    color: #00b894;
}

/* Navigation */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.back-btn, .next-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1em;
    font-weight: 500;
}

.next-btn {
    background: #00b894;
    color: white;
}

.next-btn:disabled {
    background: #b2bec3;
    cursor: not-allowed;
}

.back-btn {
    background: #dfe6e9;
    color: #2d3436;
}

/* Ergebnisse */
.results-container {
    padding: 20px;
}

.component-result {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid transparent;
}

.component-result.high-probability {
    border-left-color: #00b894;
}

.probability-bar {
    height: 6px;
    background: #f1f2f6;
    border-radius: 3px;
    margin: 15px 0;
    overflow: hidden;
}

.probability-fill {
    height: 100%;
    background: linear-gradient(90deg, #00b894, #00cec9);
    transition: width 0.3s ease;
}

.test-steps {
    margin-top: 20px;
}

.test-step {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
}

.test-name {
    color: #00b894;
    font-weight: 600;
    margin-bottom: 8px;
}

.test-description {
    color: #636e72;
    line-height: 1.5;
}

.tools-needed {
    margin-top: 12px;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 6px;
    font-size: 0.9em;
    color: #0984e3;
}

.restart-btn {
    display: block;
    margin: 30px auto;
    padding: 15px 30px;
    background: #00b894;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-size: 1.1em;
    font-weight: 500;
}

.restart-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .quiz-container {
        padding: 20px;
    }

    .option-label {
        padding: 12px 15px;
    }

    .navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .back-btn, .next-btn {
        width: 100%;
    }
} 