    *{
      margin: 0px;
      padding: 0px;
      font-family: "Dosis", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
    }
    #homepage ul{
      margin-left: 20%;
    }
    a{
      color: lightcoral;
      text-decoration: none;
      transition: 0.3s;
    }
    a:hover {
      color: lightskyblue;
      transition: 0.3s;
    }
    li {
      margin-left: 20px;
      margin-bottom:20px;
    }

    #updates ul{
      margin-top: 20px;
      list-style: none;
      text-align: left;
    }
    #main-menu {
      padding-top: 30px;
      top: 0px;
      background-color: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      position: fixed;
      width: 100%;
      box-sizing: border-box;
      z-index: 99;
    }
    #main-menu img {
      width: 50px;
    }
    #main-menu ul {
      list-style: none;
      display: flex;
      align-items: center;
      padding: 0;
      margin: 0;
    }

    #featured {
      background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.6)),url('/static/img/featured_game.png');
      color: white;
    }
    #featured h2{
      font-size: 50px;
    }

    #featured p {
      font-size: 30px;
      margin-bottom: 50px;
    }

    #featured .icon{
      color: white;
      font-size: 25px;
      padding-right: 20px;
      text-decoration: none;
      transition: 0.3s;

    }

    #featured .icon:hover{
      color: orange;
      transition: 0.3s;
    }
    #awards{
      text-align: center;
    }
    #links {
      text-align: left;
      margin-left: 20%;
    }
    #games {
      list-style: none;
      position: relative;
    }
    #games ul {
      text-align: left;
    }

    #games li {
      list-style: none;
      position: relative;
      padding-left: 25px;
      margin-bottom: 20px;
    }

    /* Bullet bolong */
    #games li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      width: 12px;
      height: 12px;
      border: 2px solid black;
      border-radius: 50%;
      background: white;
      z-index: 1;
    }

    /* Garis penghubung */
    #games li::after {
      content: "";
      position: absolute;
      left: 6px;
      top: 18px;
      width: 2px;
      height: 100%;
      background: black;
    }

    /* Hilangkan garis di item terakhir */
    #games li:last-child::after {
      display: none;
    }

    #edit_game input{
      width: 200px;
      margin-bottom: 20px;
    }


    .awards-icon{
      max-width: 300px;
    }
    .content-body{
      margin-top: 20px;
    }

    .section {
      text-align: center;
      padding: 0px 30px 100px 30px;
    }
    .section>p {
      margin-top: 10px;
    }
    .section h2{
      margin-top: 40px;
    }

    .home-content{
      padding-top: 350px;
    }
    .page-content{
      padding-top: 150px;
      text-align: left;
      margin-left: 20%;
      margin-right: 20%;
    }


    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu {
      margin-left: auto;
      display: flex;
      gap: 20px;
    }

    .menu a {
      text-decoration: none;
      color: black;
    }

    .content {
      padding-top: 150px;
      margin-left: 30px;
    }


    h1 {
      font-family: "Bebas Neue", sans-serif;
      font-weight: 400;
      margin: 0;
    }

    @media all and (max-width:600px){
      #featured{
        text-align: left;
      }
      .section ul, .page-content, #links, #homepage ul{
        margin-left: 0px;
        margin-right: 0px;
        text-align: left;
      }
    }
