/*
Theme Name: Clash Download Theme
Description: A WordPress theme that replicates the clash.download website design
Author: Your Name
Author URI: https://yourwebsite.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blue, white, responsive, clean, technology
Text Domain: clash-theme
*/
/* --- New Styles for Download Pages (Light Theme Replica) --- */

body.theme-light {
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --text-white: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --primary: #475569;
}

/* Light Theme Header Override */
body.theme-light .site-header {
    background: #334155;
    border-bottom: none;
}

body.theme-light .site-header .logo,
body.theme-light .nav-menu a,
body.theme-light .header-right .btn-ghost {
    color: #fff !important;
}

/* Light Theme Hero */
body.theme-light .hero {
    background: #475569;
    color: #fff;
    padding-bottom: 60px;
}

body.theme-light .hero h1,
body.theme-light .hero .hero-desc {
    color: #fff;
}

body.theme-light .hero-notice {
    background: #fce7f3;
    color: #9d174d;
    border: 1px solid #fbcfe8;
    padding: 12px 24px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
}

/* Client Card Enhanced */
.client-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.client-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.client-card .ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #f97316;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 12px;
    z-index: 10;
}

.client-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-icon img,
.client-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-icon svg {
    color: #334155;
}

.client-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.client-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
    display: block;
}

.client-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 99px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 500;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
}

.btn-gray {
    background: #f3f4f6;
    color: #4b5563;
}

.btn-gray:hover {
    background: #e5e7eb;
}

.btn-blue {
    background: #475569;
    color: white;
}

.btn-blue:hover {
    background: #334155;
}

.btn-purple {
    background: #64748b;
    color: white;
}

.btn-purple:hover {
    background: #475569;
}

/* Apple ID Section */
.apple-id-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.apple-id-card.orange-top {
    border-top: 4px solid #f97316;
}

.apple-id-card.blue-top {
    border-top: 4px solid #3b82f6;
}

/* Example */

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 8px 24px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #6b7280;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    border: none;
}

.filter-tab.active {
    background: #475569;
    color: white;
}

/* Simple Footer for Landing Pages */
.simple-footer {
    text-align: center;
    padding: 60px 0;
    color: #9ca3af;
    font-size: 13px;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

/* FAQ Light overrides */
body.theme-light .faq-trigger {
    background: #fff;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

body.theme-light .faq-trigger:hover {
    background: #f9fafb;
}

body.theme-light .faq-content {
    background: #fff;
    color: #4b5563;
}