/*
Theme Name: 3D Interactive Blog
Theme URI: https://yourdomain.com
Author: Your Name
Author URI: https://yourdomain.com
Description: A modern 3D interactive blog theme with Three.js effects.
Version: 1.0
Text Domain: 3d-blog
*/

/* 这里包含之前提供的所有CSS样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a2a4a;
    --secondary: #2c3e50;
    --accent: #3498db;
    --light: #ecf0f1;
    --text: #333;
    --shadow: rgba(0, 0, 0, 0.2);
}

body {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* 其余样式与之前提供的相同 */