/* Pitch Detector WordPress Plugin CSS */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap');

.pitch-detector-container {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    margin: 20px 0;
}

.pitch-detector-title {
    color: #00f5ff;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

#pitch-detector-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    position: relative;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .pitch-detector-title {
        font-size: 1.2em;
    }
    
    #pitch-detector-app {
        padding: 15px !important;
    }
}
