/* 液态风格基础变量 */
:root {
    --scq-bg: #fff;
    --scq-glass: rgba(255,255,255,0.6);
    --scq-blur: blur(18px);
    --scq-radius: 22px;
    --scq-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.12);
    --scq-primary: #1677ff;
    --scq-secondary: #a5b4fc;
    --scq-text: #222;
    --scq-muted: #6b7280;
}
body {
    background: var(--scq-bg);
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
    color: var(--scq-text);
    margin: 0;
    min-height: 100vh;
}
.scq-home-container {
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.scq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px 6px 10px; /* 缩小padding */
    background: var(--scq-glass);
    backdrop-filter: var(--scq-blur);
    border-radius: 0;
    box-shadow: var(--scq-shadow);
    position: sticky;
    top: 0;
    z-index: 10;
}
.scq-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.scq-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(22,119,255,0.08);
    background: #fff;
}
.scq-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--scq-primary);
    letter-spacing: 1px;
}
.scq-search-bar {
    flex: 1;
    margin: 0 8px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(22, 119, 255, 0.08);
    padding: 0 12px;
    min-width: 0;
    max-width: 100vw;
    height: 38px;
    backdrop-filter: blur(10px);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.scq-search-bar:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(22, 119, 255, 0.12);
    border-color: rgba(22, 119, 255, 0.2);
}
.scq-search-bar:focus-within {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(22, 119, 255, 0.15);
    border-color: rgba(22, 119, 255, 0.3);
}
.scq-search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: var(--scq-text);
    flex: 1;
    height: 36px;
    padding: 0 8px;
    min-width: 0;
}
.scq-search-bar input::placeholder {
    color: rgba(107, 114, 128, 0.7);
}
.scq-icon-search {
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg fill="%236b7280" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21 21l-4.35-4.35m2.1-5.4a7.5 7.5 0 11-15 0 7.5 7.5 0 0115 0z" stroke="%236b7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>') no-repeat center/contain;
    opacity: 0.6;
    margin-left: 0;
    flex-shrink: 0;
}
.scq-info-btn {
    color: var(--scq-primary);
    background: var(--scq-glass);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(22,119,255,0.04);
    text-decoration: none;
}
.scq-icon-info {
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg fill="%231677ff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" stroke="%231677ff" stroke-width="2" fill="none"/><rect x="11" y="10" width="2" height="6" rx="1" fill="%231677ff"/><rect x="11" y="7" width="2" height="2" rx="1" fill="%231677ff"/></svg>') no-repeat center/contain;
}
/* Banner */
.scq-banner-section {
    margin: 4px 0 0 0; /* 缩小间距 */
    padding: 0;
}
.scq-banner-swiper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--scq-shadow);
    background: var(--scq-glass);
    backdrop-filter: var(--scq-blur);
}
/* 增大banner高度 */
.scq-banner-wrapper {
    width: 100%;
    height: 170px; /* 增大高度 */
    display: flex;
    align-items: center;
    position: relative;
}
.scq-banner-slide {
    min-width: 100%;
    height: 170px;
    background-size: cover;
    background-position: center;
    border-radius: var(--scq-radius);
    transition: opacity 0.5s;
    cursor: pointer;
}
.scq-banner-slide img {
    border-radius: 0 !important;
}
.scq-banner-pagination {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}
.scq-banner-bullet {
    width: 18px;
    height: 6px;
    border-radius: 6px;
    background: var(--scq-secondary);
    opacity: 0.5;
    transition: all 0.3s;
}
.scq-banner-bullet.active {
    background: var(--scq-primary);
    opacity: 1;
}
/* 分类 */
.scq-category-section {
    margin: 4px 0 0 0; /* 缩小间距 */
    padding: 0;
}
.scq-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    background: var(--scq-glass);
    border-radius: 22px;
    box-shadow: var(--scq-shadow);
    padding: 10px 0;
    backdrop-filter: var(--scq-blur);
}
.scq-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
.scq-category-item:active {
    transform: scale(0.96);
}
/* 流光渐变动画 */
@keyframes scq-glow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.scq-glow-text {
  background: linear-gradient(90deg, #1677ff, #a5b4fc, #ff7ce5, #1677ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: scq-glow 2.5s linear infinite;
}
/* 分类标签悬浮 */
.scq-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
  box-shadow: 0 2px 8px rgba(22,119,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scq-category-icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 10px;
}
.scq-category-icon i {
    font-size: 24px;
    color: var(--scq-primary);
}
.scq-category-name {
    font-size: 13px;
    color: var(--scq-text);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}
.scq-category-tag {
    font-size: 10px;
    color: #fff;
    background: var(--scq-primary);
    border-radius: 8px;
    padding: 2px 8px;
    box-shadow: 0 2px 8px rgba(22,119,255,0.08);
    position: absolute;
    top: -6px;
    right: -8px;
    z-index: 2;
    margin: 0;
}
.scq-category-tag svg {
  width: 18px;
  height: 18px;
  display: block;
}
.scq-category-tag, .scq-featured-tag {
  width: 22px;
  height: 22px;
  background: none !important;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  margin: 0;
  padding: 0;
}
.scq-category-tag svg .flame-main, .scq-featured-tag svg .flame-main {
  transform-origin: 50% 80%;
  animation: flame-flicker 1s infinite alternate cubic-bezier(.7,0,.3,1);
}
.scq-category-tag svg .flame-inner, .scq-featured-tag svg .flame-inner {
  animation: flame-color 1.2s infinite alternate;
}
@keyframes flame-flicker {
  0% { transform: scaleY(1) scaleX(1); }
  30% { transform: scaleY(1.08) scaleX(0.96) rotate(-2deg); }
  60% { transform: scaleY(0.92) scaleX(1.04) rotate(2deg); }
  100% { transform: scaleY(1) scaleX(1); }
}
@keyframes flame-color {
  0% { fill: #ffd54f; }
  100% { fill: #fff176; }
}
/* 精选群组 */
.scq-featured-section {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
    padding: 0;
}
.scq-featured-groups {
    display: flex;
    gap: 8px;
    background: var(--scq-glass);
    border-radius: 22px;
    box-shadow: var(--scq-shadow);
    padding: 10px 0;
    overflow-x: auto;
    backdrop-filter: var(--scq-blur);
}
.scq-featured-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}
.scq-featured-item:active {
    transform: scale(0.96);
}
/* 精选群组标签悬浮 */
.scq-featured-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(22,119,255,0.08);
    object-fit: cover;
    position: relative;
}
.scq-featured-tag {
    font-size: 10px;
    color: #fff;
    background: var(--scq-primary);
    border-radius: 8px;
    padding: 2px 8px;
    box-shadow: 0 2px 8px rgba(22,119,255,0.08);
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 2;
    margin: 0;
}
.scq-featured-tag svg {
  width: 18px;
  height: 18px;
  display: block;
}
.scq-featured-title {
    font-size: 12px;
    color: #222;
    text-align: center;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-width: 60px;
    font-weight: 500;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    animation: none;
}
/* Tabs */
.scq-tabs-section {
    margin: 4px 0 0 0; /* 缩小间距 */
    padding: 0;
}
.scq-tabs-header {
    display: flex;
    background: var(--scq-glass);
    border-radius: 22px 22px 0 0;
    box-shadow: none;
    border-bottom: none;
    overflow: hidden;
}
.scq-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--scq-muted);
    cursor: pointer;
    background: transparent;
    border-bottom: none !important;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}
.scq-tab.active {
    color: var(--scq-primary);
    background: transparent;
    font-weight: 600;
    /* 去除下划线/指示条 */
    border-bottom: none !important;
}
.scq-tabs-content {
    background: var(--scq-glass);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 2px 8px rgba(22,119,255,0.04);
    padding: 6px 0 12px 0;
    min-height: 120px;
    backdrop-filter: var(--scq-blur);
}
.scq-group-list {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0 6px;
}
.scq-group-list.active {
    display: flex;
}
.scq-group-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(22,119,255,0.045);
    padding: 10px 14px;
    gap: 12px;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}
.scq-group-item:active {
    box-shadow: 0 4px 16px rgba(22,119,255,0.10);
    transform: scale(0.98);
}
.scq-group-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f4f6;
}
.scq-group-info {
    flex: 1;
    min-width: 0;
}
.scq-group-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--scq-text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scq-group-tag {
    font-size: 11px;
    color: var(--scq-primary);
    background: rgba(22,119,255,0.08);
    border-radius: 6px;
    padding: 2px 8px;
    display: inline-block;
}
.scq-group-btn, .scq-modal-copy {
  background: linear-gradient(135deg, rgba(22,119,255,0.18) 0%, rgba(165,180,252,0.18) 100%);
  color: #1677ff;
  border: none;
  border-radius: 12px;
  padding: 6px 18px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22,119,255,0.10);
  backdrop-filter: blur(10px);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  font-weight: 500;
}
.scq-group-btn:hover, .scq-modal-copy:hover {
  background: linear-gradient(135deg, rgba(22,119,255,0.28) 0%, rgba(165,180,252,0.28) 100%);
  color: #0958d9;
  box-shadow: 0 4px 16px rgba(22,119,255,0.13);
}
.scq-group-btn:active, .scq-modal-copy:active {
  background: linear-gradient(135deg, rgba(22,119,255,0.38) 0%, rgba(165,180,252,0.38) 100%);
  color: #fff;
}
/* 底部导航 */
.scq-bottom-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--scq-glass);
    backdrop-filter: var(--scq-blur);
    border-radius: var(--scq-radius) var(--scq-radius) 0 0;
    box-shadow: 0 -2px 16px rgba(22,119,255,0.08);
    padding: 8px 0 4px 0;
    z-index: 20;
}
.scq-nav-item {
    flex: 1;
    text-align: center;
    color: var(--scq-muted);
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: color 0.2s;
    padding: 6px 0;
}
.scq-nav-item.active {
    color: var(--scq-primary);
}
.scq-nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}
/* 移除自定义SVG图标样式 */
/* .scq-icon-home { background: url('data:image/svg+xml;utf8,<svg fill="%231677ff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3 10.5L12 4l9 6.5V20a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V10.5z" stroke="%231677ff" stroke-width="2" fill="none"/><rect x="9" y="14" width="6" height="6" rx="1" fill="%231677ff"/></svg>') no-repeat center/contain; }
.scq-icon-news { background: url('data:image/svg+xml;utf8,<svg fill="%236b7280" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="5" width="18" height="14" rx="3" stroke="%236b7280" stroke-width="2" fill="none"/><rect x="7" y="9" width="10" height="2" rx="1" fill="%236b7280"/><rect x="7" y="13" width="6" height="2" rx="1" fill="%236b7280"/></svg>') no-repeat center/contain; }
.scq-icon-users { background: url('data:image/svg+xml;utf8,<svg fill="%236b7280" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="4" stroke="%236b7280" stroke-width="2" fill="none"/><circle cx="16" cy="8" r="4" stroke="%236b7280" stroke-width="2" fill="none"/><rect x="2" y="16" width="20" height="4" rx="2" fill="%236b7280"/></svg>') no-repeat center/contain; }
.scq-icon-market { background: url('data:image/svg+xml;utf8,<svg fill="%236b7280" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="11" width="18" height="8" rx="2" stroke="%236b7280" stroke-width="2" fill="none"/><rect x="7" y="7" width="10" height="4" rx="2" fill="%236b7280"/></svg>') no-repeat center/contain; }
.scq-icon-user { background: url('data:image/svg+xml;utf8,<svg fill="%236b7280" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="8" r="4" stroke="%236b7280" stroke-width="2" fill="none"/><rect x="6" y="16" width="12" height="4" rx="2" fill="%236b7280"/></svg>') no-repeat center/contain; } */
/* 模态框、弹窗等可后续补充 */
@media (max-width: 520px) {
    .scq-home-container, .scq-bottom-nav { max-width: 100vw; }
    /* 移除section的padding-left/right: 4vw; 让内容顶到两边 */
    .scq-header, .scq-banner-section, .scq-category-section, .scq-featured-section, .scq-tabs-section { padding-left: 0; padding-right: 0; }
}
/* 模态框液态风格 */
.scq-modal-mask {
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: rgba(30, 41, 59, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}
.scq-modal-content {
    min-width: 320px;
    max-width: 420px;
    background: var(--scq-glass);
    border-radius: var(--scq-radius);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: var(--scq-blur);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 28px 22px 22px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.25s cubic-bezier(.4,2,.6,1);
}
.scq-modal-content.show {
    opacity: 1;
    transform: scale(1);
}
.scq-modal-header {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: var(--scq-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.scq-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--scq-muted);
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.2s;
}
.scq-modal-close:hover {
    color: var(--scq-primary);
}
.scq-modal-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.scq-modal-qrcode {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(22,119,255,0.13);
    object-fit: cover;
    background: rgba(255,255,255,0.85);
    border: 1.5px solid #e0e7ff;
    padding: 8px;
    margin-bottom: 8px;
}
.scq-modal-avatar {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(22,119,255,0.10);
    object-fit: cover;
    background: #fff;
}
.scq-modal-tip {
    font-size: 13px;
    color: var(--scq-muted);
    margin-top: 8px;
    text-align: center;
}
.scq-modal-wx {
    font-size: 15px;
    color: var(--scq-text);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.scq-modal-copy {
    background: var(--scq-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 13px;
    cursor: pointer;
    margin-left: 6px;
    transition: background 0.2s;
}
.scq-modal-copy:active {
    background: #0958d9;
}
.scq-modal-progress {
    width: 100%;
    height: 8px;
    background: #e0e7ff;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}
.scq-modal-bar {
    height: 100%;
    background: linear-gradient(90deg, #1677ff 0%, #a5b4fc 100%);
    border-radius: 6px;
    width: 0;
    transition: width 0.2s;
}
.scq-modal-header input#scq-modal-search {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1.5px solid #e0e7ff;
    background: rgba(255,255,255,0.7);
    font-size: 16px;
    outline: none;
    margin-right: 10px;
    transition: border 0.2s;
}
.scq-modal-header input#scq-modal-search:focus {
    border: 1.5px solid var(--scq-primary);
    background: #fff;
}
.scq-modal-body#scq-modal-search-results {
    width: 100%;
    min-height: 120px;
    max-height: 260px;
    overflow-y: auto;
    padding: 6px 0 0 0;
}
.scq-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f3fa;
    cursor: pointer;
    transition: background 0.18s;
}
.scq-search-result:last-child {
    border-bottom: none;
}
.scq-search-result:active {
    background: rgba(22,119,255,0.06);
}
.scq-search-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 1px 4px rgba(22,119,255,0.07);
}
.scq-search-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.scq-search-title {
    font-size: 15px;
    color: var(--scq-text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scq-search-meta {
    font-size: 12px;
    color: var(--scq-muted);
    display: flex;
    gap: 8px;
    align-items: center;
}
.scq-search-empty {
    text-align: center;
    color: var(--scq-muted);
    font-size: 14px;
    margin: 24px 0 10px 0;
}
@media (max-width: 520px) {
    .scq-modal-content { min-width: 0; max-width: 98vw; padding: 18px 6vw 18px 6vw; }
} 
.scq-hot-badge {
    position: absolute;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #ff4d4f, #ff7875);
    color: #fff;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 6px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(255, 77, 79, 0.3);
    letter-spacing: 1px;
    line-height: 1.1;
    pointer-events: none;
} 
.scq-museum-section {
    padding: 2px 6px 2px 6px !important;
    background: #fff;
    margin-top: 1px !important;
    margin-bottom: 1px !important;
    box-shadow: none !important;
}
.scq-museum-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 2px 5px;
}
.scq-museum-container::-webkit-scrollbar {
    display: none;
}
.scq-museum-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: center;
}
.scq-museum-image-container {
    position: relative;
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}
.scq-museum-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.scq-museum-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4d4f;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
} 

/* 轻应用下载入口样式 */
.scq-light-apps-section {
    margin: 4px 0 0 0;
    padding: 0 6px;
}

.scq-light-apps-card {
    background: var(--scq-glass);
    backdrop-filter: var(--scq-blur);
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--scq-shadow);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scq-light-apps-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border-color: rgba(22, 119, 255, 0.2);
}

.scq-light-apps-card:active {
    transform: translateY(0);
}

.scq-light-apps-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.scq-light-apps-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.scq-light-apps-info {
    flex: 1;
    min-width: 0;
}

.scq-light-apps-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--scq-text);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.scq-light-apps-desc {
    font-size: 13px;
    color: var(--scq-muted);
    margin: 0;
    line-height: 1.4;
}

.scq-light-apps-arrow {
    color: var(--scq-primary);
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scq-light-apps-card:hover .scq-light-apps-arrow {
    opacity: 1;
    transform: translateX(2px);
} 
.scq-copy-btn {
  background: linear-gradient(135deg, #fffbe6 0%, #ffe7ba 100%);
  color: #faad14;
  border: none;
  border-radius: 12px;
  padding: 6px 18px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(250,173,20,0.10);
  margin-left: 8px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.scq-copy-btn:hover {
  background: linear-gradient(135deg, #ffe58f 0%, #ffd666 100%);
  color: #d48806;
  box-shadow: 0 4px 16px rgba(250,173,20,0.13);
}
.scq-copy-btn:active {
  background: linear-gradient(135deg, #ffd666 0%, #fffbe6 100%);
  color: #fff;
} 