@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

* {
    font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #040814;
    color: #F9F9F9;
    margin: 0;
    padding: 0;
}

.disney-gradient {
    background: linear-gradient(135deg, #0063E5 0%, #004BA8 100%);
}

.glass-effect {
    background: rgba(26, 29, 41, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-enhanced {
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid #00D4FF;
}

.module-card {
    background: rgba(26, 29, 41, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: rgba(0, 99, 229, 0.3);
    background: rgba(26, 29, 41, 0.7);
}

.module-card.active {
    border-color: #0063E5;
    background: rgba(0, 99, 229, 0.1);
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 99, 229, 0.1) 0%, rgba(0, 99, 229, 0.05) 100%);
    border: 1px solid rgba(0, 99, 229, 0.2);
}

.checkbox-custom {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.checkbox-custom:checked {
    background: #0063E5;
    border-color: #0063E5;
}

.checkbox-custom:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: -2px;
    left: 3px;
}

.chart-container {
    position: relative;
    height: 300px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
