﻿:root {
      --primary: #D9A441; 
      --primary-hover: #F2C15D;
      --bg-dark: #121212; 
      --bg-card: #1C1C1E;
      --text-light: #F5F5F7;
      --text-muted: #A0A0A5;
      --text-dark: rgb(47,54,64);
      --bg-light: #FAFAFA;
      --border-color: rgba(217, 164, 65, 0.15);
      --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: var(--font-stack);
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    
    .site-header {
      background-color: var(--bg-dark);
      color: var(--text-light);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--border-color);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--primary);
    }

    .logo img {
      height: 40px;
      object-fit: contain;
    }

    .desktop-nav {
      display: flex;
      gap: 2rem;
    }

    .desktop-nav a {
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .desktop-nav a:hover {
      color: var(--primary);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 6px;
      padding: 4px;
    }

    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--text-light);
      transition: var(--transition);
    }

    
    .mobile-nav-mask {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 998;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100%;
      background: var(--bg-dark);
      z-index: 999;
      transition: var(--transition);
      box-shadow: -5px 0 15px rgba(0,0,0,0.5);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      color: var(--text-light);
    }

    .drawer-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }

    .drawer-close {
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 2rem;
      cursor: pointer;
    }

    .drawer-body .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .drawer-body .drawer-nav a {
      font-size: 1.1rem;
      color: var(--text-muted);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding-bottom: 0.5rem;
    }

    .drawer-body .drawer-nav a:hover {
      color: var(--primary);
    }

    
    .hero-layout-05 {
      background: linear-gradient(135deg, #0d0d0d 0%, #1e1911 50%, #121212 100%);
      color: var(--text-light);
      padding: 8rem 2rem 6rem 2rem;
      position: relative;
      text-align: center;
      border-bottom: 3px solid var(--primary);
      overflow: hidden;
    }

    .hero-layout-05::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 30%, rgba(219, 164, 65, 0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-container {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero-tagline {
      display: inline-block;
      border: 1px solid var(--primary);
      color: var(--primary);
      padding: 0.35rem 1rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 2rem;
      border-radius: 20px;
      background: rgba(217, 164, 65, 0.05);
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    .hero-title span {
      display: block;
      color: var(--primary);
      background: linear-gradient(to right, #ffffff 30%, #D9A441 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 3rem auto;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 2rem;
      font-weight: 600;
      border-radius: 4px;
      transition: var(--transition);
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--bg-dark);
      border: 1px solid var(--primary);
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      border-color: var(--primary-hover);
      transform: translateY(-2px);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--text-light);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
    }

    
    .hero-magazine-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(217, 164, 65, 0.2);
      padding-top: 3rem;
    }

    .magazine-card {
      background: rgba(20, 20, 20, 0.7);
      border: 1px solid var(--border-color);
      padding: 1.5rem;
      border-radius: 6px;
      text-align: left;
      transition: var(--transition);
    }

    .magazine-card:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
    }

    .magazine-card-tag {
      font-size: 0.75rem;
      color: var(--primary);
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: block;
    }

    .magazine-card-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 0.5rem;
    }

    
    .main-container {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 1.5rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
      padding-bottom: 0.75rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--primary);
    }

    .sink-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }

    .sink-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.05);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .sink-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(217,164,65,0.15);
      border-color: rgba(217,164,65,0.3);
    }

    .card-image {
      width: 100%;
      height: 240px;
      object-fit: cover;
      background-color: #f0f0f0;
    }

    .card-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .card-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--text-dark);
    }

    .card-summary {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .card-link {
      color: var(--primary);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

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

    
    .tag-cloud-section {
      background-color: var(--bg-dark);
      color: var(--text-light);
      padding: 4rem 2rem;
      text-align: center;
    }

    .tag-container {
      max-width: 800px;
      margin: 2rem auto 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }

    .tag-item {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .tag-item:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(217, 164, 65, 0.1);
    }

    
    .site-footer {
      background-color: var(--bg-dark);
      color: var(--text-light);
      border-top: 3px solid var(--primary);
      padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      margin-top: 1rem;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .footer-column h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.75rem;
    }

    .footer-column ul li a {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .footer-column ul li a:hover {
      color: var(--primary);
      padding-left: 5px;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    
    @media (max-width: 992px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .desktop-nav {
        display: none;
      }
      .mobile-menu-btn {
        display: flex;
      }
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .hero-layout-05 {
        padding: 5rem 1rem 4rem 1rem;
      }
    }