﻿:root {
      --primary-color: rgb(88,86,214);
      --primary-hover: rgb(70,68,190);
      --primary-light: rgba(88,86,214,0.08);
      --accent-color: #FF9500;
      --accent-hover: #E08200;
      --text-dark: #1C1C1E;
      --text-gray: #8E8E93;
      --bg-light: #F2F2F7;
      --bg-white: #FFFFFF;
      --border-color: #E5E5EA;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 10px 30px rgba(88,86,214,0.08);
      --shadow-lg: 0 15px 40px rgba(0,0,0,0.1);
      --max-width: 1200px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--bg-light);
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .site-header {
      background-color: var(--bg-white);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--primary-color);
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      padding: 8px 12px;
      border-radius: 6px;
    }
    .desktop-nav a:hover {
      color: var(--primary-color);
      background-color: var(--primary-light);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-download-top {
      background-color: var(--primary-color);
      color: var(--bg-white);
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(88,86,214,0.3);
    }
    .btn-download-top:hover {
      background-color: var(--primary-hover);
      transform: translateY(-1px);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--text-dark);
      transition: 0.3s;
    }
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-menu {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--bg-white);
      z-index: 1002;
      box-shadow: var(--shadow-lg);
      transition: 0.3s ease;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    .drawer-menu.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      color: var(--text-gray);
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .drawer-nav a {
      font-size: 16px;
      font-weight: 600;
      padding: 10px 14px;
      border-radius: 8px;
    }
    .drawer-nav a:hover {
      background-color: var(--primary-light);
      color: var(--primary-color);
    }
    .drawer-download-btn {
      margin-top: 30px;
      background-color: var(--accent-color);
      color: var(--bg-white);
      text-align: center;
      padding: 12px;
      border-radius: 8px;
      font-weight: bold;
    }
    .inner-banner {
      background: linear-gradient(135deg, var(--primary-color) 0%, #3d3b9e 100%);
      color: var(--bg-white);
      padding: 50px 0;
    }
    .inner-banner h1 {
      font-size: 36px;
      font-weight: 800;
    }
    .tags-container {
      padding: 80px 0;
    }
    .tags-index-title {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 50px auto;
    }
    .tags-index-title h2 {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .tags-index-title p {
      color: var(--text-gray);
      font-size: 15px;
    }
    .tag-large-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .tag-large-card {
      background-color: var(--bg-white);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }
    .tag-large-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-color);
    }
    .tag-large-card h3 {
      font-size: 18px;
      font-weight: bold;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    .tag-large-card p {
      font-size: 13px;
      color: var(--text-gray);
      margin-bottom: 16px;
    }
    .tag-large-card .btn-tag {
      display: inline-block;
      background-color: var(--primary-light);
      color: var(--primary-color);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: bold;
    }
    .tag-large-card:hover .btn-tag {
      background-color: var(--primary-color);
      color: var(--bg-white);
    }
    .tag-list-all {
      background-color: var(--bg-white);
      border-radius: 24px;
      padding: 50px 40px;
      box-shadow: var(--shadow-sm);
      margin-top: 60px;
    }
    .tag-list-all h3 {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 30px;
      border-left: 4px solid var(--primary-color);
      padding-left: 12px;
    }
    .tag-pool {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .tag-pool-item {
      background-color: var(--bg-light);
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-dark);
      border: 1px solid var(--border-color);
    }
    .tag-pool-item:hover {
      background-color: var(--primary-color);
      color: var(--bg-white);
      border-color: var(--primary-color);
    }
    .site-footer {
      background-color: #1c1936;
      color: rgba(255,255,255,0.7);
      padding: 70px 0 20px 0;
    }
    .footer-container {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .footer-brand .logo span {
      color: var(--bg-white);
    }
    .brand-desc {
      font-size: 14px;
      line-height: 1.7;
    }
    .footer-container h4 {
      color: var(--bg-white);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    .footer-container h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 30px;
      height: 2px;
      background-color: var(--primary-color);
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 12px;
    }
    .footer-links ul li a:hover {
      color: var(--bg-white);
      padding-left: 5px;
    }
    .footer-meta ul {
      list-style: none;
    }
    .footer-meta ul li {
      margin-bottom: 12px;
    }
    .footer-meta ul li a:hover {
      color: var(--bg-white);
      padding-left: 5px;
    }
    .footer-contact p {
      font-size: 14px;
      margin-bottom: 12px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 50px;
      padding-top: 20px;
      font-size: 13px;
      text-align: center;
    }
    .footer-bottom-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    @media (max-width: 992px) {
      .tag-large-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .desktop-nav, .btn-download-top {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .tag-large-grid {
        grid-template-columns: 1fr;
      }
      .tag-list-all {
        padding: 30px 20px;
      }
    }