/* 猜猜网自定义样式 */

/* 全局样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
}

/* ===== 从views文件迁移的样式 ===== */

/* 活动详情页 - 固定竞猜按钮样式 */
.fixed-guess-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 50px;
}

/* 产品介绍折叠动画 */
.product-intro-header {
    transition: background-color 0.3s ease;
}

.product-intro-header:hover {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 8px;
    margin: -8px;
}

.product-intro-content {
    transition: all 0.3s ease;
}

/* 活动列表页 - 产品介绍预览 */
.product-intro-preview {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 4px;
    border-left: 3px solid #3273dc;
    margin-top: 0.5rem;
}

.product-intro-preview p {
    margin: 0;
    line-height: 1.4;
    color: #666;
}

.activity-card:hover .product-intro-preview {
    background: #e8f4fd;
    border-left-color: #209cee;
}

/* 注册页 - 标签页样式 */
.tab-content { 
    display: none; 
}

.tab-content.is-active { 
    display: block; 
}

.tabs li { 
    cursor: pointer; 
}

.tabs li a { 
    color: #4a4a4a; 
}

.tabs li.is-active a { 
    color: #3273dc; 
    border-bottom-color: #3273dc; 
}

/* 商家注册页样式 */
.box {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.notification {
    border-radius: 6px;
}

.content ol, .content ul {
    margin-left: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
}

/* FAQ页 - 手风琴样式 */
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
}

.accordion-header {
    padding: 1rem;
    background-color: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
}

.accordion-header:hover {
    background-color: #e8e8e8;
}

.accordion-header.active {
    background-color: #3273dc;
    color: white;
}

.accordion-content {
    padding: 1rem;
    border-top: 1px solid #dbdbdb;
}

.accordion-header .icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(180deg);
}

/* 商家活动详情页样式 */
.product-intro {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.product-intro img {
    max-width: 100%;
    height: auto;
}

/* 管理员页面样式 */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.timeline-marker.is-success {
    background-color: #48c774;
}

.timeline-marker.is-danger {
    background-color: #f14668;
}

.timeline-content {
    padding-left: 1rem;
}

.file-info {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.file-info a {
    color: #3273dc;
    text-decoration: none;
}

.file-info a:hover {
    text-decoration: underline;
}

.modal-card {
    max-width: 500px;
}

/* 商家审核页面样式 */
.table-container {
    overflow-x: auto;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* 商家资料页样式 - 仅用于商家资料页面的小尺寸图片 */
.merchant-profile .image.is-4by3 {
    width: 150px !important;
    height: 100px !important;
}

.merchant-profile .image.is-4by3 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 活动详情页产品图片样式 */
.activity-detail .image.is-4by3 {
    width: 100% !important;
    max-height: 400px !important;
    height: auto !important;
}

.activity-detail .image.is-4by3 img {
    width: 100% !important;
    max-height: 400px !important;
    height: auto !important;
    object-fit: contain !important;
}

/* 活动列表页产品图片样式 */
.activity-list .image.is-4by3 {
    width: 100% !important;
    max-height: 300px !important;
    height: auto !important;
}

.activity-list .image.is-4by3 img {
    width: 100% !important;
    max-height: 300px !important;
    height: auto !important;
    object-fit: cover !important;
}

/* 活动列表页卡片内图片样式 - 更具体的选择器 */
.activity-list .card .card-image .image.is-4by3 {
    width: 100% !important;
    max-height: 250px !important;
    height: auto !important;
}

.activity-list .card .card-image .image.is-4by3 img {
    width: 100% !important;
    max-height: 250px !important;
    height: auto !important;
    object-fit: cover !important;
}

/* 商家活动详情页产品图片样式 */
.merchant-activity-detail .image.is-4by3 {
    width: 100% !important;
    max-height: 400px !important;
    height: auto !important;
}

.merchant-activity-detail .image.is-4by3 img {
    width: 100% !important;
    max-height: 400px !important;
    height: auto !important;
    object-fit: contain !important;
}

/* 商家创建活动页产品图片样式 */
.merchant-create-activity .image.is-4by3 {
    width: 100% !important;
    max-height: 350px !important;
    height: auto !important;
}

.merchant-create-activity .image.is-4by3 img {
    width: 100% !important;
    max-height: 350px !important;
    height: auto !important;
    object-fit: contain !important;
}

/* 富文本编辑器样式 */
.ql-editor {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.product-intro-preview {
    margin: 1rem 0;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.product-intro-preview img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
}

/* 导航栏样式 */
.navbar.is-primary {
    background: linear-gradient(135deg, #ffffff 0%, #dbf663 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand .navbar-item {
    font-size: 1.5rem;
    font-weight: bold;
}

/* 卡片样式 */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.activity-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-card .content {
    flex-grow: 1;
}

/* 卡片图片样式 */
.card-image {
    position: relative;
    overflow: hidden;
}

/* 活动列表页卡片图片容器样式 */
.activity-list .card .card-image {
    max-height: 250px;
    overflow: hidden;
}

.card-image-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.card-image-overlay .tag {
    border-radius: 20px;
    font-weight: 600;
}

/* 按钮样式 */
.button.is-primary {
    background: linear-gradient(135deg, #b6c1c1 0%, #2cd8c2 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.button.is-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.button.is-danger {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

/* 输入框样式 */
.input, .textarea, .select select {
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input:focus, .textarea:focus, .select select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 标签样式 */
.tag {
    border-radius: 6px;
    font-weight: 600;
}

/* 通知样式 */
.notification {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 分页样式 */
.pagination-link.is-current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

/* 页脚样式 */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin-top: 3rem;
}

.footer a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* 活动详情页样式 */
.activity-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.price-display {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.price-display .title {
    color: #667eea;
    font-size: 3rem;
    font-weight: bold;
}

.guess-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stats-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.stats-card .title {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stats-card .subtitle {
    color: #7a7a7a;
    font-size: 0.9rem;
}

/* 倒计时样式 */
.countdown {
    font-weight: bold;
    color: #ff416c;
}

/* 邀请码样式 */
.invite-code {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
}

/* 商家中心样式 */
.merchant-layout {
    min-height: 100vh;
    display: flex;
}

.merchant-sidebar {
    width: 280px;
    background: #f5f5f5;
    border-right: 1px solid #e5e5e5;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 30;
}

.merchant-main {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    background: #fafafa;
}

.merchant-content {
    padding: 2rem;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    background: white;
}
.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sidebar-item {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background: #f0f0f0;
    color: #3273dc;
    border-left-color: #3273dc;
}

.sidebar-item.is-active {
    background: #3273dc;
    color: white;
    border-left-color: #3273dc;
}

.sidebar-item .icon {
    margin-right: 0.75rem;
    width: 1.25rem;
    text-align: center;
}

.sidebar-item .text {
    font-weight: 500;
}

.sidebar-item .badge {
    margin-left: auto;
    background: #ff3860;
    color: white;
    border-radius: 10px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.top-bar {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3273dc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: #4a4a4a;
}

.user-role {
    font-size: 0.875rem;
    color: #7a7a7a;
}

.logout-btn {
    color: #7a7a7a;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: #f5f5f5;
    color: #ff3860;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a4a4a;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: #f5f5f5;
    color: #3273dc;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.sidebar-overlay.is-active {
    display: block;
}

/* 商家资料页面样式 */
.box {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.field {
    margin-bottom: 1.5rem;
}

.label {
    font-weight: 600;
}

.has-text-danger {
    color: #f14668 !important;
}

/* 审核状态页面样式 */
.steps {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #dbdbdb;
    z-index: 1;
}

.step-item.is-completed:not(:last-child)::after {
    background-color: #48c774;
}

.step-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #dbdbdb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-item.is-active .step-marker {
    background-color: #3273dc;
}

.step-item.is-completed .step-marker {
    background-color: #48c774;
}

.step-item.is-failed .step-marker {
    background-color: #f14668;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: 0.875rem;
    color: #7a7a7a;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.timeline-marker.is-primary {
    background-color: #3273dc;
}

.timeline-marker.is-success {
    background-color: #48c774;
}

.timeline-marker.is-danger {
    background-color: #f14668;
}

.timeline-content {
    padding-left: 1rem;
}

.file-info {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.file-info a {
    color: #3273dc;
    text-decoration: none;
}

.file-info a:hover {
    text-decoration: underline;
}

/* 活动列表页面样式 */
.activity-item {
    transition: all 0.3s ease;
}

.activity-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* 数据分析页面样式 */
.table-container {
    max-height: 300px;
    overflow-y: auto;
}

.table th {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .activity-card {
        margin-bottom: 1rem;
    }
    
    .price-display .title {
        font-size: 2rem;
    }
    
    .navbar-brand .navbar-item {
        font-size: 1.2rem;
    }
    
    .merchant-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .merchant-sidebar.is-active {
        transform: translateX(0);
    }

    .merchant-main {
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .top-bar {
        padding: 1rem;
    }

    .user-info {
        gap: 0.5rem;
    }

    .user-details {
        display: none;
    }

    /* 固定竞猜按钮移动端优化 */
    .fixed-guess-button {
        position: fixed !important;
        bottom: 15px !important;
        right: 15px !important;
        left: 15px !important;
        z-index: 1000 !important;
    }
    
    .fixed-guess-button .button {
        width: 100% !important;
        border-radius: 8px !important;
        height: 50px !important;
        font-size: 16px !important;
    }
    
    /* 移动端模态框优化 */
    .modal-card {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
}

/* 桌面端固定按钮优化 */
@media (min-width: 769px) {
    .fixed-guess-button {
        bottom: 30px;
        right: 30px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.message.is-success {
    background-color: #f0f9ff;
    border-color: #0ea5e9;
}

.message.is-danger {
    background-color: #fef2f2;
    border-color: #ef4444;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3273dc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.progress {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #f0f0f0;
}

.progress::-webkit-progress-bar {
    background: #f0f0f0;
    border-radius: 4px;
}

.progress::-webkit-progress-value {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
} 

.product-intro-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3273dc;
    margin-top: 1rem;
}

.product-intro-content h1,
.product-intro-content h2,
.product-intro-content h3,
.product-intro-content h4,
.product-intro-content h5,
.product-intro-content h6 {
    color: #363636;
    margin-bottom: 0.75rem;
}

.product-intro-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-intro-content ul,
.product-intro-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.product-intro-content li {
    margin-bottom: 0.5rem;
}

.product-intro-content img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
}

.product-intro-content blockquote {
    border-left: 4px solid #dbdbdb;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #666;
}

.product-intro-content code {
    background: #f1f1f1;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.product-intro-content pre {
    background: #f1f1f1;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1rem 0;
}

.product-intro-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.product-intro-content th,
.product-intro-content td {
    border: 1px solid #dbdbdb;
    padding: 0.5rem;
    text-align: left;
}

.product-intro-content th {
    background: #f5f5f5;
    font-weight: bold;
}

/* 主要Footer样式优化 */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important;
    color: #e2e8f0 !important;
    margin-top: 3rem;
    border-top: 3px solid #4299e1;
    position: relative;
    padding: 1.5rem 0;
}

/* Footer内容区域 */
.footer .content {
    color: #e2e8f0 !important;
}

/* Footer标题样式 */
.footer .title {
    color: #f7fafc !important;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Footer段落文字 */
.footer p {
    color: #cbd5e0 !important;
    line-height: 1.6;
}

.footer p strong {
    color: #f7fafc !important;
    font-weight: 600;
}

/* Footer小字 */
.footer small {
    color: #a0aec0 !important;
    font-size: 0.875rem;
}

/* Footer链接样式 */
.footer a {
    color: #90cdf4 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a:hover {
    color: #63b3ed !important;
    text-decoration: underline;
    transform: translateY(-1px);
}

/* Footer链接悬停效果 */
.footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

/* Footer列表样式 */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.footer ul li::before {
    content: "▶";
    color: #4299e1;
    font-size: 0.7em;
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* Footer按钮样式 */
.footer .button {
    background: rgba(66, 153, 225, 0.1) !important;
    color: #90cdf4 !important;
    border: 1px solid rgba(66, 153, 225, 0.3) !important;
    transition: all 0.3s ease;
}

.footer .button:hover {
    background: rgba(66, 153, 225, 0.2) !important;
    color: #63b3ed !important;
    border-color: rgba(66, 153, 225, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2);
}

.footer .button.is-small {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Footer列样式 */
.footer .columns {
    margin-top: 2rem;
}

.footer .column {
    padding: 1rem;
}

/* Footer版权信息 */
.footer .mt-4 {
    border-top: 1px solid rgba(160, 174, 192, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Footer响应式优化 */
@media (max-width: 768px) {
    .footer .columns {
        margin-top: 1.5rem;
    }
    
    .footer .column {
        padding: 0.75rem;
        text-align: center;
    }
    
    .footer .title.is-6 {
        margin-bottom: 0.5rem;
    }
    
    .footer ul li {
        margin-bottom: 0.25rem;
    }
}

/* Footer特殊元素样式 */
.footer .list-unstyled {
    list-style: none;
    padding: 0;
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer .list-unstyled li::before {
    content: none;
}

/* Footer渐变背景增强 */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #63b3ed, #90cdf4);
    opacity: 0.8;
}

/* Footer内容阴影效果 */
.footer .content {
    position: relative;
    z-index: 1;
}

/* Footer链接图标样式 */
.footer .fab {
    font-size: 1.2em;
    margin-right: 0.25rem;
}

/* Footer按钮组样式 */
.footer .buttons.is-centered {
    justify-content: center;
    gap: 0.5rem;
}

/* Footer高对比度模式支持 */
@media (prefers-contrast: high) {
    .footer {
        background: #1a202c !important;
        border-top: 3px solid #ffffff;
    }
    
    .footer .title {
        color: #ffffff !important;
    }
    
    .footer a {
        color: #ffffff !important;
        text-decoration: underline;
    }
    
    .footer a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Footer深色模式优化 */
@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(135deg, #0f1419 0%, #1a202c 100%) !important;
    }
    
    .footer .title {
        color: #f7fafc !important;
    }
    
    .footer p {
        color: #e2e8f0 !important;
    }
    
    .footer a {
        color: #90cdf4 !important;
    }
    
    .footer a:hover {
        color: #63b3ed !important;
    }
} 