/* Sogou Creamy Style (Original Design) */
:root {
    --cr-bg: #FDFBF7; /* Creamy White */
    --cr-orange: #FF6B22;
    --cr-orange-soft: #FFF0E5;
    --cr-text: #4A4036;
    --cr-text-light: #9C8E80;
    --cr-card-bg: #FFFFFF;
    --cr-shadow: 0 12px 24px rgba(74, 64, 54, 0.06);
    --cr-radius: 24px;
}

body {
    margin: 0;
    font-family: "PingFang SC", "Rounded Mplus 1c", "Microsoft YaHei", sans-serif;
    color: var(--cr-text);
    background-color: var(--cr-bg);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; }

/* Navbar */
.cr-nav {
    padding: 24px 0;
    display: flex;
    justify-content: center;
}

.nav-pill {
    background: var(--cr-card-bg);
    padding: 8px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--cr-shadow);
}

.cr-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--cr-orange);
    display: flex; align-items: center; gap: 8px;
}

.nav-menu { display: flex; gap: 24px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--cr-text); }
.nav-link:hover, .nav-link.active { color: var(--cr-orange); }

/* Hero */
.cr-hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-badge {
    display: inline-block;
    background: var(--cr-orange-soft);
    color: var(--cr-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    margin: 0 0 20px;
    color: var(--cr-text);
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    color: var(--cr-text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-cr-primary {
    background: var(--cr-orange);
    color: white;
    padding: 14px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 107, 34, 0.25);
    display: flex; align-items: center; gap: 8px;
}
.btn-cr-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 25px rgba(255, 107, 34, 0.35); }

.btn-cr-sec {
    background: white;
    color: var(--cr-text);
    padding: 14px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--cr-shadow);
}
.btn-cr-sec:hover { background: #fafafa; transform: translateY(-2px); }

/* Soft Cards Grid */
.cr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.cr-card {
    background: var(--cr-card-bg);
    border-radius: var(--cr-radius);
    padding: 40px;
    box-shadow: var(--cr-shadow);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cr-card:hover { transform: scale(1.02); }

.card-tag { font-size: 13px; color: var(--cr-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.card-h3 { font-size: 28px; margin: 10px 0 15px; }
.card-p { color: var(--cr-text-light); font-size: 15px; max-width: 70%; }

.card-viz {
    position: absolute;
    right: -20px; bottom: -20px;
    width: 200px; height: 200px;
    background: var(--cr-orange-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
}

/* Download Section (Minimal List) */
.cr-dl-list {
    max-width: 800px;
    margin: 0 auto 80px;
    background: white;
    padding: 40px;
    border-radius: var(--cr-radius);
    box-shadow: var(--cr-shadow);
}

.dl-item-cr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.dl-item-cr:last-child { border-bottom: none; }

.dic-left { display: flex; align-items: center; gap: 20px; }
.dic-icon {
    width: 50px; height: 50px;
    background: var(--cr-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--cr-text);
}

.dic-info h4 { margin: 0 0 4px; font-size: 16px; }
.dic-info span { font-size: 13px; color: var(--cr-text-light); }

.btn-dl-mini {
    background: var(--cr-bg);
    color: var(--cr-text);
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}
.btn-dl-mini:hover { background: var(--cr-orange); color: white; }

/* Footer */
.cr-footer { text-align: center; color: var(--cr-text-light); font-size: 13px; padding-bottom: 40px; }
