.site_head {
    background: linear-gradient(135deg, #1a7f8f 0%, #2ebfa5 100%);
}

.site_logo {
    margin-top: 17px;
}

.site_channel {
    top: 19px;
}

.title {
    margin: 10px 0 10px;
    line-height: 28px;
}

.macplus-pannel-box .douban {
    margin-top: 10px;
}

.macplus-pannel__head.active .title {
    line-height: 40px;
}

@media (max-width: 767px) {
    .macplus-pannel__head {
        height: auto;
        min-height: 40px;
    }
    
    .macplus-pannel__head.active {
        height: auto;
    }
    
    .macplus-pannel__head.active .title {
        line-height: 1.4;
        font-size: 16px;
        padding: 10px 0;
    }
    
    .macplus-pannel__head .more {
        line-height: 1.4;
        padding-top: 10px;
    }
}

.rating-interactive-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 12px;
    margin: 10px 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-actions-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.heart-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heart-action-btn:hover {
    background: rgba(255, 107, 107, 0.9);
    transform: translateY(-2px);
}

.heart-symbol-icon {
    font-size: 14px;
}

.thumbs-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbs-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.thumbs-action-btn.thumbs-up:hover {
    background: #10b981;
}

.thumbs-action-btn.thumbs-down:hover {
    background: #ef4444;
}

.thumbs-symbol-icon {
    font-size: 14px;
}

.star-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.star-rating-item {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating-item:hover {
    color: #fbbf24;
    transform: scale(1.15);
}

.rating-display-score {
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    margin-left: 6px;
}

.footer-section {
    background: linear-gradient(135deg, #1a7f8f 0%, #2ebfa5 100%);
    padding: 40px 20px 30px;
    text-align: center;
}

.footer-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-site-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-site-name span {
    color: #fff;
}

.footer-nav-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-nav-row a {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-nav-row a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.footer-legal-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-rss-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-rss-row a {
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-rss-row a:hover {
    color: #fff;
}

.footer-copyright-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.back-to-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a7f8f 0%, #2ebfa5 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(26, 127, 143, 0.3);
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 127, 143, 0.4);
}

@media (max-width: 767px) {
    .rating-interactive-box {
        padding: 12px;
    }
    
    .heart-action-btn,
    .thumbs-action-btn {
        padding: 8px 14px;
        font-size: 13px;
        flex: 1;
        min-width: 80px;
        justify-content: center;
    }
    
    .heart-symbol-icon,
    .thumbs-symbol-icon {
        font-size: 16px;
    }
    
    .star-rating-item {
        font-size: 20px;
    }
    
    .rating-display-score {
        font-size: 14px;
    }
    
    .footer-section {
        padding: 30px 15px 20px;
    }
    
    .footer-site-name {
        font-size: 20px;
    }
    
    .footer-nav-row a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .back-to-top-btn {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }
}