body {
    --text-color:#7A7A7A;
    --grey-color:#6F969D;
    --grey-color-100:#8FA1A5;
    --red-color:#FF3F3F;
    --red-color-100:#F02B11;
    --red-color-200:#FF5956;
    --grid-gap:4rem;
}
.scrolling-navi {
    background: linear-gradient(103.19deg, rgba(7, 8, 10, 0.77) 4.61%, #151515 87.53%);
}
a {
    color: var(--red-color-100);
    text-decoration: none;
}
.cover-container, body, .footer-wrap {
    background: linear-gradient(107.62deg, #000 -3.71%, #101010 100.95%);
}
.footer-wrap {
    border-color:#242424;
}
.footer-wrap .copyright {
    border-color:#242424;
}
.main-wrap {
    padding-top:120px;
    background: linear-gradient(107.62deg, #000 -3.71%, #101010 100.95%);
}
.add-bottom-margin {
    padding-bottom: 90px;
}
.riot_red_logo {
    margin-bottom: 70px;
}
.riot_red_logo img {
    width: 100%;
    max-width: 300px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap);
    margin-bottom:90px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 470px;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.card.v2 {
    border: 2px solid var(--red-color);

    padding:4px 6px 6px 6px;
}
.card.v2:hover h3 {
   margin-top:0 !important;
}
.card.v2:hover {
    border: 2px solid var(--red-color);
    box-shadow: rgb(255 64 63 / 44%) 0 7px 29px ;
    padding:4px 6px 6px 6px;
    transform: scale(1);
    margin-top:-15px;
}
.card.v2:hover .overlay {
    top: initial !important;
}
.card.v2:hover .overlay .text-overlay {
    display: none;
}
.card.v2:hover .overlay .text-regular {
    display: block;
}
.card.v2:hover .overlay {
    top: initial !important;
}
.card.v2 label {
    position: absolute;
    top:0;
    left:0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 8px;
    padding:4px 14px 4px 14px;
    background:var(--red-color) ;
    font-weight: 800;
    z-index: 110;
    color:white;
}
.card:hover {
    border-color:var(--red-color)
}
.card:hover .overlay {
    top:0;
}
.card:hover .overlay h3 {
    margin-top:30px;
    transition: all 0.3s ease;
}
.card .overlay .text-overlay {
   display: none;
}
.card:hover .overlay .text-overlay {
    display: inline-block;
    padding-left:40px;
    padding-right: 40px;
    text-align: left;
    margin-top:30px;
    color:var( --grey-color-100);
}
.card:hover .overlay .text-regular {
    display: none;
}
.card .overlay .button-default {
    display: none;
    transition: all 0.1s ease;
}
.card:hover .overlay .button-default {
    display: inline-block;
    margin-top:20px;

}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: #fff;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}
.card.v2 .overlay {
    background: rgba(0, 0, 0, 0.9);
}
.card.v2 img {
   border-radius: 8px;
}
.overlay h3   {
    font-size: 42px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;

}
.card.v2.gridz h3 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: left;
}
.card.v2.blog {
    margin-bottom: 60px;
}
.card.v2.blog:hover {
    transform: scale(1);
    margin-top:0;
}
.overlay p, .card.v2.gridz p  {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-top:10px;
    color:var(--grey-color);
}

.card.v2.gridz p {
    color:var(--grey-color-100);
    text-align:left;
}
.button-default {
    color: white;
    background-color: var(--red-color-100);
    text-align: center;
    text-transform: uppercase;
    padding: 9px 25px;
    margin: 10px;
    display: inline-block;
    font-weight: 800;
    font-size:20px;
    border:1px solid var(--red-color-200);
    transition: all 0.3s ease;
}
.button-default.smaller {
    padding: 4px 14px !important;
    font-size:15px;
}
.button-default:hover {
    padding-left:35px;
    padding-right:35px;
    color:white;
}
.slanted-input {
    padding: 12px 35px;
    background: #1C1C23;
    max-width: 300px;
    width: 100%;
    font-size: 16px;
    clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
    transition: 0.3s ease;
    outline: none;
    height: 50px;
    border:1px solid #2C2C2C;
}

.slanted-input:focus {
    background: #e0e0e0;
}

.button-slanted {
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

.button-slanted-content {
    -ms-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    display: inline-block;
}
.red-background {
    background: url("../dsg/registered_background.png"), var(--red-color-100);
    margin-top:90px;
    padding: 60px 20px 60px 20px;
}
.newsletter-signup form {
    display: flex;
    justify-content: center;
    gap:0;
    align-items: center;

}
.newsletter-signup form button {
    margin-left:-20px;
}
.newsletter-signup {
    margin-bottom:90px;
}
.stats {
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    gap:40px;
    flex-wrap: wrap;
}
.stats h4 {
    font-weight: 800;
    font-size:80px;
    color:white;
}
.stats span {
    color:#FFDD35;
    font-size: 28px;
}
.stats .line {
    width: 1px;
    height: 130px;
    background: white;
}
.triple-title {
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: baseline;
    gap:20px;
    font-weight: 800;
    font-size: 44px;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.triple-title img {
    height: 54px;
}
.get-free img {
    max-width: 700px;
    width: 100%;
    margin-bottom: 80px;
}
.main-title {
    margin-bottom: 70px;
}
.main-title.mb-20 {
    margin-bottom: 20px;
}
.main-title h2 {
    font-size:60px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    color:white;
}
.main-title p {
    color:var(--grey-color-100);
    font-size:20px;
    text-align: left;
}
.title-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:20px;
}

.grid.v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
    align-items: center;
    margin-bottom: 90px;
}

.left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.left h1 {
    font-size: 90px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.left .button-default {
    width: fit-content;
}

.left p {
    color: var(--grey-color-100);
    line-height: 1.6;
    font-size: 20px;
    margin-top:20px;
}


.right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right img {
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.form-control {
    background: #1C1C23;
    padding: 14px 20px;
    border-color:#1C1C23;
}
.dropdown-item {
    color:white;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
}
.dropdown-menu {
    background: black;

}
.left-overlay {
    z-index: 100;
    width: 100%;

    background: #000;
    padding: 50px;
  height:75%;
    display: flex;
    flex-direction: column;
    gap:2em
}
.bottom-div {
    margin-top: auto;
}
.image-overlay {
    width: 100%;
    height: 100%;

}
.card.v2.gridz {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    height: 500px;
}
.card.v2.gridz:hover {
    transform: scale(1);
    margin-top:0;
    box-shadow: none;
}
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 4, 80, 0) 100%);
    pointer-events: none;
    height: 100%;
}
.promo-content {
    color:var(--grey-color-100);
    max-width: 968px;
    margin:0 auto;
    margin-top:70px;
    text-align: left;
}
.promo-content h1, .promo-content h2, .promo-content h3, .promo-content h4, .promo-content h5 {
    color:white;
}
.promo-content p {
    margin-bottom: 40px;
}
.promo-bottom-play-now {
    width: 100%;
    border-color: #242424;
    max-width: 968px;
    margin-top:40px;
}
.social-link {
    font-size: 24px;
    color:var(--text-color);
}
.grid-blog {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem;
}

.blog-left {
    padding: 1rem;
}

.blog-right {
    color: white;
    padding: 1rem;
    max-width: 280px;
    width: 100%;
}
.blog--item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    margin-bottom: 50px;
    max-width: 100%;
}
.blog--item h2::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red-color-100);
    transition: width 0.3s ease;
}

.blog--item:hover h2::before {
    width: 30%;
}
.blog--item.v2 {
    gap: 2rem;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom:1px solid #D8060E;

}

.blog--item .text-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog--item .text-content h2 {
    margin: 0;
    color:white;
    text-align: left;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}
.blog--item.v2 .text-content h2 {
    font-size: 20px;
}

.blog--item .text-content p {
    margin: 0;
    color: #8FA1A5;
    font-size: 18px;
    text-align: left;
}

.blog--item .text-content .date {
    text-align: left;
    font-size: 12px;
    color:#EE260F;
}

.blog--item .img-container img {
    width: 100%;
    max-width: 330px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.blog--content {
    text-align: left;
}
.blog--content h2 {
    text-align: left;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;

}
.blog--content-text, .blog--content-text p  {
    color:#8FA1A5;
    margin-bottom: 40px;
    font-size: 18px;
    text-align: left;
}
.blog--content-cover {
    margin-bottom: 80px;
}
.blog--content-published {
    text-align: left;
    color:#EE260F;
    font-size: 12px;
    margin-bottom: 10px;
}
.card.v2.blog:hover .overlay .text-overlay {
    width: 100%;
    text-align: center;
}
.content-wrap {
    max-width: 968px;
    margin:0 auto;
}
.static-regular-content {
    margin-top:50px;
    text-align: left;
}
/* Responsive stacking on small screens */
@media (max-width: 768px) {


}
/* Hover dropdown on desktop only */
@media (max-width: 992px) {

    .blog--item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0rem;
        margin-bottom: 50px;
    }
    .img-container {
        justify-self: center;
        order:1;

    }
    .blog--item .text-content {
        order:2;
    }
    .blog-right {
        display: none;
    }
    .blog--item .img-container img {
        width: 100%;
        max-width: 100%;

    }

}
@media ( min-width: 968px){
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Optional: Remove margin that may push the dropdown away */
    .dropdown-menu {
        top: 100% !important; /* force it to open directly below */
        left: 20px;
        margin-top: 0;
        background: black;

    }
    .left {
       padding-left:100px;
    }
}
@media ( max-width: 968px){
    .stats .line {
        display: none;
    }
    .card .overlay .button-default {
        display: inline-block;
    }
    .card:hover .overlay {
        top:initial;
    }
    .card:hover .overlay .text-regular {
        display: block;
    }
    .card:hover .overlay .text-overlay {
        display: none;
    }
}
@media ( max-width: 768px){
    .left h1 {
        font-size: 44px;
    }
    body {
        --grid-gap:2.5rem;
    }
    .triple-title {
        font-size: 34px;
    }
    .triple-title img {
        height: 44px;
    }
    .card.v2 .overlay h3 {
        font-size: 32px;
    }
    .image-container {
        position: absolute;
        top:0;
    }
    .left-overlay {
        background: transparent;
        height:100%;

    }
    .blog-left {
        padding: 0;
    }
    .main-title h2 {
        font-size: 44px;
    }
    .main-title img {
        display: none;
    }
    .main-wrap {
        padding-left:10px;
        padding-right: 10px;
    }
    .grid-blog {
        gap:0;
        padding: 0;
    }
    .card .overlay .button-default {
       margin-top:20px;
    }
    .card.v2.gridz h3 {
        font-size: 44px;
    }
    .left-overlay {
        padding: 50px 30px 30px 30px;
    }
    .image-container::before {
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 4, 80, 0) 100%);

}
}
@media (max-width: 973px) {
    .mobileStyle {
        background: linear-gradient(103.19deg, #090A0F 4.61%, #1a1a1a 87.53%);
    }
}