/* ===== 开云体育官方网站 - 主样式表 ===== */
/* domain: go-login-kaiyun.com */

:root {
    --primary: #0a2a6e;
    --secondary: #1565c0;
    --accent: #00b0ff;
    --accent2: #ff6f00;
    --text: #1a1a2e;
    --text-light: #555;
    --bg: #f4f7fc;
    --white: #fff;
    --border: #e0e8f5;
    --shadow: 0 4px 24px rgba(10,42,110,0.10);
    --radius: 10px;
    --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.7;
}

a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

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

/* ===== 顶部通知条 ===== */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 6px 0;
    text-align: center;
}
.top-bar a { color: var(--accent); }

/* ===== 导航 ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.logo span { letter-spacing: 1px; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    white-space: nowrap;
}
.nav a:hover, .nav a.active {
    background: var(--primary);
    color: var(--white);
}
.nav-cta {
    background: var(--accent2) !important;
    color: var(--white) !important;
    border-radius: 6px;
    padding: 8px 18px !important;
    font-weight: 600 !important;
}

/* ===== 搜索栏 ===== */
.search-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(10,42,110,0.08);
}
.search-form input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    outline: none;
    background: var(--white);
    color: var(--text);
}
.search-form button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background var(--transition);
}
.search-form button:hover { background: var(--primary); }

/* ===== 汉堡菜单 ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }

/* ===== Banner轮播 ===== */
.banner {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    min-height: 520px;
}
.banner-slides { display: flex; transition: transform 0.6s cubic-bezier(.4,0,.2,1); }
.banner-slide {
    min-width: 100%;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.banner-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.banner-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 680px;
}
.banner-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.banner-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.banner-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.banner-tag {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(4px);
}
.btn-primary {
    display: inline-block;
    background: var(--accent2);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(255,111,0,0.35);
}
.btn-primary:hover { background: #e65100; transform: translateY(-2px); color: var(--white); }
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin-left: 12px;
    transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.banner-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
}
.banner-dot.active { background: var(--white); width: 28px; border-radius: 5px; }
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.banner-arrow:hover { background: rgba(255,255,255,0.3); }
.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }

/* ===== 统计数字条 ===== */
.stats-bar {
    background: var(--primary);
    padding: 28px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item { color: var(--white); }
.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== 通用区块 ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--white); }
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}
.section-title p { color: var(--text-light); font-size: 15px; max-width: 560px; margin: 0 auto; }
.section-title .title-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ===== 品牌介绍 ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-text h2 { font-size: 28px; color: var(--primary); margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.value-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 14px 16px;
    border-left: 3px solid var(--accent);
}
.value-item strong { color: var(--primary); display: block; margin-bottom: 4px; }
.value-item span { font-size: 13px; color: var(--text-light); }
.about-img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 360px; object-fit: cover; }

/* ===== 视频区块 ===== */
.video-section { background: var(--primary); padding: 70px 0; }
.video-section .section-title h2 { color: var(--white); }
.video-section .section-title p { color: rgba(255,255,255,0.7); }
.video-section .title-line { background: linear-gradient(90deg, var(--accent), var(--accent2)); }

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.video-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity var(--transition);
}
.video-card:hover .video-play-btn { opacity: 1; }
.play-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform var(--transition);
}
.video-card:hover .play-icon { transform: scale(1.12); }
.video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent2);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
}
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}
.video-info { padding: 14px; }
.video-info h4 { color: var(--white); font-size: 14px; margin-bottom: 6px; line-height: 1.4; }
.video-meta { display: flex; gap: 14px; font-size: 12px; color: rgba(255,255,255,0.5); }
.video-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== 服务模块 ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,42,110,0.15); border-color: var(--accent); }
.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}
.service-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.service-card .service-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
}

/* ===== 案例模块 ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.case-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: all var(--transition);
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,42,110,0.15); }
.case-img { width: 180px; flex-shrink: 0; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.case-card:hover .case-img img { transform: scale(1.06); }
.case-body { padding: 20px; flex: 1; }
.case-tag {
    display: inline-block;
    background: var(--bg);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.case-body h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.case-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== 新闻模块 ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,42,110,0.15); }
.news-img { overflow: hidden; aspect-ratio: 16/9; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-body { padding: 18px; }
.news-cat {
    display: inline-block;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.news-body h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.news-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.news-date { font-size: 12px; color: #aaa; margin-top: 10px; }

/* ===== 用户评价 ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent);
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-text { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-text::before { content: '"'; font-size: 28px; color: var(--accent); line-height: 0; vertical-align: -10px; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.author-info strong { display: block; font-size: 14px; color: var(--primary); }
.author-info span { font-size: 12px; color: #aaa; }
.stars { color: #ffb300; font-size: 13px; margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}
.faq-question {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question.open { background: var(--primary); color: var(--white); }
.faq-icon { font-size: 20px; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-answer.open { max-height: 200px; padding: 16px 22px; }

/* ===== 合作伙伴 ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.partner-logo {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    min-height: 60px;
    transition: all var(--transition);
}
.partner-logo:hover { box-shadow: 0 8px 24px rgba(10,42,110,0.15); color: var(--primary); }

.process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 24px;
}
.process-step {
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-num {
    width: 36px; height: 36px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.step-text { font-size: 14px; color: var(--text); font-weight: 500; }
.step-arrow { font-size: 20px; color: var(--accent); margin: 0 8px; }

/* ===== 联系模块 ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3 { font-size: 22px; color: var(--primary); margin-bottom: 20px; }
.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 40px; height: 40px;
    background: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 13px; color: var(--text-light); margin-bottom: 2px; }
.contact-item span { font-size: 15px; color: var(--text); font-weight: 500; }
.map-placeholder {
    background: linear-gradient(135deg, var(--bg), #dce8f5);
    border-radius: var(--radius);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 15px;
    border: 2px dashed var(--border);
    margin-top: 20px;
}

/* ===== 页脚 ===== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-qrcodes { display: flex; gap: 20px; margin-top: 16px; }
.qrcode-item { text-align: center; }
.qrcode-item img { width: 80px; height: 80px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.2); }
.qrcode-item p { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--white); }

/* ===== 面包屑 ===== */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb span { margin: 0 6px; }

/* ===== 内页Hero ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow); }
    .nav.open { display: flex; }
    .hamburger { display: flex; }
    .banner-content h1 { font-size: 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .case-card { flex-direction: column; }
    .case-img { width: 100%; height: 180px; }
    .process-steps { flex-direction: column; align-items: flex-start; }
    .step-arrow { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .banner-arrow { display: none; }
}
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .section { padding: 48px 0; }
    .banner { min-height: 360px; }
    .banner-slide { min-height: 360px; }
    .banner-content h1 { font-size: 22px; }
    .section-title h2 { font-size: 24px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values { grid-template-columns: 1fr; }
}

/* ===== 懒加载 ===== */
img[data-src] { opacity: 0; transition: opacity 0.4s; }
img.loaded { opacity: 1; }

/* ===== 回到顶部 ===== */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px; height: 44px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(10,42,110,0.3);
    z-index: 999;
    text-decoration: none;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--primary); transform: translateY(-3px); color: var(--white); }
