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

.report-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
    background-size: 100% 2px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.report-header h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.report-date {
    color: var(--text-secondary);
    font-size: 15px;
}

.report-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.15);
    transition: all 0.3s ease;
}

.report-section:hover {
    border-color: rgba(0, 245, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.15);
}

.report-section h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.report-tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.report-test-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.report-test-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.2);
}

.report-test-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.4));
}

.report-test-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
}

.report-test-result {
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.report-traits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.report-trait-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(139, 92, 246, 0.05));
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--neon-cyan);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.report-trait-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 245, 255, 0.2);
}

.report-trait-card h4 {
    color: var(--neon-cyan);
    margin-bottom: 12px;
    font-size: 18px;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.report-trait-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.report-strengths {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.strength-tag {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--neon-cyan);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.strength-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.4);
}

.report-suggestions {
    list-style: none;
    padding: 0;
}

.report-suggestions li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    font-size: 15px;
    line-height: 1.6;
}

.report-suggestions li:last-child {
    border-bottom: none;
}

.report-suggestions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.report-careers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.career-tag {
    background: rgba(0, 245, 255, 0.05);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.career-tag:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
}

.report-footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 16px;
    margin-top: 40px;
    border: 1px solid rgba(0, 245, 255, 0.15);
}

.report-disclaimer {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.report-empty {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
}

.report-hint {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 15px;
}

.report-current {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.report-score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: conic-gradient(
        var(--neon-cyan) calc(var(--score-percent, 0) * 1%),
        rgba(0, 245, 255, 0.1) calc(var(--score-percent, 0) * 1%)
    );
    position: relative;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    animation: scoreGlow 3s ease-in-out infinite;
}

@keyframes scoreGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 245, 255, 0.5);
    }
}

.report-score-circle::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(10, 14, 39, 0.95);
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0, 245, 255, 0.2);
}

.report-score-value {
    position: relative;
    z-index: 1;
    font-size: 42px;
    font-weight: 700;
    color: var(--neon-cyan);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.report-score-label {
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.report-radar-chart {
    width: 100%;
    max-width: 450px;
    margin: 25px auto;
}

.report-bar-chart {
    margin: 25px 0;
}

.bar-item {
    margin-bottom: 20px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.bar-name {
    color: var(--text-primary);
    font-weight: 500;
}

.bar-value {
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.bar-track {
    height: 10px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.report-risk-section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.report-risk-section.high-risk {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border-color: rgba(239, 68, 68, 0.4);
}

.report-risk-section.low-risk {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-color: rgba(16, 185, 129, 0.4);
}

.risk-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.risk-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.risk-icon.high {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.risk-icon.medium {
    background: rgba(251, 191, 36, 0.2);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.risk-icon.low {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.risk-content {
    flex: 1;
}

.risk-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 16px;
}

.risk-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.report-prediction-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(109, 40, 217, 0.05));
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-left: 4px solid var(--neon-purple);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.prediction-area {
    font-weight: 600;
    color: var(--neon-purple);
    font-size: 17px;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.prediction-confidence {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 15px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--neon-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.prediction-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.report-action-plan {
    margin-top: 25px;
}

.action-group {
    margin-bottom: 30px;
}

.action-group-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 245, 255, 0.2);
}

.action-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.action-item:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.15);
}

.action-item.urgent {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.02));
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.action-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.action-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.action-timeline {
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(0, 245, 255, 0.1);
    padding: 6px 14px;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.action-reason {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.6;
}

.action-steps {
    list-style: none;
    padding: 0;
}

.action-steps li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.action-steps li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--neon-cyan);
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.report-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.recommendation-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.3);
}

.recommendation-icon {
    font-size: 40px;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.4));
}

.recommendation-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 17px;
}

.recommendation-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.report-resources {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateX(5px);
}

.resource-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.4));
}

.resource-info {
    flex: 1;
}

.resource-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.resource-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.report-summary-box {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(139, 92, 246, 0.15));
    color: var(--text-primary);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.2);
}

.report-summary-box h3 {
    color: var(--neon-cyan);
    margin-bottom: 16px;
    font-size: 22px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.report-summary-box p {
    opacity: 0.9;
    line-height: 1.8;
    font-size: 15px;
}

.report-dimension-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .report-dimension-grid {
        grid-template-columns: 1fr;
    }
    
    .report-tests-grid {
        grid-template-columns: 1fr;
    }
    
    .report-traits {
        grid-template-columns: 1fr;
    }
    
    .report-recommendations {
        grid-template-columns: 1fr;
    }
}

.dimension-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dimension-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.dimension-score {
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.dimension-bar {
    height: 8px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.dimension-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.print-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(139, 92, 246, 0.3));
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.print-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.4), rgba(139, 92, 246, 0.4));
}

@media print {
    .print-button {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .app-footer {
        display: none;
    }
    
    .report-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid rgba(0, 245, 255, 0.2);
        background: white;
    }
    
    body {
        background: white;
    }
    
    body::before {
        display: none;
    }
}
