/* CC版权按钮样式 - 沿用tag样式并加粗 */
.cc-license-tag {
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cc-license-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cc-license-tag svg {
    width: 12px;
    height: 12px;
}

/* 版权声明展开区域样式 */
.cc-license-notice {
    margin: 1rem 0;
    padding: 0;
    animation: slideDown 0.3s ease-out;
}

.license-content {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #4a90e2;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.license-content p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.license-content a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.license-content a:hover {
    text-decoration: underline;
    color: #357abd;
}

.license-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 50%;
    color: #666;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(0,0,0,0.2);
    color: #333;
}

/* 动画效果 */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tags {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .license-content {
        padding: 1.5rem 1rem 1rem;
    }
}