/* tem4 现代化设计样式 */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* 顶部导航栏 */
.top-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* 隐藏状态的顶部导航栏 */
.top-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand .brand-link {
    text-decoration: none;
    color: #333;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 搜索框 */
.search-form {
    display: flex;
    align-items: center;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    width: 250px;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* 主菜单 */
.main-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 70px;
    z-index: 999;
    transition: transform 0.3s ease-in-out;
}

/* 隐藏状态的主菜单 */
.main-menu.menu-hidden {
    transform: translateY(-100%);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 菜单导航包装器 */
.menu-nav-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
}

/* 菜单滚动包装器 */
.menu-scroll-wrapper {
    overflow: hidden;
    flex: 1;
    padding: 5px 0;
    max-width: 100%;
    min-width: 0;
}

.menu-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* 菜单箭头样式 */
.menu-arrow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #5a6fd8;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102,126,234,0.2);
    position: absolute;
    z-index: 10;
}

.menu-arrow:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
    border-color: #4c5bc6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

.menu-arrow-left {
    left: -50px;
}

.menu-arrow-right {
    right: -50px;
}

.menu-nav {
    display: flex;
    align-items: center;
    height: 60px;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-nav a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    margin-right: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.menu-nav a:hover::before,
.menu-nav a.active::before {
    left: 0;
}

.menu-nav a:hover,
.menu-nav a.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 主要内容区域 */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

/* 左侧内容区 */
.content-left {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 特色横幅 */
.feature-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* 内容网格 */
.content-grid {
    margin-bottom: 40px;
}

.grid-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.grid-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-right: 20px;
}

.grid-decoration {
    flex: 1;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* 文章卡片 */
.article-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.article-card h3 {
    margin-bottom: 15px;
}

.article-card h3 a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-card h3 a:hover {
    color: #667eea;
}

.article-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 分页 */
.pagination-section {
    margin-top: 40px;
    text-align: center;
}

.pagination,
.pagelist {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a,
.pagination b,
.pagelist a,
.pagelist b {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
    margin: 2px;
}

.pagination a,
.pagelist a {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e9ecef;
}

.pagination a:hover,
.pagelist a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pagination b,
.pagelist b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 分页特殊按钮样式 */
.pagelist .prev,
.pagelist .next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-weight: 600;
}

.pagelist .prev:hover,
.pagelist .next:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* 右侧边栏 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 侧边栏卡片 */
.info-card,
.latest-card,
.popular-card,
.links-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover,
.latest-card:hover,
.popular-card:hover,
.links-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    color: white;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.card-content {
    padding: 20px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 侧边栏列表项 */
.sidebar-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item:hover {
    background: #f8f9fa;
    margin: 0 -20px;
    padding: 12px 20px;
    border-radius: 8px;
}

.sidebar-item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-item a:hover {
    color: #667eea;
}

.sidebar-item .rank {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
    vertical-align: middle;
}

/* 文章详情页样式 */
.article-detail {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    color: #666;
    font-size: 14px;
    display: flex;
    gap: 20px;
}

.article-meta a {
    color: #667eea;
    text-decoration: none;
}

.article-meta a:hover {
    text-decoration: underline;
}

.article-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
}

.article-content p {
    margin-bottom: 20px;
}

/* 黄帝内经内容样式 */
.article-content fieldset {
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    margin: 25px 0;
    padding: 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.article-content fieldset:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.article-content fieldset legend {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-content .layui-field-box {
    padding: 25px;
    background: white;
    border-radius: 0 0 13px 13px;
    line-height: 1.8;
    color: #333;
}

.article-content .layui-field-box p {
    margin-bottom: 15px;
    text-indent: 2em;
    font-size: 15px;
    color: #444;
}

/* 文章导航 */
.article-navigation {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 2px solid #f0f0f0;
    margin-top: 30px;
}

.prev-page, .next-page {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 45%;
}

.prev-page {
    justify-content: flex-start;
}

.next-page {
    justify-content: flex-end;
    text-align: right;
}

.prev-page span, .next-page span {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.prev-page a, .next-page a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 18px;
    border-radius: 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prev-page a:hover, .next-page a:hover {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 搜索结果 */
.search-results {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.search-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.search-info {
    color: #666;
    font-size: 16px;
}

.results-grid {
    display: grid;
    gap: 20px;
}

/* 页脚 */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    color: #666;
    font-size: 14px;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* 友情链接样式 */
.friendly-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.friendly-link-tag {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    text-decoration: none;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    white-space: nowrap;
}

.friendly-link-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .search-input {
        width: 200px;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .content-left {
        padding: 25px;
    }
    
    .feature-banner {
        padding: 40px 25px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .prev-page, .next-page {
        max-width: 100%;
        justify-content: center;
    }
    
    .next-page {
        text-align: center;
    }
    
    .prev-page a, .next-page a {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
    
    .menu-nav {
        flex-wrap: nowrap;
        height: auto;
        padding: 10px 0;
    }
    
    .menu-nav a {
        margin: 5px;
        padding: 10px 15px;
    }
}

/* 药茶大全表格样式 */
.tisana-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.tisana-info-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.tisana-info-table tr:last-child {
    border-bottom: none;
}

.tisana-info-table td {
    padding: 1rem;
    vertical-align: top;
    line-height: 1.6;
}

.tisana-info-table td.label {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 25%;
    border-right: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.tisana-info-table td.value {
    background: #fff;
    color: #333;
    width: 75%;
    font-size: 0.95rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tisana-info-table {
        margin: 1rem 0;
    }
    
    .tisana-info-table td {
        padding: 0.75rem;
    }
    
    .tisana-info-table td.label {
        font-size: 0.85rem;
        width: 30%;
    }
    
    .tisana-info-table td.value {
        font-size: 0.9rem;
        width: 70%;
    }
}

/* 搜索分页样式 */
.search-pagination {
    margin: 30px 0;
    text-align: center;
}
.search-pagination .page-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 3px;
    color: #667eea;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
    font-weight: 500;
}
.search-pagination .page-link:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.search-pagination .current-page {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
    font-weight: 600;
}
.search-pagination .page-ellipsis {
    display: inline-block;
    padding: 10px 8px;
    color: #666;
    font-weight: bold;
}
.search-pagination .prev-page,
.search-pagination .next-page {
    font-weight: 600;
    background: #f8f9fa;
    border-color: #dee2e6;
}
.search-pagination .prev-page:hover,
.search-pagination .next-page:hover {
    background: #764ba2;
    color: #fff;
    border-color: #764ba2;
}

/* 相关推荐 - tem4 风格 */
.article-detail .related-articles {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.article-detail .related-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.article-detail .related-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.article-detail .related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.article-detail .related-item {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.article-detail .related-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
}

.article-detail .related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.article-detail .related-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.article-detail .related-item a:hover {
    color: #667eea;
}

.article-detail .related-date {
    color: #666;
    font-size: 12px;
    font-weight: 400;
}

/* 十二生肖运势导航 */
.zodiac-fortunes-nav {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

.fortune-nav-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fortune-nav-item {
    background: white;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #dee2e6;
    transition: all 0.3s;
}

.fortune-nav-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.fortune-nav-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}
