.gg-card.game-card{
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);

  background:
    radial-gradient(circle at top right,rgba(44,211,141,.12),transparent 40%),
    #111;

  box-shadow:0 0 24px rgba(0,0,0,.35);
}

.gg-card.game-card .card-media{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:#050505;
}

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

.gg-card.game-card .badge.pro{
  position:absolute;
  top:12px;
  right:12px;
  left:auto;

  z-index:2;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:6px 11px;

  border-radius:999px;

  background:rgba(44,211,141,.16);
  border:1px solid rgba(44,211,141,.45);

  color:#2cd38d;

  font-size:11px;
  font-weight:900;

  letter-spacing:.4px;
}

.gg-card.game-card.claimed .badge.pro{
  background:rgba(255,179,71,.16);
  border:1px solid rgba(255,179,71,.45);
  color:#ffb347;
}

.gg-card.game-card .card-body{
  padding:16px;
}

.game-sponsor-box{
  display:flex;
  align-items:center;
  gap:10px;

  margin-bottom:14px;
  padding:10px;

  border:1px solid rgba(44,211,141,.35);
  border-radius:14px;

  text-decoration:none;
  color:#fff;

  background:rgba(44,211,141,.08);
}

.game-sponsor-logo{
  width:42px;
  height:42px;
  border-radius:12px;
  object-fit:cover;
  flex:0 0 auto;
}

.game-sponsor-box span{
  display:block;
  font-size:12px;
  color:#2cd38d;
  font-weight:800;
}

.game-sponsor-box strong{
  display:block;
  font-size:14px;
}

.gg-card.game-card .card-title{
  margin:0 0 8px;

  color:#fff;

  font-size:23px;
  font-weight:900;
  line-height:1.12;
}

.gg-card.game-card .card-desc{
  margin:0 0 14px;

  color:#b8b8b8;

  font-size:14px;
  line-height:1.45;
}

.game-reward-value{
  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  margin:16px 0;
  padding:16px 14px;

  border-radius:18px;

  color:#46ffac;

  font-size:30px;
  font-weight:950;
  line-height:1;
  text-align:center;

  text-shadow:0 0 10px rgba(44,211,141,.45);

  animation:rewardPulse 2s ease-in-out infinite;
}

.game-reward-value::before{
  content:"";

  position:absolute;
  inset:-2px;

  border-radius:20px;

  background:
    conic-gradient(
      from 0deg,
      #2cd38d,
      #6cffbd,
      #2cd38d,
      #0f7a50,
      #2cd38d
    );

  animation:
    rewardSpin 3s linear infinite;

  z-index:0;
}

.game-reward-value::after{
  content:"";

  position:absolute;
  inset:2px;

  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      rgba(14,26,20,.96),
      rgba(10,18,14,.98)
    );

  z-index:1;
}

.game-reward-value span{
  position:relative;
  z-index:2;
}

.gg-card.game-card.claimed .game-reward-value{
  animation:none;
  color:#ffb347;
  text-shadow:none;
}

.gg-card.game-card.claimed .game-reward-value::before{
  display:none;
}

.gg-card.game-card.claimed .game-reward-value::after{
  background:
    linear-gradient(
      135deg,
      rgba(28,20,10,.96),
      rgba(18,14,10,.98)
    );

  border:1px solid rgba(255,179,71,.35);
}

.game-extra-info{
  display:grid;
  gap:8px;

  margin:14px 0;
  padding:12px;

  border:1px solid rgba(44,211,141,.22);
  border-radius:14px;

  background:rgba(44,211,141,.06);
}

.game-extra-row{
  display:flex;
  justify-content:space-between;
  gap:12px;

  font-size:13px;
}

.game-extra-row span{
  color:#aaa;
}

.game-extra-row strong{
  color:#fff;
  text-align:right;
}

.game-action-stack{
  display:flex;
  flex-direction:column;
  gap:10px;

  margin-top:16px;
}

.game-button{
  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;
  min-height:48px;

  border-radius:14px;

  background:#2cd38d;
  color:#000;

  font-size:15px;
  font-weight:900;

  text-decoration:none;

  border:0;
}

.game-button.secondary{
  background:#111;
  border:1px solid #2cd38d;
  color:#2cd38d;
}

.game-button.disabled{
  opacity:.45;
  pointer-events:none;
}

@keyframes rewardSpin{
  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }
}

@keyframes rewardPulse{

  0%{
    transform:scale(1);
    box-shadow:0 0 10px rgba(44,211,141,.15);
  }

  50%{
    transform:scale(1.015);
    box-shadow:0 0 22px rgba(44,211,141,.30);
  }

  100%{
    transform:scale(1);
    box-shadow:0 0 10px rgba(44,211,141,.15);
  }
}

@media(max-width:430px){

  .gg-card.game-card .card-body{
    padding:14px;
  }

  .gg-card.game-card .card-title{
    font-size:21px;
  }

  .game-reward-value{
    font-size:25px;
    padding:15px 10px;
  }

  .game-extra-row{
    flex-direction:column;
    gap:4px;
  }

  .game-extra-row strong{
    text-align:left;
  }
}
.game-info-btn{
  position:absolute;
  top:12px;
  left:12px;
  z-index:20;

  width:34px;
  height:34px;

  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);

  background:rgba(0,0,0,.72);
  color:#fff;

  font-size:20px;
  font-weight:900;
  font-style:italic;

  cursor:pointer;
}

.game-info-popup{
  position:fixed;
  inset:0;
  z-index:9999999;

  display:none;
  align-items:center;
  justify-content:center;

  padding:18px;

  background:rgba(0,0,0,.82);
}

.game-info-popup.show{
  display:flex;
}

.game-info-popup-card{
  width:100%;
  max-width:430px;
  max-height:82vh;
  overflow:auto;

  position:relative;

  background:#101313;
  border:1px solid rgba(34,224,154,.35);
  border-radius:22px;

  padding:22px;

  color:#fff;
}

.game-info-close{
  position:absolute;
  top:12px;
  right:12px;

  width:36px;
  height:36px;

  border-radius:50%;
  border:1px solid #333;

  background:#151818;
  color:#fff;

  font-size:24px;
  font-weight:900;

  cursor:pointer;
}

.game-info-popup-card h2{
  margin:0 44px 18px 0;
  font-size:24px;
}

.game-info-popup-card h3{
  margin:18px 0 8px;
  color:#22e09a;
  font-size:17px;
}

.game-info-popup-card p,
.game-info-popup-card li{
  color:#ddd;
  font-size:15px;
  line-height:1.45;
}

.game-info-popup-card ul{
  padding-left:20px;
}