/* メインスタイルシート */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    user-select: none;
}

/* Cesiumコンテナ */
#cesiumContainer {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* フォント設定 */
.japanese-text {
    font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}

/* ローディング画面 */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    z-index: 200;
    backdrop-filter: blur(10px);
}

.loading-subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .ui-overlay {
        font-size: 12px;
    }
    
    .status-panel,
    .time-panel,
    .view-controls {
        padding: 10px;
        font-size: 11px;
    }
    
    .view-button {
        padding: 6px 10px;
        font-size: 10px;
    }
}