 <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Noto Sans SC', sans-serif;
      line-height: 1.6;
      background: linear-gradient(to bottom right, #fff7ed, #fef3c7, #fef3c7);
      min-height: 100vh;
      color: #333;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(to right, #eab308, #f59e0b, #f59e0b);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      text-decoration: none;
    }

    .logo-icon {
      background: white;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f59e0b;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .desktop-nav {
      display: none;
      gap: 1.5rem;
    }

    .desktop-nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.25rem;
      transition: opacity 0.3s;
    }

    .desktop-nav a:hover {
      opacity: 0.85;
    }

    .search-box {
      display: none;
      background: white;
      border-radius: 50px;
      padding: 0.5rem 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      align-items: center;
      gap: 0.5rem;
    }

    .search-box input {
      background: transparent;
      border: none;
      outline: none;
      width: 200px;
      padding: 0.25rem;
    }

    .search-btn {
      background: linear-gradient(to right, #f59e0b, #f59e0b);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.25rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }

    .mobile-menu-btn {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .mobile-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: white;
    }

    .mobile-nav.active {
      max-height: 600px;
    }

    .mobile-nav-content {
      padding: 1rem;
    }

    .mobile-search {
      background: #f3f4f6;
      border-radius: 50px;
      padding: 0.5rem 1rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .mobile-search input {
      background: transparent;
      border: none;
      outline: none;
      width: 100%;
      padding: 0.25rem;
    }

    .mobile-nav nav {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .mobile-nav nav a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid #f3f4f6;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    /* Hero */
    .hero {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      margin-bottom: 3rem;
      height: 320px;
      background: linear-gradient(to right, #ea580c, #f59e0b, #eab308);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.2);
    }

    .hero-content {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      padding: 2rem;
      color: white;
    }

    .hero-text h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero-text p {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
      opacity: 0.95;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      color: #ea580c;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }

    .hero-btn:hover {
      box-shadow: 0 7px 15px rgba(234, 88, 12, 0.4);
      transform: translateY(-2px);
    }

    /* Section */
    .section {
      margin-bottom: 4rem;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.875rem;
      font-weight: 700;
      color: #1f2937;
    }

    .section-title i {
      color: #f59e0b;
    }

    .section-line {
      height: 4px;
      width: 64px;
      background: linear-gradient(to right, #f59e0b, #eab308);
      border-radius: 2px;
    }

    .section-more {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      color: #ea580c;
      text-decoration: none;
      font-weight: 500;
      transition: gap 0.3s;
    }

    .section-more:hover {
      gap: 0.5rem;
    }

    /* Grid */
    .manga-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    /* Manga Card */
    .manga-card {
      background: white;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s;
      cursor: pointer;
    }

    .manga-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .manga-cover {
      height: 192px;
      position: relative;
      overflow: hidden;
    }

    .manga-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .manga-cover-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    }

    .manga-genre {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
      background: rgba(255, 255, 255, 0.95);
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #1f2937;
      z-index: 2;
    }

    .manga-new-badge {
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(to right, #ef4444, #ec4899);
      color: white;
      font-size: 0.625rem;
      font-weight: 700;
      padding: 0.25rem 0.75rem;
      border-bottom-right-radius: 0.5rem;
      z-index: 2;
    }

    .manga-info {
      padding: 0.75rem;
    }

    .manga-title {
      font-weight: 700;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #1f2937;
    }

    .manga-desc {
      color: #6b7280;
      font-size: 0.75rem;
      margin-bottom: 0.75rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.4;
    }

    .manga-stats {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #6b7280;
    }

    .manga-stats span {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    /* Popular Cards */
    .popular-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .popular-card {
      background: white;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      display: flex;
      transition: all 0.3s;
      cursor: pointer;
    }

    .popular-card:hover {
      box-shadow: 0 10px 20px rgba(0,0,0,0.12);
      transform: translateX(5px);
    }

    .popular-cover {
      width: 33.333%;
      position: relative;
    }

    .popular-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .popular-info {
      width: 66.667%;
      padding: 1rem;
    }

    .popular-title {
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
      color: #1f2937;
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .stars {
      display: flex;
      color: #facc15;
      font-size: 0.875rem;
    }

    .rating-value {
      color: #6b7280;
      font-size: 0.875rem;
    }

    /* Categories */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .category-card {
      background: white;
      padding: 1rem;
      border-radius: 0.75rem;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s;
      text-decoration: none;
      color: #333;
    }

    .category-card:hover {
      box-shadow: 0 10px 20px rgba(0,0,0,0.12);
      transform: translateY(-4px);
    }

    .category-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.5rem;
    }

    .category-name {
      font-weight: 600;
      font-size: 0.875rem;
      color: #1f2937;
    }

    /* Subscribe */
    .subscribe {
      background: linear-gradient(to right, #f59e0b, #f59e0b, #eab308);
      border-radius: 1rem;
      padding: 2rem 1.5rem;
      margin-bottom: 4rem;
      text-align: center;
      color: white;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .subscribe h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .subscribe p {
      opacity: 0.9;
      margin-bottom: 1.5rem;
    }

    .subscribe-form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 576px;
      margin: 0 auto;
    }

    .subscribe-form input {
      flex: 1;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      border: none;
      outline: none;
    }

    .subscribe-form button {
      background: white;
      color: #ea580c;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 0.5rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: background 0.3s;
    }

    .subscribe-form button:hover {
      background: #f3f4f6;
    }

    .subscribe-notice {
      font-size: 0.875rem;
      opacity: 0.75;
      margin-top: 1rem;
    }

    /* Footer */
    footer {
      background: #1f2937;
      color: white;
      padding: 3rem 0 1.5rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-section p {
      color: #9ca3af;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-links a {
      color: #9ca3af;
      text-decoration: none;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: white;
    }

    .app-downloads {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .app-download {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 0.5rem;
      padding: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s;
    }

    .app-download:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-4px);
    }

    .app-download-icon {
      font-size: 2rem;
    }

    .app-download-label {
      font-size: 0.75rem;
      color: #d1d5db;
    }

    .app-download-name {
      font-weight: 500;
      font-size: 0.875rem;
    }

    .footer-bottom {
      border-top: 1px solid #374151;
      padding-top: 1.5rem;
      text-align: center;
      color: #9ca3af;
      font-size: 0.875rem;
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(to right, #f59e0b, #f59e0b);
      color: white;
      border: none;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
      transition: all 0.3s;
      z-index: 999;
    }

    .back-to-top.visible {
      display: flex;
    }

    .back-to-top:hover {
      background: #ea580c;
    }

    /* Responsive */
    @media (min-width: 640px) {
      .manga-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .subscribe-form {
        flex-direction: row;
      }

      .category-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 768px) {
      .desktop-nav {
        display: flex;
      }

      .search-box {
        display: flex;
      }

      .mobile-menu-btn {
        display: none;
      }

      .hero {
        height: 380px;
      }

      .hero-text h1 {
        font-size: 3rem;
      }

      .manga-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .popular-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .category-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .manga-grid {
        grid-template-columns: repeat(5, 1fr);
      }

      .popular-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .category-grid {
        grid-template-columns: repeat(8, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1280px) {
      .manga-grid {
        grid-template-columns: repeat(6, 1fr);
      }
    }
  </style>