.top-bar {
  width: 100%;
  background: #111111;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #1624b2, #c3202f);
  border-image-slice: 1;
  padding: 14px 0 14px 0;  
}

.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

   
    .logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 14px;
      color: #fff;
      text-decoration: none;
      letter-spacing: 0px;
      line-height:13px;
    }

    .blue_c { color: #1624b2; }
    .red_c  { color: #c3202f; }
    .green_c { color:#00ff88; }
    .back-btn {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;      
      transition: all 0.2s;
    }
    .back-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

    /* 히어로 */
    .hero {
      text-align: center;
      padding: 64px 24px 48px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      background-image:url(../images/sub_bg.png);
      background-repeat:no-repeat;
      /*background: #02050b;*/
    }
    .hero-tag {
      display: inline-block;
      font-size: 6px;
      letter-spacing: 3px;
      color: #00ff88;
      background: rgba(79,195,247,0.08);
      border: 1px solid #00ff88;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 10px;
      font-family: 'kbl', sans-serif;
    }
    .hero h1 {
      font-family: 'pretendard', sans-serif;
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 700;
      line-height: 1.3;      
      color: #fff;
    }
    .hero p {
      font-size: 16px;
      color: #dfdfdf;
      max-width: 520px;
      margin: 0 auto;
    }

    /* 본문 */
    .content-wrapper {
      max-width: 800px;
      margin: 0 auto;
      padding: 56px 24px 80px;
    }

    /* 섹션 */
    .section {
      margin-bottom: 64px;
    }
    .section-label {
      font-family: 'Orbitron', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: #4fc3f7;
      margin-bottom: 10px;
    }
    .section h2 {
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .section p {
      color: rgba(255,255,255,0.7);
      margin-bottom: 16px;
      font-size: 16px;
    }

    /* 비교 카드 (자동 vs 수동) */
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 28px 0;
    }
    @media (max-width: 560px) {
      .compare-grid { grid-template-columns: 1fr; }
    }
    .compare-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 24px;
    }
    .compare-card.auto { border-top: 2px solid #4fc3f7; }
    .compare-card.manual { border-top: 2px solid #ef5350; }
    .compare-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .compare-card.auto h3 { color: #4fc3f7; }
    .compare-card.manual h3 { color: #ef5350; }
    .pros-cons-label {
      font-size: 14px;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.35);
      margin-bottom: 0px;
      margin-top: 14px;
    }
    .compare-item {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      padding: 3px 0;
      padding-left: 14px;
      position: relative;
    }
    .compare-item::before {
      content: '·';
      position: absolute;
      left: 0;
      color: rgba(255,255,255,0.3);
    }

    /* 하이라이트 박스 */
    .highlight-box {
      background: rgba(79,195,247,0.05);
      border: 1px solid rgba(79,195,247,0.15);
      border-left: 3px solid #4fc3f7;
      border-radius: 8px;
      padding: 20px 24px;
      margin: 28px 0;
      font-size: 15px;
      color: rgba(255,255,255,0.75);
    }
    .highlight-box strong {
      color: #4fc3f7;
    }
    .highlight-box.red {
      background: rgba(239,83,80,0.05);
      border-color: rgba(239,83,80,0.15);
      border-left-color: #ef5350;
    }
    .highlight-box.red strong { color: #ef5350; }

    /* 확률 테이블 */
    .prob-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      font-size: 14px;
    }
    .prob-table th {
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.5);
      font-weight: 500;
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 12px;
      letter-spacing: 0.5px;
    }
    .prob-table td {
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.65);
    }
    .prob-table tr:hover td {
      background: rgba(255,255,255,0.02);
    }
    .prob-table td:first-child { color: #fff; font-weight: 500; }

    /* 결론 카드 */
    .conclusion-card {
      background: linear-gradient(135deg, rgba(79,195,247,0.06), rgba(239,83,80,0.04));
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 32px 32px 45px 32px;
      text-align: center;
      margin-top: 48px;
    }
    .conclusion-card h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 14px;
      letter-spacing: 2px;
      color: #4fc3f7;
      margin-bottom: 16px;
    }
    .conclusion-card p {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 24px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-btn {
        padding: 14px 30px;
        border-radius: 12px;
        font-size: 15px;  
        cursor: pointer;  
        font-family: 'Pretendard';
        transition: all 0.3s ease;
        background: #1624b2;
        border:1px solid #2f40ec;
        color: white;
        transition: opacity 0.2s;        
    }
    .cta-btn:hover { background: #192be1; }

    /* 푸터 */
    /* 하단 바 */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #000000 0%, #0a0a1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  z-index: 10;
}

.bottom-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 11px;
}

.footer-link {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-stats {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.footer-stat .label {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.footer-stat .value {
  color: #00ff88;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: pulse-text 3s ease-in-out infinite;
}

    .footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 24px;
      text-align: center;
      font-size: 12px;
      color: rgba(255,255,255,0.25);
    }