```css
/* ===== 酷客影视 · 全站样式 ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #4c1d95;
  --primary-light: #a855f7;
  --accent: #f0abfc;
  --bg: #f5f3ff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.65);
  --text: #1e1b4b;
  --text-muted: #6b7280;
  --text-light: #c4b5fd;
  --border: #ede9fe;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 25px rgba(124, 58, 237, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --blur: blur(20px) saturate(180%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0a1a;
    --bg-card: rgba(30, 20, 50, 0.85);
    --bg-glass: rgba(30, 20, 50, 0.65);
    --text: #e9d5ff;
    --text-muted: #a78bfa;
    --border: #3b2a6b;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.5);
  }
  body {
    background: var(--bg);
    color: var(--text);
  }
  .card, .detail-section, .sidebar, .comment-box, .platform-item, .character-card {
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
  }
  .platform-item, .character-card {
    background: rgba(76, 29, 149, 0.2);
  }
  .card-body p, .detail-section p, .feature-list li {
    color: var(--text-muted);
  }
  .section-title {
    color: var(--text);
  }
  .tag {
    background: rgba(124, 58, 237, 0.3);
    color: var(--accent);
  }
}

/* ===== 基础重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== 容器 ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== 通用链接与图片 ===== */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease, opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0.8;
}

img[loading="lazy"]:hover {
  opacity: 1;
}

/* ===== 头部 ===== */
header {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #a855f7 100%);
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 30px rgba(76, 29, 149, 0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: headerGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, -5%) scale(1.05); }
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.logo h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #f0e6ff, #d8b4fe, #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: logoShine 3s ease-in-out infinite;
  line-height: 1.2;
}

@keyframes logoShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.logo span {
  font-size: 0.9rem;
  color: #ddd6fe;
  display: block;
  margin-top: 5px;
  letter-spacing: 1px;
}

/* ===== 导航 ===== */
nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
  padding: 15px 0 0;
}

nav a {
  color: #e9d5ff;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  transition: width 0.3s ease;
}

nav a:hover {
  color: #fff;
  border-color: transparent;
}

nav a:hover::after {
  width: 100%;
}

/* ===== Hero区域 ===== */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.3), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(240, 171, 252, 0.2), transparent 40%);
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(240, 171, 252, 0.3);
  animation: heroTitle 2s ease-in-out infinite;
}

@keyframes heroTitle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero p {
  font-size: 1.3rem;
  color: #c4b5fd;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== 主内容布局 ===== */
main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.content {
  min-width: 0;
}

/* ===== 内容动画 ===== */
.content > section {
  opacity: 0;
  transform: translateY(30px);
  animation: sectionReveal 0.8s ease-out forwards;
}

.content > section:nth-child(1) { animation-delay: 0.1s; }
.content > section:nth-child(2) { animation-delay: 0.2s; }
.content > section:nth-child(3) { animation-delay: 0.3s; }
.content > section:nth-child(4) { animation-delay: 0.4s; }
.content > section:nth-child(5) { animation-delay: 0.5s; }
.content > section:nth-child(6) { animation-delay: 0.6s; }
.content > section:nth-child(7) { animation-delay: 0.7s; }

@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 区块标题 ===== */
.section-title {
  font-size: 2rem;
  margin: 50px 0 25px;
  padding-left: 15px;
  border-left: 5px solid var(--primary);
  color: var(--primary-dark);
  font-weight: 800;
  position: relative;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3)); }
}

/* ===== 网格卡片 ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card:hover::before {
  transform: scaleX(1);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05));
}

.card-body h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.card:hover .card-body h3 {
  color: var(--primary);
}

.card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 4px;
}

/* ===== 标签 ===== */
.tag {
  display: inline-block;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #6d28d9;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin: 4px 4px 0 0;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
  box-shadow: 0 2px 5px rgba(124, 58, 237, 0.1);
}

.tag:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: scale(1.05);
}

/* ===== 详情区块 ===== */
.detail-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px;
  margin: 30px 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.detail-section:hover {
  box-shadow: var(--shadow-lg);
}

.detail-section h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.detail-section p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}

/* ===== 平台网格 ===== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.platform-item {
  background: rgba(248, 247, 255, 0.8);
  padding: 25px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.platform-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}

.platform-item h4 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ===== 按钮 ===== */
.download-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  font-size: 1rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.98);
}

/* ===== 评论 ===== */
.comment-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.comment-box .user {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
  font-size: 1rem;
}

.comment-box .time {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.comment-box p {
  color: var(--text);
  line-height: 1.6;
}

/* ===== 侧边栏 ===== */
.sidebar {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-md);
  height: fit-content;
  position: sticky;
  top: 20px;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.sidebar:hover {
  box-shadow: var(--shadow-lg);
}

.sidebar h3 {
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  font-size: 1.2rem;
  font-weight: 700;
}

.rank-list {
  list-style: none;
  padding: 0;
}

.rank-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
  align-items: center;
}

.rank-list li:last-child {
  border: none;
}

.rank-list li:hover {
  background: rgba(124, 58, 237, 0.05);
  padding-left: 10px;
  border-radius: var(--radius-sm);
}

.rank-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-right: 10px;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(124, 58, 237, 0.3);
}

/* ===== 角色卡片 ===== */
.character-card {
  display: flex;
  gap: 20px;
  background: rgba(248, 247, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 15px;
  align-items: center;
  transition: var(--transition);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.character-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.character-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  transition: var(--transition);
  flex-shrink: 0;
}

.character-card:hover img {
  border-color: var(--primary-light);
  transform: scale(1.05);
}

.character-info h4 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

.character-info .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 5px 0;
}

.character-info p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

/* ===== 特性列表 ===== */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  padding-left: 10px;
}

.feature-list li::before {
  content: "✦ ";
  color: var(--primary);
  font-weight: bold;
  margin-right: 5px;
}

.feature-list li:hover {
  padding-left: 20px;
  color: var(--primary);
}

/* ===== 页脚 ===== */
footer {
  background: linear-gradient(135deg, #2e1065, #4c1d95);
  color: #c4b5fd;
  padding: 50px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.footer-links a {
  color: #a78bfa;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 5px 10px;
  border-radius: 20px;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 25px;
  border-top: 1px solid rgba(76, 29, 149, 0.5);
  position: relative;
  z-index: 1;
}

.copyright p {
  margin-bottom: 5px;
  line-height: 1.6;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  main {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    margin-top: 40px;
  }
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .header-top {
    flex-direction: column;
    text-align: center;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  nav ul {
    justify-content: center;
    gap: 15px;
  }
  nav a {
    font-size: 0.85rem;
  }
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  .card img {
    height: 200px;
  }
  .section-title {
    font-size: 1.5rem;
    margin: 30px 0 15px;
  }
  .detail-section {
    padding: 20px;
  }
  .character-card {
    flex-direction: column;
    text-align: center;
  }
  .character-card img {
    margin: 0 auto;
  }
  .download-btns {
    justify-content: center;
  }
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .logo h1 {
    font-size: 1.8rem;
  }
  main {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  .card img {
    height: 170px;
  }
  .card-body {
    padding: 12px;
  }
  .card-body h3 {
    font-size: 0.95rem;
  }
  .card-body p {
    font-size: 0.8rem;
  }
  .tag {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
  .hero {
    padding: 40px 15px;
  }
  .hero h2 {
    font-size: 1.6rem;
  }
  nav ul {
    gap: 10px;
  }
  nav a {
    font-size: 0.8rem;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-links a {
    font-size: 0.8rem;
  }
}

/* ===== 滚动动画 ===== */
@media (prefers-reduced-motion: no-preference) {
  .card, .platform-item, .character-card, .comment-box {
    animation: fadeInUp 0.6s ease-out both;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* 滚动进度条 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
  z-index: 9999;
  width: 0;
  transition: width 0.2s ease;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

/* 回到顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

/* 加载动画 */
.loading-spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 毛玻璃效果增强 */
.glass-effect {
  background: var(--bg-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 渐变边框 */
.gradient-border {
  position: relative;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  border: 2px solid transparent;
}

/* 高亮文本 */
.highlight {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* 阴影效果增强 */
.shadow-glow {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2),
              0 0 40px rgba(124, 58, 237, 0.1);
}

/* 卡片悬浮光效 */
.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 171, 252, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}
```