﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;}
    body{width:100%;margin:0;overflow-x:hidden;background:#050B14;color:#F8FAFC;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;-webkit-font-smoothing:antialiased;}
    img,video,iframe,embed{max-width:100%;height:auto;display:block;}
    a{text-decoration:none;color:inherit;transition:all .25s ease;}
    
    :root {
      --theme-rgb: rgb(66,70,81);
      --primary: #38BDF8;
      --secondary: #8B5CF6;
      --bg-main: #050B14;
      --bg-card: #0F172A;
      --text-main: #F8FAFC;
      --text-muted: #CBD5E1;
      --text-sub: #94A3B8;
      --border: rgba(148,163,184,0.20);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(5,11,20,.88);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(148,163,184,.16);
    }
    .header-inner{
      width:min(1200px, calc(100% - 32px));
      min-height:72px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      max-width:100%;
      text-decoration:none;
      flex-shrink:0;
    }
    .logo img{
      display:block;
      height:40px;
      width:auto;
      max-width:150px;
      object-fit:contain;
      flex-shrink:0;
    }
    .logo span{
      display:inline-block;
      font-size:18px;
      font-weight:800;
      line-height:1.2;
      color:#F8FAFC;
      white-space:nowrap;
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      white-space:nowrap;
    }
    .desktop-nav::-webkit-scrollbar{display:none;}
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 13px;
      border-radius:999px;
      color:#CBD5E1;
      text-decoration:none;
      font-size:14px;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
    }
    .desktop-nav a:hover{
      color:#F8FAFC;
      background:rgba(56,189,248,.16);
    }
    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border:0;
      border-radius:14px;
      background:rgba(148,163,184,.14);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
    }
    .mobile-menu-btn span{
      display:block;
      width:20px;
      height:2px;
      border-radius:999px;
      background:#F8FAFC;
    }
    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(2,6,23,.62);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:opacity .25s ease, visibility .25s ease;
    }
    .mobile-drawer{
      position:fixed;
      top:0;
      left:0;
      z-index:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:#07111F;
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.42);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(148,163,184,.18);
      flex:0 0 auto;
    }
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;}
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(148,163,184,.14);
      color:#F8FAFC;
      font-size:26px;
      line-height:1;
      cursor:pointer;
      flex:0 0 auto;
    }
    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      -webkit-overflow-scrolling:touch;
      padding:14px;
    }
    .drawer-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .drawer-nav a{
      display:flex;
      align-items:center;
      width:100%;
      min-height:48px;
      padding:13px 14px;
      border-radius:14px;
      background:rgba(148,163,184,.10);
      color:#F8FAFC;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      line-height:1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(148,163,184,.14);
    }
    .drawer-nav a:hover{
      background:rgba(56,189,248,.16);
    }
    body.drawer-open{overflow:hidden;touch-action:none;}
    body.drawer-open .mobile-nav-mask{opacity:1;visibility:visible;pointer-events:auto;}
    body.drawer-open .mobile-drawer{transform:translateX(0);}

    @media (max-width:900px){
      .header-inner{width:min(100% - 24px, 1200px);min-height:64px;gap:12px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
    }

    
    .tags-container {
      width: min(1200px, calc(100% - 32px));
      margin: 60px auto 100px;
    }
    .tags-header {
      text-align: center;
      margin-bottom: 56px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 32px;
    }
    .tags-header h1 {
      font-size: clamp(30px, 4.5vw, 44px);
      font-weight: 800;
      color: #FFF;
      margin: 0 0 16px;
    }
    .tags-header p {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
    }

    .topic-clusters {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      margin-bottom: 64px;
    }
    .cluster-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
    }
    .cluster-card h2 {
      font-size: 18px;
      color: #FFF;
      margin: 0 0 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cluster-card h2::before {
      content: '';
      width: 10px;
      height: 10px;
      background: var(--secondary);
      border-radius: 50%;
    }
    .cluster-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    .cloud-box {
      background: rgba(15,23,42,0.4);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      text-align: center;
    }
    .cloud-box h3 {
      font-size: 20px;
      color: #FFF;
      margin: 0 0 28px;
    }
    .cloud-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .cloud-tag-item {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 8px 16px;
      border-radius: 99px;
      font-size: 14px;
      font-weight: 600;
    }
    .cloud-tag-item:hover {
      background: rgba(56,189,248,0.1);
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-1px);
    }
    .cloud-tag-count {
      background: rgba(255,255,255,0.08);
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 99px;
      margin-left: 8px;
      color: var(--text-sub);
    }

    .site-footer{
      position:relative;
      width:100%;
      background:#020617;
      color:#E5E7EB;
      padding:56px 0 24px;
      overflow:hidden;
      border-top:1px solid rgba(148,163,184,.14);
    }
    .footer-inner{
      width:min(1200px, calc(100% - 32px));
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(260px,1.35fr) repeat(3,minmax(150px,1fr));
      gap:28px;
      align-items:start;
    }
    .footer-brand,.footer-column{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(226,232,240,.78);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column h3{
      margin:0 0 14px;
      font-size:15px;
      color:#fff;
    }
    .footer-column ul{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(226,232,240,.78);
      text-decoration:none;
      font-size:14px;
      line-height:1.55;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{color:#fff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(226,232,240,.62);
      font-size:13px;
    }
    .footer-bottom p{
      margin:0;
      min-width:0;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-bottom a{
      color:rgba(226,232,240,.78);
      text-decoration:none;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    @media (max-width:900px){
      .footer-inner{grid-template-columns:1fr 1fr;gap:24px;}
      .footer-brand{grid-column:1 / -1;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
    }
    @media (max-width:640px){
      .footer-inner{grid-template-columns:1fr;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }