*   {
    margin: 0;
    padding: 0;
}

body {
    font-family: "poppins ",sans-serif;
    font-weight: 400;
    color:#fff;
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wrapper {
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(26,14,1,1) 100%);
    width:100%;
    min-height: 100vh;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo{
    text-transform: uppercase;
    font-size: 29px;
    font-weight: 800;
}

header nav {
    float: right;
    width: 40%;
}

header nav ul {
    list-style: none;  
    display: flex;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a{
    color:#fff;
}

header nav ul li.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #DC7000;
    border-radius: 10px;
    position: relative;
    top: 10px;
    left: -15px;
}

header nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 5px solid #DC7000;
}

header nav ul li.btn a{
    background: #FA9021;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 500ms ease;
}

header nav ul li.btn a:hover {
    background: #3b2003;
}

.hero {
    padding-bottom: 100px;
    position: relative;
    z-index: 1;

}

.hero img {
    filter: invert(1);
}

.hero--info {
    width: 530px;
    padding-top: 70px;
}

.hero--info h2 {
    color: #E87D0E;
    font-size: 20px;
    font-weight: 600;
}

.hero--info h1 {
    font-size: 50px;
    font-weight: 600;
}

.hero--info p {
    font-weight: 500;
    line-height: 170%;
    margin: 30px 0;
}

.hero--info .btn {
    background: #FA8305;
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    border: 0;
    transition: all 500ms ease;
}

.hero--info .btn:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.hero img {
    position: absolute;
    top: -15px;
    right: 0;
}

.trending {
    padding-top: 50px;
}

.trending h3 {
    font-weight: 600;
    font-size: 31px;
}

.trending .see-all {
    color: #fff;
    background: #25211D;
    border-radius: 5px;
    padding: 12px 23px;
    float: right;
    display: block;
    transition: all 500ms ease;
}

.trending .see-all:hover {
    transform: scale(1.1);

}

.trending .games {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap; 
    padding: 50px 0;
}

.trending .games .block {
    width: 251px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trending .games .block img {
    width: 251px;
    height: 277px;
    object-fit: contain;
    display: block;
}

.trending .games .block span {
    margin-top: 3px;
    text-align: center;
    color: #fff;
}

.dropdown-menu {
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

header nav ul li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;

    background: #1c1c1c;
    min-width: 220px;

    padding: 10px 0;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f1f1f;
    min-width: 200px;
    margin-top: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #aaa;
    font-size: 16px;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: #2a2a2a;
    color: #fff;
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown > a {
    transition: 0.3s;
}

.dropdown:hover > a {
    color: #FA8305;
}

