*{
    padding: 0;
    margin: 0;
}
body{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    background-color: black;
}
.container{
    width: 95vw;
    min-height: 98vh;
    background-color: rgb(3, 8, 23);
    align-self: center;
    border: 1px solid grey;
}
.heading{
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}
.heading h1{
     font-family: 'Orbitron', sans-serif;
      background: linear-gradient(90deg, #b05cff, #8754ff, #c77bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     

}
/* ================================
   TYPE RUSH CARD
================================ */

.rush-card {

   position: relative;
   margin-left: 8px;
   margin-top: 12px;

    width: 300px;

    height: 25vh;

    min-height: 170px;

    padding: 16px 20px;

    overflow: hidden;

    border: 1px solid #00b96b;

    border-radius: 14px;

    background: #0b0b0b;

    color: white;

    box-shadow:
        0 0 8px rgba(0, 255, 136, 0.15);

    transition: 0.3s ease;
}


/* ================================
   HOVER
================================ */

.rush-card:hover {

    transform: translateY(-5px);

    border-color: #00ff88;

    box-shadow:
        0 0 14px rgba(0, 255, 136, 0.3);
}


/* ================================
   TOP SECTION
================================ */

.rush-card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;
}


/* ================================
   LABEL
================================ */

.game-label {

    color: #00d477;

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: bold;
}


/* ================================
   ICON
================================ */

.game-icon {

    font-size: 24px;

    filter:
        drop-shadow(0 0 4px rgba(0, 255, 136, 0.5));
}


/* ================================
   CONTENT
================================ */

.rush-card-content {

    margin-top: 12px;
}


/* ================================
   TITLE
================================ */

.rush-card h2 {

    margin: 0;

    font-family: 'Orbitron', sans-serif;

    font-size: 25px;

    letter-spacing: 2px;

    color: #00e879;

    text-shadow:

        0 0 5px rgba(0, 255, 136, 0.4);
}


/* ================================
   DESCRIPTION
================================ */

.rush-card p {

    margin-top: 6px;

    color: #999;

    line-height: 1.3;

    font-size: 11px;
}


/* ================================
   GAME FEATURES
================================ */

.game-stats {

    display: flex;

    gap: 5px;

    margin-top: 10px;

    flex-wrap: wrap;
}


.game-stats span {

    padding: 5px 7px;

    border: 1px solid #252525;

    border-radius: 5px;

    color: #888;

    font-size: 8px;
}


/* ================================
   PLAY BUTTON
================================ */

.rush-card button {

    width: 100%;

    margin-top: 12px;

    padding: 8px;

    border: none;

    border-radius: 5px;

    background: #00d477;

    color: #050505;

    font-family: 'Orbitron', sans-serif;

    font-size: 10px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.25s ease;
}


/* ================================
   BUTTON HOVER
================================ */

.rush-card button:hover {

    background: #00ff88;

    box-shadow:
        0 0 10px rgba(0, 255, 136, 0.35);

    transform: scale(1.02);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .rush-card {

        width: 75vw;

        height: 25vh;

        min-height: 165px;

    }

}
.back{
    fill: aqua;
    width: 32px;
   
    margin-left: 5px;
    position: absolute;
    top:9px;
    z-index: 9999;
}
@media (max-width: 530px) {
    .back{
        width:23%;
    }
    
}