body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: #fff;
    }

    .container {
      width: 1000px;
      margin: 20px auto;
      display: flex;
      gap: 20px;
    }

    /* Header */
    .head {
      width: 1000px;
      margin: 30px auto;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }

    .headdescription {
      background: linear-gradient(90deg, #ff0000, #990000);
      padding: 15px 20px;
      font-size: 18px;
      font-weight: bold;
      color: #fff;
      box-sizing: border-box;
    }

    .headdescription a {
      color: #fff;
      text-decoration: none;
      font-family: Forte, cursive;
      font-size: 26px;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    }

    .badge {
      display: inline-block;
      background: #000;
      color: #fff;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 6px;
      margin-left: 10px;
      font-weight: normal;
    }

    /* Left column (menus) */
    .menu-row {
      flex: 2;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .indexbox4 {
      border: 1px outset #000;
      padding: 15px;
      background: linear-gradient(90deg, #ff0000, #990000);
      color: #fff;
      border-radius: 8px;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .indexbox4:hover {
      transform: scale(1.02);
      box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    }

    .indexbox4 a {
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-grow: 1;
    }

    .icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .indextitle4 {
      font-family: Forte;
      font-size: 22px;
      font-weight: bold;
    }

    .meta {
      font-size: 14px;
      color: #eee;
      margin-left: auto;
      text-align: right;
    }

    .meta span {
      margin-left: 8px;
    }

    /* Right column (Favorite Tags) */
    .sidebar {
      flex: 1;
      background: #fafafa;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      height: fit-content;
    }

    .sidebar h3 {
      margin-top: 0;
      font-size: 20px;
      color: #990000;
      border-bottom: 2px solid #ff0000;
      padding-bottom: 5px;
      margin-bottom: 10px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #ff0000;
      color: #fff;
      padding: 5px 10px;
      border-radius: 20px;
      margin: 4px 4px 0 0;
      font-size: 14px;
      cursor: pointer;
      transition: 0.3s;
    }

    .tag:hover {
      background: #990000;
    }

    .tag .magnifier {
      font-size: 14px;
    }

    /* Responsive tweak */
    @media (max-width: 1040px) {
      .container, .head { width: 95%; }
    }