/*
Theme Name: VR New Horizon
Theme URI: https://example.com/
Author: Gemini
Author URI: https://gemini.google.com/
Description: A modern, dark-mode theme for VR technology forums, focusing on the topic of VR as the next mobile terminal.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vr-new-horizon
*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827; /* 深灰蓝背景 */
    color: #d1d5db; /* 浅灰色文字 */
}
.hero-gradient {
    background: radial-gradient(circle, rgba(29, 78, 216, 0.3) 0%, rgba(17, 24, 39, 0) 70%);
}
.card {
    background-color: #1f2937; /* 卡片背景色 */
    border: 1px solid #374151; /* 卡片边框色 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 173, 238, 0.1), 0 4px 6px -2px rgba(0, 173, 238, 0.05);
}
.tag {
    background-color: #374151;
    color: #9ca3af;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.btn-primary {
    background-color: #2563eb;
    color: white;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #1d4ed8;
}
.btn-secondary {
    background-color: #374151;
    color: white;
    transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background-color: #4b5563;
}
