body {
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
h1 {
    font-size: 3.3rem;
    font-family: 'Montserrat', sans-serif;
}
.game-text {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.button-group {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.button-group button {
    padding: 0.6rem 0.8rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(0, 119, 255, 0.6), rgba(0, 119, 255, 0.3));
    box-shadow: 0 0 10px rgba(0, 119, 255, 0.5);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.button-group button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 119, 255, 0.6) 10%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.6;
}
.button-group button svg {
    width: 1.3rem; 
    height: 1.3rem;
    margin-bottom: -5px;
    }
    

.button-group .active {
    transform: scale(1.01);
}
/* Make active button stand out */
.button-group .active {
    background: radial-gradient(circle, rgba(0, 119, 255, 0.6) 10%, rgba(0, 119, 255, 0.5) 70%);
    box-shadow: 0 0 20px rgba(0, 119, 255, 0.521);
    border: 1px solid rgba(0, 119, 255, 1);
}

.button-group button:not(.active) {
    background: linear-gradient(90deg, rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.5));
    border: 1px solid rgb(35, 47, 63);
    color: #d1d5db;
    box-shadow: none;
}
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.card {
    background-color: #111827;
    border-radius: 0.375rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px); /* Slight movement */
    transition: opacity 0.2s ease-out, transform 0.2s ease-out; /* Faster animation */
    visibility: hidden;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    display: block;
}




.card img {
width: calc(100% + 2rem); /* Expands image to compensate for card padding */
margin: -1rem; /* Pulls the image out of the padding */
border-radius: 0.375rem 0.375rem 0 0;
display: block;

/* Blend effect */
-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.card .badge {
    position: absolute;
    padding: 0.35rem 0.6rem;
    border-radius: 5rem;
    color: #ffffff;
    
}
.card .badge.popular {
    background-color: #7e6c08a2;
    top: 1rem;
    left:1rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.card .badge.trending {
    background-color: #007c349a;
    top: 1rem;
    left: 7rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.card .badge.trending svg {
    color: #ffffff;
    width: 1rem; 
height: 1rem;
margin-bottom: -3px;
}
.card .badge.popular svg {
    color: #ffffff;
    width: 1rem; 
height: 1rem;
margin-bottom: -3px;
}
.popuplary { background: linear-gradient(45deg, #ff6600, #ffcc00); 
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.stronggr{
background: linear-gradient(45deg, #00ffaa, #009456); 
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.card h2 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
}
.card p {
    color: #9ca3af;
    margin-top: 0.5rem;
}

.col-pj3 {
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2 columns */
gap: 15px; /* Adjust spacing */
list-style: none;
padding: 0;
justify-content: start; /* Align to the left */
text-align: left;
width: fit-content; /* Keep grid compact */
margin-left: 30px; /* Shift everything slightly to the right */
}

.col-pj3 li {
display: flex;
align-items: center; /* Align text in the middle of the SVG */
gap: 10px;
font-size: 14px; /* Smaller text */
color: #ddd;
white-space: nowrap; /* Prevents text wrapping */
}

.col-pj3 li svg {
width: 20px; /* Adjust icon size */
height: 20px;
flex-shrink: 0;

/* Transparent background behind SVG */
background: #004ba144; /* Light transparent box */
padding: 4px;
border-radius: 4px; /* Rounded corners */
}




.card .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: -20px;
}
.card .footer span {
    color: #9ca3af;
}
.card .footer span .price {
    color: #fff;
    font-weight: bold;
}

.card .footer span .mo {
    color: #ffffff91;
}
.card .footer button {
    padding: 0.8rem 1rem;
    background-color: #0b84f5;
    color: #ffffff;
    border: none;
    border-radius: 2rem;
    font-weight: bold;
    cursor: pointer;
    
}