body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("https://s20.directupload.net/images/230405/copttwsd.jpg");
    background-size: cover;
    background-position: 20% right;
    transform: translateY(calc(var(--scroll-pos) * -1px));
    overflow-y: scroll;

    }

    body::-webkit-scrollbar {
      width: 0;
    }
    
    .glow {
      font-size: 40px;
      color: #fff;
      text-align: center;
      animation: glow 1s ease-in-out infinite alternate;
    }
    
    @keyframes glow {
      from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #0037ff, 0 0 40px #0037ff, 0 0 50px #0037ff, 0 0 60px #0037ff, 0 0 70px #0037ff;
      }
      
      to {
        text-shadow: 0 0 20px #fff, 0 0 30px #4d74ff, 0 0 40px #4d74ff, 0 0 50px #4d74ff, 0 0 60px #4d74ff, 0 0 70px #4d74ff, 0 0 80px #4d74ff;
      }
    }

    /* Header */
    header {
    color: #000000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    


    nav ul {
    margin: 0px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    }
    
    nav li {
    margin-right: 20px;
    }
    
    nav li:last-child {
    margin-right: 0;
    }
    
    nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.2s ease-in-out;
    }
    
    nav a:hover {
    color: white;
    }
    
    /* Main */
    main {
      padding: 40px;
    }

    
    .featured-games-heading {
        margin-top: 15%;
        margin-bottom: 100px;
        font-size: 24px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
      }
      
      .featured-games {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
      }
      
      .game1 {
        flex: 0 0 calc(25% - 10px);
        margin-top: 400px;
        margin-left: 50px;
        margin-bottom: 20px;
        background: url("https://s20.directupload.net/images/230405/yplzd296.png");
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease-in-out;
        animation: fade-in 1s ease-in-out;
      }
      

      .game2 {
        flex: 0 0 calc(25% - 10px);
        margin-top: 400px;
        margin-left: 50px;
        margin-bottom: 20px;
        background: url("https://s20.directupload.net/images/230405/yplzd296.png");
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease-in-out;
        animation: fade-in 1s ease-in-out;
      }

      .game2::before {
        content: "";
        display: block;
        position: absolute;
        top: 10%;
        left: 10%;
        right: 10%;
        bottom: 10%;
        background-image: url("https://s20.directupload.net/images/230416/xykiur89.gif");
        background-repeat: repeat;
        background-size: cover;
        background-position: center;
        opacity: 0;
        z-index: -2;
        transition: opacity 0.2s ease-in-out;
    }
    
    .game2:hover::before {
        opacity: 1;
    }
      


      .game3 {
        flex: 0 0 calc(25% - 10px);
        margin-top: 400px;
        margin-left: 50px;
        margin-bottom: 20px;
        background: url("https://s20.directupload.net/images/230405/yplzd296.png");
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease-in-out;
        animation: fade-in 1s ease-in-out;
      }
      
      .game1 img,
      .game2 img, 
      .game3 img{
        max-width: 100%;
        border-radius: 5px;
      }
      
      .game1 h3,
      .game2 h3,
      .game3 h3 {
        margin-top: 0;
        font-size: 20px;
        margin-bottom: 10px;
      }
      
      .game1 p,
      .game2 p,
      .game3 p {
        margin-bottom: 0;
        font-size: 16px;
        color: #777;
        line-height: 1.4;
      }

      .game1, 
      .game2, 
      .game3 {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.2s ease-in-out;
     }
      
      .game1.animated, .game2.animated, .game3.animated {
          opacity: 1;
          transform: translateY(0);
          transition: all 5s ease-in-out;
      }

      .game1:hover,
      .game2:hover,
      .game3:hover {
        animation: box-hover 0.2s ease-in-out forwards;
      }

      @keyframes box-hover {
        0% {
          transform: translateY(0);
          box-shadow: none;
        }
        100% {
          transform: translateY(-50px);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.6);
          z-index: 9;
        }
      }
    
    @keyframes fade-in {
        0% {
            opacity: 0;
            transform: translateY(50px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .latest-news {
    margin-top: 200px;
    }
    
    .latest-news h2 {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    }
    
    .latest-news ul {
    margin: 0;
    padding: 0;
    list-style: none;
    }
    
    .latest-news li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    }
    
    .latest-news li:last-child {
    border-bottom: none;
    }
    
    .latest-news img {
    float: left;
    margin-right: 20px;
    max-width: 100%;
    border-radius: 5px;
    }
    
    .latest-news h3 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 10px;
    }
    
    .latest-news p {
    margin-bottom: 0;
    font-size: 16px;
    color: #777;
    line-height: 1.4;
    }


    h3 {
      color: red;
    }

    
    /* Footer */
    footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    }
    
    footer p {
    margin: 0;
    }