﻿:root {
      --primary: rgb(255,149,0);
      --primary-hover: rgb(230,135,0);
      --primary-light: rgba(255,149,0,0.1);
      --bg: #f8f9fa;
      --card-bg: #ffffff;
      --text-main: #212529;
      --text-muted: #6c757d;
      --border: #e9ecef;
      --shadow: 0 4px 20px rgba(0,0,0,0.05);
      --radius: 12px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background: var(--bg); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; }

    
    .header { background: var(--card-bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 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(--text-main); white-space: nowrap; }
    .nav-desktop { display: flex; align-items: center; gap: 24px; }
    .nav-desktop a { font-weight: 500; font-size: 15px; color: var(--text-main); padding: 6px 0; border-bottom: 2px solid transparent; }
    .nav-desktop a:hover { color: var(--primary); border-bottom-color: var(--primary); }
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--card-bg); z-index: 1000; transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 25px 20px; box-shadow: 4px 0 20px rgba(0,0,0,0.15); display: flex; flex-direction: column; gap: 30px; }
    .drawer.active { left: 0; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); }
    .drawer-nav { display: flex; flex-direction: column; gap: 18px; overflow-y: auto; }
    .drawer-nav a { font-size: 16px; font-weight: 500; padding: 10px 12px; border-radius: var(--radius); }
    .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); }

    
    .about-hero { background: linear-gradient(135deg, #111, #222); color: #fff; text-align: center; padding: 60px 20px; border-bottom: 4px solid var(--primary); }
    .about-hero h1 { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 15px; }
    .about-hero p { font-size: 16px; color: #ccc; max-width: 700px; margin: 0 auto; }

    .about-container { max-width: 1000px; margin: 50px auto; padding: 0 20px; display: flex; flex-direction: column; gap: 50px; }
    .content-box { background: var(--card-bg); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
    .content-box h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
    .content-box p { font-size: 15px; color: var(--text-main); line-height: 1.8; margin-bottom: 15px; }

    
    .about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .grid-card { background: var(--card-bg); padding: 30px 20px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center; }
    .grid-card .icon { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
    .grid-card h3 { font-size: 18px; margin-bottom: 10px; }
    .grid-card p { font-size: 13px; color: var(--text-muted); }

    
    .footer { background: #111; color: #888; padding: 60px 20px 20px; font-size: 14px; border-top: 4px solid var(--primary); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid #222; padding-bottom: 40px; }
    .footer-brand { display: flex; flex-direction: column; gap: 15px; }
    .footer-brand .logo span { color: #fff; }
    .footer-section h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 8px; }
    .footer-section h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .footer-contact p { margin-bottom: 8px; font-size: 13px; }
    .friend-links { max-width: 1200px; margin: 20px auto; padding: 20px 0; border-bottom: 1px solid #222; }
    .friend-title { font-weight: 700; color: #fff; margin-bottom: 10px; font-size: 14px; }
    .friend-content { display: flex; flex-wrap: wrap; gap: 15px; }
    .friend-content a { color: #888; font-size: 13px; }
    .friend-content a:hover { color: var(--primary); }
    .footer-bottom { max-width: 1200px; margin: 20px auto 0; text-align: center; font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; }

    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .menu-toggle { display: block; }
      .about-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }