body {
      background-color: #171b24;
      font-family: "Roboto", sans-serif;
      color: #eee;
    }

    .container {
      width: 90%;
      max-width: 560px;
      margin: 1rem auto;
    }

    .title {
      color: #eee;
      font-weight: 500;
      font-size: 1.7rem;
      text-align: center;
      margin-bottom: 10px;
    }

    .content {
      margin-bottom: 2rem;
    }

    .input-area,
    .info-area .card,
    #milestones-card {
      width: 100%;
      max-width: 560px;
      margin: 0 auto 1rem auto;
      box-sizing: border-box;
      border-radius: 12px;
    }

    .input-area {
      background-color: #232a36;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
      margin-bottom: 1rem;
    }

    .input-area-text {
      color: #eee;
      font-size: 1rem;
      text-align: center;
      margin-bottom: 1rem;
    }

    .row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .trophy-inputs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      justify-items: center;
      padding: 0.5rem;
    }

    .trophy-inputs>div {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 180px;
    }

    .trophy-inputs>div:last-child {
      margin-right: 0;
    }

    .trophy-image {
      width: 35px;
      height: 35px;
      margin-right: 10px;
      filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
    }

    .trophy-input {
      width: 80px;
      padding: 10px 8px;
      border: none;
      background-color: #474747;
      color: #eee;
      font-size: 0.9rem;
      box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    }

    .trophy-input:focus {
      outline: none;
      box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    }

    .info-area {
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .info-area > .card {
      width: 100%;
      max-width: 560px;
      margin: 0 auto 1rem auto;
      box-sizing: border-box;
      border-radius: 12px;
    }

    .current-level-card {
      flex: 1;
    }

    .card {
      background-color: #232a36;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    }

    .card-title {
      color: #eee;
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .level-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      padding: 0 40px;
      margin-bottom: 1.2rem;
      min-height: 55px;
    }

    #current-system-next-level-image,
    .next-level {
      position: absolute;
      right: 0;
    }

    #current-system-next-level-image {
      top: 50%;
      transform: translateY(-50%);
    }

    .next-level {
      top: calc(50% + 18px);
      transform: none;
      font-size: 0.9rem;
      font-weight: 500;
      color: #fff;
      text-align: center;
      width: 32px;
    }

    .current-level-info {
      width: calc(100% - 90px);
      margin: 0 auto;
      padding: 0;
    }

    .info-text {
      color: #ffffff;
      margin-bottom: 0.4rem;
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.2px;
      line-height: 1.4;
    }

    .info-text:last-child {
      color: #a8b3cf;
    }

    .trophy_level {
      position: absolute;
      width: 32px;
      height: 32px;
      margin-right: 10px;
      top: 50%;
      transform: translateY(-50%);
    }

    .trophy_level:first-child {
      left: 4px;
    }

    .next-level {
      width: 25px;
      font-size: 0.8rem;
      color: #bdbdbd;
      margin-left: 8px;
    }

    .current-level-info>div {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .current-level-info>div>p {
      margin-bottom: 0;
    }

    .progress {
      height: 6px;
      background-color: rgba(255, 255, 255, 0.1);
      margin: 0.6rem 0;
      border-radius: 6px;
    }

    .progress-bar {
      background-color: #5972e9;
      height: 100%;
      border-radius: 6px;
      box-shadow: 0 0 10px rgba(89, 114, 233, 0.3);
    }

    #milestones-card {
      margin-top: 1rem;
    }

    .desired-level-input {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .desired-level-input .trophy-input {
      width: 150px;
    }

    .desired-level-results {
      text-align: center;
    }

    .bronze-text {
      color: #cd7f32;
    }

    .silver-text {
      color: #c0c0c0;
    }

    .gold-text {
      color: #ffd700;
    }

    .platinum-text {
      color: #b0e0e6;
    }

    @media (max-width: 425px) {
      .container {
        width: 95%;
      }

      .title {
        font-size: 1.6rem;
      }

      .input-area-text {
        font-size: 0.95rem;
      }

      .trophy-inputs {
        gap: 0.75rem;
      }

      .trophy-image {
        width: 32px;
        height: 32px;
        margin-right: 8px;
      }

      .trophy-input {
        width: 70px;
        font-size: 0.85rem;
        padding: 9px 6px;
      }

      .card-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
      }

      .level-info {
        padding: 0 30px;
        min-height: 50px;
        margin-bottom: 1rem;
      }

      .current-level-info {
        width: calc(100% - 70px);
      }

      .info-text {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
      }

      .next-level {
        font-size: 0.75rem;
        top: calc(50% + 16px);
      }

      .trophy_level {
        width: 28px;
        height: 28px;
      }

      .desired-level-input .trophy-input {
        width: 130px;
      }
    }

    @media (max-width: 375px) {
      .container {
        width: 95%;
      }

      .title {
        font-size: 1.5rem;
      }

      .input-area-text {
        font-size: 0.9rem;
      }

      .trophy-inputs {
        gap: 0.5rem;
      }

      .trophy-image {
        width: 30px;
        height: 30px;
        margin-right: 5px;
      }

      .trophy-input {
        width: 60px;
        font-size: 0.8rem;
        padding: 8px 5px;
      }

      .card-title {
        font-size: 1rem;
        margin-bottom: 1rem;
      }

      .level-info {
        padding: 0 20px;
        min-height: 45px;
        margin-bottom: 0.8rem;
      }

      .current-level-info {
        width: calc(100% - 60px);
      }

      .info-text {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
      }

      .next-level {
        font-size: 0.7rem;
        top: calc(50% + 15px);
      }

      .trophy_level {
        width: 25px;
        height: 25px;
      }

      .desired-level-input .trophy-input {
        width: 120px;
      }
    }
