* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(90deg, #41ff6a, #2bbcff, #c341ff, #d1ff2b);
    background-size: 400% 400%;
    animation: gradientAnimation 6s ease infinite;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* HEADER (KEEPS YOUR COLOR ANIMATION) */
header { 
    background: linear-gradient(90deg, #41ff6a, #2bbcff, #c341ff, #d1ff2b);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-size: 400% 400%;
    animation: gradientAnimation 6s ease infinite;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
}

/* NAVBAR FLEX */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    transition: all 0.4s ease-in-out;
}

/* LOGO */
.logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(2, 2, 2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
}

.nav-links li {
    margin-left: 10px;
}

/* NAV ITEM STYLING */
.nav-links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: #ffbd69;
    transform: scale(1.1);
}

/* MENU EXPANDS NAVBAR ONLY (NO EXTRA MENU BOX) */
#checkbox:checked ~ .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MAKE NAVBAR BIGGER WHEN MENU OPENS */
#checkbox:checked ~ nav {
    padding: 20px 40px;
}

.hero-banner {
    background: url('https://source.unsplash.com/1600x900/?gaming,arcade') no-repeat center center/cover;
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-banner p {
    font-size: 1.4rem;
    margin-top: 15px;
}

main {
    padding: 40px 20px;
}

h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #000000;
}

.game-categories, .featured-games {
    margin-bottom: 60px;
}

.category-cards, .game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.category-card, .game-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: grid;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover, .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.category-card img, .game-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.category-title, .game-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    background: linear-gradient(90deg, #232526, #414345);
    color: rgb(0, 0, 0);
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 -8px 15px rgba(0, 0, 0, 0.2);
}

.footer-links {
    list-style: none;
    display: inline-block;
    margin-top: 10px;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffbd69;
}

/* Toggle Button (From Uiverse.io by vinodjangid07) */
#checkbox {
    display: none;
}

.menu {
    position: absolute;
    top: 60px; /* Appears right below the menu button */
    left: 50%;
    transform: translateX(-50%) scaleY(0) translateY(-10px);
    width: 180px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transition: all 0.4s ease-in-out;
}

.menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    transition: background 0.3s;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.toggle {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .5s;
}

.bars {
    width: 100%;
    height: 5px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    transition: all 0.3s ease;
}

#bar2 {
    transition-duration: .8s;
}

#bar1, #bar3 {
    width: 80%;
}

#checkbox:checked + .toggle .bars {
    position: absolute;
    transition-duration: .5s;
}

#checkbox:checked + .toggle #bar2 {
    transform: scaleX(0);
    transition-duration: .5s;
}

#checkbox:checked + .toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: .5s;
}

#checkbox:checked + .toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: .5s;
}

#checkbox:checked + .toggle {
    transition-duration: .5s;
    transform: rotate(180deg);
}

.menu {
    position: absolute;
    top: 60px; /* Appears right below the menu button */
    left: 50%;
    transform: translateX(-50%) scaleY(0) translateY(-10px);
    width: 180px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transition: all 0.4s ease-in-out, opacity 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

/* MENU ITEMS SLIDE IN ONE BY ONE */
.menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    transform: translateY(-15px);
    opacity: 0;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* CHECKBOX TRIGGER ANIMATION */
#checkbox:checked + .toggle + .menu {
    opacity: 1;
    transform: translateX(-50%) scaleY(1) translateY(0);
    visibility: visible;
}

/* MAKING MENU ITEMS SLIDE IN */
#checkbox:checked + .toggle + .menu a {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGERED DELAY FOR COOL EFFECT */
.menu a:nth-child(1) { transition-delay: 0.1s; }
.menu a:nth-child(2) { transition-delay: 0.2s; }
.menu a:nth-child(3) { transition-delay: 0.3s; }
.menu a:nth-child(4) { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 20px;
    }

    .category-cards, .game-cards {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
    }

    #checkbox:checked ~ .nav-links {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 18px;
    }
}
.game-card {
    background: linear-gradient(135deg, rgba(#FFEA00), rgba(0, 204, 255, 0.7));
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

/* Dynamic Background Glow Effect */
.game-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    animation: glowEffect 6s infinite linear;
    transition: opacity 0.4s ease;
}

@keyframes glowEffect {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 3D Lift & Glow on Hover */
.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 150, 0.5), 0 5px 20px rgba(0, 204, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.9), rgba(0, 204, 255, 0.9));
}

.game-card img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Image Zoom Effect */
.game-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Game Title Styling */
.game-title {
    font-size: 20px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}


.game-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.3), rgba(0, 0, 0, 0));
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover::after {
    opacity: 1;
}
/* From Uiverse.io by alexruix */ 
.loader {
    position: relative;
    width: 120px;
    height: 90px;
    margin: 0 auto;
  }
  
  .loader:before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #2a9d8f;
    animation: loading-bounce 0.5s ease-in-out infinite alternate;
  }
  
  .loader:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 7px;
    width: 45px;
    border-radius: 4px;
    box-shadow: 0 5px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2;
    animation: loading-step 1s ease-in-out infinite;
  }
  
  @keyframes loading-bounce {
    0% {
      transform: scale(1, 0.7);
    }
  
    40% {
      transform: scale(0.8, 1.2);
    }
  
    60% {
      transform: scale(1, 1);
    }
  
    100% {
      bottom: 140px;
    }
  }
  
  @keyframes loading-step {
    0% {
      box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
              0 10px 0 #f2f2f2,
              -35px 50px 0 #f2f2f2,
              -70px 90px 0 #f2f2f2;
    }
  
    100% {
      box-shadow: 0 10px 0 #f2f2f2,
              -35px 50px 0 #f2f2f2,
              -70px 90px 0 #f2f2f2,
              -70px 90px 0 rgba(0, 0, 0, 0);
    }
  }
/* 🚀 Fullscreen Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 9999;
}


/* 🔥 Hides Content at Start */
.hidden {
    opacity: 0;
    visibility: hidden;
}

/* 🎭 Fade-in Animation */
.fade-in {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 1s ease-in-out;
}
/* From Uiverse.io by Shoh2008 */ 
.checkbox-wrapper-5 .check {
  --size: 40px;
  position: relative;
  background: linear-gradient(90deg, #f19af3, #f099b5);
  line-height: 0;
  perspective: 400px;
  font-size: var(--size);
}

.checkbox-wrapper-5 .check input[type="checkbox"],
  .checkbox-wrapper-5 .check label,
  .checkbox-wrapper-5 .check label::before,
  .checkbox-wrapper-5 .check label::after,
  .checkbox-wrapper-5 .check {
  appearance: none;
  display: inline-block;
  border-radius: var(--size);
  border: 0;
  transition: .35s ease-in-out;
  box-sizing: border-box;
  cursor: pointer;
}

.checkbox-wrapper-5 .check label {
  width: calc(2.2 * var(--size));
  height: var(--size);
  background: #d7d7d7;
  overflow: hidden;
}

.checkbox-wrapper-5 .check input[type="checkbox"] {
  position: absolute;
  z-index: 1;
  width: calc(.8 * var(--size));
  height: calc(.8 * var(--size));
  top: calc(.1 * var(--size));
  left: calc(.1 * var(--size));
  background: linear-gradient(45deg, #dedede, #ffffff);
  box-shadow: 0 6px 7px rgba(0,0,0,0.3);
  outline: none;
  margin: 0;
}

.checkbox-wrapper-5 .check input[type="checkbox"]:checked {
  left: calc(1.3 * var(--size));
}

.checkbox-wrapper-5 .check input[type="checkbox"]:checked + label {
  background: transparent;
}

.checkbox-wrapper-5 .check label::before,
  .checkbox-wrapper-5 .check label::after {
  content: "· ·";
  position: absolute;
  overflow: hidden;
  left: calc(.15 * var(--size));
  top: calc(.5 * var(--size));
  height: var(--size);
  letter-spacing: calc(-0.04 * var(--size));
  color: #9b9b9b;
  font-family: "Times New Roman", serif;
  z-index: 2;
  font-size: calc(.6 * var(--size));
  border-radius: 0;
  transform-origin: 0 0 calc(-0.5 * var(--size));
  backface-visibility: hidden;
}

.checkbox-wrapper-5 .check label::after {
  content: "●";
  top: calc(.65 * var(--size));
  left: calc(.2 * var(--size));
  height: calc(.1 * var(--size));
  width: calc(.35 * var(--size));
  font-size: calc(.2 * var(--size));
  transform-origin: 0 0 calc(-0.4 * var(--size));
}

.checkbox-wrapper-5 .check input[type="checkbox"]:checked + label::before,
  .checkbox-wrapper-5 .check input[type="checkbox"]:checked + label::after {
  left: calc(1.55 * var(--size));
  top: calc(.4 * var(--size));
  line-height: calc(.1 * var(--size));
  transform: rotateY(360deg);
}

.checkbox-wrapper-5 .check input[type="checkbox"]:checked + label::after {
  height: calc(.16 * var(--size));
  top: calc(.55 * var(--size));
  left: calc(1.6 * var(--size));
  font-size: calc(.6 * var(--size));
  line-height: 0;
}
.container-downloadapp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust based on your layout */
    width: 100%;
}

.card {
    max-width: 350px;
    background-color: rgb(7 16 45);
    background: linear-gradient(to top right, rgb(7 16 45), rgb(58 60 84));
    background: -webkit-linear-gradient(to top right, rgb(7 16 45), rgb(58 60 84));
    display: flex;
    flex-direction: column;

    border-radius: 20px;
    border: 1px solid rgb(84 90 106);
}

.small-text, .title, .desc {
    font-weight: 600;
    
}

.title, .desc {
    margin: 8px 0;
}

.small-text {
    color: #488aec;
    font-size: 14px;
}

.title {
    color: #ffffff;
    font-size: 26px;
    line-height: 26px;
}

.desc {
    color: rgb(151 153 167);
    font-size: 13px;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.button:first-child {
    box-shadow: 0 4px 6px -1px #00000031, 0 2px 4px -1px #488aec17;
    background-color: #488aec;
}

.button:last-child {
    box-shadow: 0 4px 6px -1px #0b162531, 0 2px 4px -1px #0e192b17;
    background-color: #000000;
}

.icon {
    height: 25px;
    width: 25px;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.button-text {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.button-text span:first-child {
    font-size: 12px;
    font-weight: 600;
}

.google span:first-child, .playstore-button span:first-child {
    color: rgb(255, 255, 255);
}

.win11 span:first-child {
    color: rgb(81 87 108);
}

.google span:last-child, .playstore-button span:last-child {
    color: #ffffff;
    font-weight: 800;
    text-align: center;
}

.win11 span:last-child {
    color: #ffffff;
    font-weight: 800;
    text-align: center;
}

/* Play Store button */
.playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 1);
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all 0.2s ease;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.playstore-button:hover {
    background-color: transparent;
    color: rgb(255, 255, 255);
}

.texts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.text-1 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-2 {
    font-weight: 600;
}
/* From Uiverse.io by Na3ar-17 */ 
.cardu {
  width: 200px;
  position: absolute;

  z-index: 1000;
  background-color: rgba(36, 40, 50, 1);
  background-image: linear-gradient(
    139deg,
    rgba(36, 40, 50, 1) 0%,
    rgba(36, 40, 50, 1) 0%,
    rgba(37, 28, 40, 1) 100%
  );

  border-radius: 10px;
  padding: 15px 0px;
  display: none; /* Initially hidden */
  flex-direction: column;
  gap: 10px;

}

.cardu .separator {
  border-top: 1.5px solid #42434a;
}

.cardu .listi {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0px 10px;
}

.cardu .listi .element {
  display: flex;
  align-items: center;
  color: #7e8590;
  gap: 10px;
  transition: all 0.3s ease-out;
  padding: 4px 7px;
  border-radius: 6px;
  cursor: pointer;
}

.cardu .listi .element svg {
  width: 19px;
  height: 19px;
  transition: all 0.3s ease-out;
}

.cardu .listi .element .label {
  font-weight: 600;
}

.cardu .listi .element:hover {
  background-color: #5353ff;
  color: #ffffff;
  transform: translate(1px, -1px);
}
.cardu .listi .delete:hover {
  background-color: #8e2a2a;
}

.cardu .listi .element:active {
  transform: scale(0.99);
}

.cardu .listi:not(:last-child) .element:hover svg {
  stroke: #ffffff;
}

.cardu .listi:last-child svg {
  stroke: #bd89ff;
}
.cardu .listi:last-child .element {
  color: #bd89ff;
}

.cardu .listi:last-child .element:hover {
  background-color: rgba(56, 45, 71, 0.836);
}
/* From Uiverse.io by Yaya12085 */ 
.card-deletecfm {
    overflow: hidden;
    z-index: 1000;
    position: absolute;
    background-color: #ffffff;
    text-align: left;
    border-radius: 0.5rem;
    max-width: 290px;
    box-shadow:
      0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: hidden;
  }
  
  .header-deletecfm {
    padding: 1.25rem 1rem 1rem 1rem;
    background-color: #ffffff;
  }
  
  .image-deletecfm {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: #fee2e2;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
  }
  
  .image-deletecfm svg {
    color: #dc2626;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .content-deletecfm {
    margin-top: 0.75rem;
    text-align: center;
  }
  
  .title-deletecfm {
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
  }
  
  .message-deletecfm {
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .actions-deletecfm {
    margin: 0.75rem 1rem;
    background-color: #f9fafb;
  }
  
  .desactivate {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border-width: 1px;
    border-color: transparent;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  
  .cancel {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  
  button {
    cursor: pointer;
  }
  
  .menu-container {
    display: flex;
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.4); /* Whiter blur */
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 5px;
}

.btn {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: black;
    background: transparent;
    padding: 5px 10px;
    white-space: nowrap;
    transition: 0.2s;
}

.btn:hover,
.view-more:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.emoji {
    font-size: 24px;
    margin-right: 5px;
}

.separator {
    font-size: 18px;
    margin: 0 10px;
    color: white;
}

.view-more {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: black;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.2s;
}
#load-more {
    margin: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Automatically adjust columns based on container width */
    gap: 20px; /* Space between cards */
    padding: 20px;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 234, 0, 1), rgba(0, 204, 255, 0.7)); /* Fixed gradient */
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

/* Dynamic Background Glow Effect */
.game-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    animation: glowEffect 6s infinite linear;
    transition: opacity 0.4s ease;
}

@keyframes glowEffect {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 3D Lift & Glow on Hover */
.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 150, 0.5), 0 5px 20px rgba(0, 204, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.9), rgba(0, 204, 255, 0.9));
}

.game-card img {
    width: 100%;
    height: 200px; /* Ensure all images are the same size */
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Image Zoom Effect */
.game-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Game Title Styling */
.game-title {
    font-size: 20px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Secondary Glow Effect */
.game-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.3), rgba(0, 0, 0, 0));
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover::after {
    opacity: 1;
}
.downloadtitle .p {
    align-self: center;
    align-content: center;
    align-items: center;
    font-size: 20px;
    color: #000000;
    text-align: center;
}
#profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}
/* ✨ Glass Effect */
.glass-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    outline: none;
}

/* 🚀 Hover & Active Effects */
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.glass-btn:active {
    transform: scale(0.98);
}

/* 📌 Pagination Button Positioning */
.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
