/*
Theme Name: WorthRanker
Theme URI: https://worthranker.com
Author: WorthRanker Team
Author URI: https://worthranker.com
Description: 一个简洁、现代的 WordPress 主题，专为 WorthRanker 网站设计。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: worthranker
Tags: responsive, modern, clean
*/

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif !important;
    margin: 0 auto;
}

#page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 主内容区域 */
.site-main {
    flex: 1;
    margin: 80px 0;
}

/* 全局卡片悬浮效果 */
.card-hover-effect {
    transition: transform 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 移动端内容区域 */
    .container {
        padding: 0 15px;
    }

    .site-main {
        margin: 40px 0;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}


.language-switcher {
    margin-right: 0 !important;
    line-height: 0 !important;
}