/**
 * 主题样式美化CSS
 * 提供基本的主题样式覆盖
 */

/* 基本样式调整 */
body.theme-style-enabled {
    transition: background-color 0.3s ease, background-image 0.3s ease;
}

/* 网站标题区域样式 */
body.theme-style-enabled .site-header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

body.theme-style-enabled .site-title a,
body.theme-style-enabled .site-description {
    color: #333;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* 网站Logo样式 */
body.theme-style-enabled .site-logo {
    max-width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* 内容区域样式 */
body.theme-style-enabled .site-content {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
}

/* 容器半透明样式 */
body.theme-style-enabled .container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* 卡片样式美化 */
body.theme-style-enabled .lottery-card,
body.theme-style-enabled .material-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.95);
}

body.theme-style-enabled .lottery-card:hover,
body.theme-style-enabled .material-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 按钮样式美化 */
body.theme-style-enabled .lottery-button,
body.theme-style-enabled .button {
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

body.theme-style-enabled .lottery-button:hover,
body.theme-style-enabled .button:hover {
    transform: translateY(-1px);
}

/* 表格样式美化 */
body.theme-style-enabled table.lottery-table {
    border-radius: 6px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 0.95);
}

body.theme-style-enabled table.lottery-table th {
    background-color: rgba(245, 245, 245, 0.9);
    border-bottom: 2px solid #ddd;
    padding: 12px;
}

body.theme-style-enabled table.lottery-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

body.theme-style-enabled table.lottery-table tr:last-child td {
    border-bottom: none;
}

body.theme-style-enabled table.lottery-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.02);
}

/* 导航菜单美化 */
body.theme-style-enabled .main-navigation {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(248, 249, 250, 0.95);
}

body.theme-style-enabled .main-navigation ul li a {
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* 公告区域透明化 */
body.theme-style-enabled .announcement {
    background-color: rgba(255, 248, 225, 0.7);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* 内容框半透明样式 */
body.theme-style-enabled .wp-block-group,
body.theme-style-enabled .wp-block-column,
body.theme-style-enabled .entry-content > div {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

/* 页脚样式 */
body.theme-style-enabled .site-footer {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(245, 245, 245, 0.9);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
    body.theme-style-enabled .site-content {
        margin: 10px;
        padding: 15px;
    }
    
    body.theme-style-enabled .lottery-card,
    body.theme-style-enabled .material-card {
        margin-bottom: 15px;
    }
} 