﻿:root {
      --primary-color: rgb(255,45,85);
      --primary-hover: rgb(230,35,75);
      --dark-bg: #060b26;
      --glacial-blue: #1D7BFF;
      --glacial-light: #e6f0ff;
      --deep-sea-ink: #0A1128;
      --silver-white: #f5f7fa;
      --text-dark: #1f2937;
      --text-light: #9ca3af;
      --glass-bg: rgba(255, 255, 255, 0.08);
      --glass-border: rgba(255, 255, 255, 0.15);
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--silver-white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; }
    
    
    .site-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; height: 70px; display: flex; align-items: center; }
    .header-container { width: 1200px; max-width: 95%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    
    .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: 20px; font-weight: 800; line-height: 1; color: var(--text-dark); white-space: nowrap; }
    
    .nav-menu { display: flex; gap: 24px; align-items: center; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: #4b5563; padding: 8px 12px; border-radius: 6px; }
    .nav-menu a:hover { color: var(--primary-color); background: rgba(255,45,85,0.05); }
    
    
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000; transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .mobile-drawer.active { left: 0; }
    .drawer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
    .drawer-content { position: absolute; top: 0; left: 0; width: 300px; height: 100%; background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 30px; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f3f4f6; padding-bottom: 15px; }
    .close-drawer { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-dark); }
    .drawer-nav { display: flex; flex-direction: column; gap: 16px; }
    .drawer-nav a { font-size: 16px; font-weight: 600; padding: 10px 14px; border-radius: 8px; color: #374151; }
    .drawer-nav a:hover { background: rgba(255,45,85,0.08); color: var(--primary-color); }
    
    
    .hero.hero-layout-01 { position: relative; background: radial-gradient(circle at center, #132247 0%, var(--deep-sea-ink) 100%); color: #fff; padding: 100px 0 140px; text-align: center; overflow: hidden; }
    .hero.hero-layout-01::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); pointer-events: none; }
    .hero-container { position: relative; width: 1200px; max-width: 95%; margin: 0 auto; z-index: 10; }
    .hero-tag { display: inline-block; padding: 6px 16px; background: rgba(29, 123, 255, 0.15); border: 1px solid rgba(29, 123, 255, 0.3); color: #00F2FE; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; }
    .hero-title { font-size: 52px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; background: linear-gradient(135deg, #ffffff 30%, #a5c7f7 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero-subtitle { font-size: 18px; color: #b0c4de; max-width: 800px; margin: 0 auto 40px; line-height: 1.8; }
    .hero-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 60px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; font-size: 16px; font-weight: 600; border-radius: 8px; transition: all 0.3s ease; cursor: pointer; }
    .btn-primary { background: linear-gradient(135deg, var(--glacial-blue) 0%, #0056cc 100%); color: #fff; box-shadow: 0 4px 15px rgba(29, 123, 255, 0.4); border: none; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29, 123, 255, 0.6); }
    .btn-secondary { background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border); color: #fff; backdrop-filter: blur(10px); }
    .btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
    
    
    .hero-visual-wrapper { position: relative; width: 900px; max-width: 100%; margin: 0 auto; height: auto; }
    .main-visual-panel { background: rgba(10, 25, 50, 0.6); border: 1px solid var(--glass-border); border-radius: 16px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); backdrop-filter: blur(15px); }
    .panel-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 20px; }
    .panel-dots { display: flex; gap: 6px; }
    .panel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); }
    .panel-dot:nth-child(1) { background: #ff5f56; }
    .panel-dot:nth-child(2) { background: #ffbd2e; }
    .panel-dot:nth-child(3) { background: #27c93f; }
    .panel-title { font-size: 13px; color: #9ca3af; font-family: monospace; }
    .panel-content { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .mock-chart { width: 100%; height: 220px; background: linear-gradient(180deg, rgba(29, 123, 255, 0.15) 0%, transparent 100%); border-radius: 8px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
    .mock-chart::after { content: ''; position: absolute; left: 0; top: 40%; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--glacial-blue), transparent); animation: pulse 3s infinite; }
    .chart-bars { display: flex; justify-content: space-between; width: 100%; padding: 0 10px; align-items: flex-end; height: 150px; }
    .chart-bar { width: 6%; background: rgba(29, 123, 255, 0.4); border-radius: 3px 3px 0 0; transition: height 1s ease; }
    .chart-bar.highlight { background: var(--primary-color); box-shadow: 0 0 15px var(--primary-color); }
    
    
    .floating-card { position: absolute; width: 220px; background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border); border-radius: 12px; padding: 16px; text-align: left; backdrop-filter: blur(10px); transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .floating-card:hover { transform: translateY(-5px); border-color: var(--glacial-blue); background: rgba(29,123,255,0.1); }
    .floating-card .card-icon { font-size: 24px; color: #00F2FE; margin-bottom: 8px; }
    .floating-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #fff; }
    .floating-card p { font-size: 12px; color: #b0c4de; line-height: 1.4; }
    
    .fc-01 { top: -20px; left: -140px; }
    .fc-02 { top: -20px; right: -140px; }
    .fc-03 { bottom: 20px; left: -140px; }
    .fc-04 { bottom: 20px; right: -140px; }
    
    
    .trust-bar { background: #fff; padding: 30px 0; border-bottom: 1px solid #f0f2f5; text-align: center; }
    .trust-container { width: 1200px; max-width: 95%; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
    .trust-item { font-size: 16px; font-weight: 700; color: #6b7280; display: flex; align-items: center; gap: 8px; }
    .trust-item span { color: var(--primary-color); font-size: 22px; }
    
    
    .section-padding { padding: 80px 0; }
    .section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
    .section-header h2 { font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; }
    .section-header p { font-size: 16px; color: #6b7280; }
    
    .grid-container { width: 1200px; max-width: 95%; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .feature-card { background: #fff; border-radius: 12px; padding: 40px 30px; box-shadow: var(--card-shadow); border: 1px solid #f1f5f9; transition: all 0.3s ease; }
    .feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(255,45,85,0.2); }
    .feature-icon { width: 60px; height: 60px; border-radius: 12px; background: rgba(255,45,85,0.06); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--primary-color); margin-bottom: 24px; }
    .feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
    .feature-card p { color: #6b7280; font-size: 14px; line-height: 1.6; }
    
    
    .market-section { background: #060b26; color: #fff; padding: 80px 0; }
    .market-table { width: 100%; border-collapse: collapse; margin-top: 30px; border-radius: 8px; overflow: hidden; }
    .market-table th, .market-table td { padding: 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .market-table th { background: rgba(255,255,255,0.02); font-weight: 600; color: #9ca3af; }
    .market-table tr:hover td { background: rgba(255,255,255,0.02); }
    .trend-up { color: #10b981; font-weight: 600; }
    .trend-down { color: #ef4444; font-weight: 600; }
    
    
    .articles-section { background: #fff; }
    .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .article-card { background: #fdfdfd; border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); border: 1px solid #f3f4f6; transition: all 0.3s ease; display: flex; flex-direction: column; height: 100%; }
    .article-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
    .article-img-wrapper { position: relative; height: 200px; background: #e5e7eb; overflow: hidden; }
    .article-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .article-card:hover .article-img-wrapper img { transform: scale(1.05); }
    .article-info-bar { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 10px 15px; display: flex; justify-content: space-between; color: #fff; font-size: 12px; }
    .article-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
    .article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
    .article-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--primary-color); background: rgba(255,45,85,0.06); padding: 3px 8px; border-radius: 4px; }
    .article-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
    .article-summary { font-size: 13px; color: #6b7280; margin-bottom: 20px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-footer { border-top: 1px solid #f3f4f6; padding-top: 15px; margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #9ca3af; }
    .read-more-link { font-weight: 600; color: var(--primary-color); display: inline-flex; align-items: center; gap: 4px; }
    
    
    .cta-section { background: linear-gradient(135deg, var(--primary-color) 0%, #d1123d 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
    .cta-container { max-width: 800px; margin: 0 auto; padding: 0 15px; position: relative; z-index: 5; }
    .cta-title { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
    .cta-desc { font-size: 18px; opacity: 0.9; margin-bottom: 35px; }
    .cta-btn { background: #fff; color: var(--primary-color); font-weight: 700; box-shadow: 0 5px 20px rgba(0,0,0,0.1); border: none; }
    .cta-btn:hover { background: #f8fafc; color: var(--primary-hover); transform: scale(1.03); }
    
    
    .site-footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; border-top: 1px solid #1e293b; font-size: 14px; }
    .footer-grid { width: 1200px; max-width: 95%; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-about .logo span { color: #fff; }
    .footer-about p { margin: 20px 0; line-height: 1.8; color: #64748b; }
    .footer-col h4 { color: #f8fafc; font-size: 16px; font-weight: 700; margin-bottom: 24px; position: relative; }
    .footer-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--primary-color); }
    .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links-list a:hover { color: #fff; padding-left: 5px; }
    .footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; width: 1200px; max-width: 95%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 12px; color: #64748b; }
    
    @keyframes pulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }
    
    
    @media (max-width: 1200px) {
      .floating-card { position: static; width: auto; max-width: 100%; box-shadow: none; margin-bottom: 15px; backdrop-filter: none; background: rgba(255,255,255,0.03); }
      .hero-visual-wrapper { display: flex; flex-direction: column-reverse; gap: 20px; }
      .fc-01, .fc-02, .fc-03, .fc-04 { top: auto; bottom: auto; left: auto; right: auto; }
      .floating-cards-mobile { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 30px; }
    }
    @media (max-width: 992px) {
      .grid-container, .articles-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-title { font-size: 40px; }
    }
    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle { display: block; }
      .grid-container, .articles-grid, .footer-grid { grid-template-columns: 1fr; }
      .floating-cards-mobile { grid-template-columns: 1fr; }
      .hero-title { font-size: 32px; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 300px; }
    }