/* RAMTECH GAME FINDER - COMPACT PRODUCT CARD DESIGN */

.rtgf{
  width:100%;
  padding:28px 12px;
  background:#f4f6f8;
  font-family:Arial,Helvetica,sans-serif;
  color:#111;
  box-sizing:border-box;
  overflow:hidden;
}

.rtgf *{
  box-sizing:border-box;
}

.rtgf__wrap{
  max-width:1280px;
  margin:0 auto;
  padding:18px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  box-shadow:0 10px 28px rgba(0,0,0,.055);
}

.rtgf__hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid #ececec;
  border-radius:15px;
  padding:12px 14px;
  margin-bottom:18px;
}

.rtgf__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius:999px;
  background:#0f8a26;
  color:#fff;
  font-size:10px;
  font-weight:900;
  margin-bottom:0;
  line-height:1.2;
}

.rtgf__hero h2{
  margin:0 0 5px;
  color:#111;
  font-size:20px;
  line-height:1.15;
  font-weight:900;
}

.rtgf__hero p{
  margin:0;
  color:#555;
  font-size:12px;
  line-height:1.4;
}

.rtgf__hero-card{
  width:auto;
  min-width:92px;
  flex:0 0 auto;
  padding:7px 10px;
  border-radius:999px;
  background:#111;
  color:#fff;
  box-shadow:none;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.rtgf__hero-card strong{
  display:block;
  color:#fff;
  font-size:11px;
  line-height:1.15;
  margin:0;
  white-space:nowrap;
}

.rtgf__hero-card span{
  display:none;
}

.rtgf__games{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
  margin-bottom:22px;
}

.rtgf__game{
  min-height:124px;
  background:#fff;
  color:#111;
  border:1px solid #e4e7e5;
  border-radius:16px;
  padding:13px 12px;
  cursor:pointer;
  text-align:left;
  transition:.18s;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  box-shadow:0 5px 14px rgba(0,0,0,.04);
}

.rtgf__game:hover,
.rtgf__game.is-active{
  background:#f3fbf5;
  border-color:#0f8a26;
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(15,138,38,.14);
}

.rtgf__game::before{
  content:"";
  position:absolute;
  right:-28px;
  bottom:-44px;
  width:86px;
  height:86px;
  border-radius:50%;
  background:rgba(15,138,38,.07);
}

.rtgf__icon{
  width:50px;
  height:50px;
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
}

.rtgf__icon img{
  width:46px;
  height:46px;
  max-width:46px;
  max-height:46px;
  object-fit:contain;
  display:block;
}

.rtgf__game strong{
  display:block;
  font-size:13px;
  line-height:1.25;
  color:#111;
  position:relative;
  z-index:2;
}

.rtgf__game span:last-child{
  display:block;
  color:#0f8a26;
  font-size:11px;
  font-weight:800;
  position:relative;
  z-index:2;
}

.rtgf__empty{
  text-align:center;
  padding:26px;
  border-radius:18px;
  background:#fff;
  border:1px dashed #cfd9d2;
  color:#111;
}

.rtgf__empty span{
  font-size:30px;
}

.rtgf__empty strong{
  display:block;
  font-size:18px;
  margin-top:8px;
  color:#111;
}

.rtgf__empty p{
  color:#666;
  margin:8px 0 0;
}

.rtgf__selected-game{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid #e4e7e5;
  border-radius:16px;
  padding:13px 15px;
  margin-bottom:15px;
  color:#111;
}

.rtgf__selected-game span{
  font-size:18px;
  font-weight:900;
  color:#111;
}

.rtgf__selected-game strong{
  background:#0f8a26;
  color:#fff;
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
}

/* ÜRÜN ÖNERİ KARTLARI */
.rtgf__premium-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.rtgf__premium-card{
  background:#fff;
  color:#111;
  border:1px solid #e5e7eb;
  border-radius:17px;
  padding:12px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  transition:.18s;
  animation:rtgfIn .22s ease;
  display:grid;
  grid-template-columns:135px 1fr;
  gap:12px;
  min-height:100%;
}

.rtgf__premium-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(0,0,0,.10);
  border-color:#0f8a26;
}

.rtgf__pc-visual{
  height:100%;
  min-height:170px;
  background:linear-gradient(145deg,#ffffff,#f5f7f6);
  border:1px solid #edf0ee;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:0;
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.8);
}

.rtgf__pc-visual img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:8px;
  transform:scale(1);
  transition:.22s ease;
}

.rtgf__premium-card:hover .rtgf__pc-visual img{
  transform:scale(1.08);
}

.rtgf__pc-icon{
  font-size:38px;
}

.rtgf__pc-visual span{
  display:none;
}

.rtgf__pc-main{
  display:flex;
  flex-direction:column;
  flex:1;
  min-width:0;
}

.rtgf__tag-row{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:8px;
}

.rtgf__tag{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border-radius:999px;
  background:#e9f7ed;
  color:#0f8a26;
  font-size:10px;
  font-weight:900;
}

.rtgf__tag.dark{
  background:#111;
  color:#fff;
}

.rtgf__pc-main h3{
  margin:0 0 5px;
  font-size:15px;
  line-height:1.2;
  color:#111;
}

.rtgf__sub{
  margin:0 0 7px;
  color:#555;
  font-size:11px;
  line-height:1.35;
}

.rtgf__specs{
  display:grid;
  grid-template-columns:1fr;
  gap:6px;
  margin:8px 0;
}

.rtgf__spec{
  background:#f3f4f6;
  color:#111;
  border-radius:9px;
  padding:7px 8px;
  font-size:10.5px;
  font-weight:800;
  line-height:1.25;
}

.rtgf__fpsbox{
  background:#f3f4f6;
  color:#111;
  border-radius:11px;
  padding:8px;
  margin-top:8px;
}

.rtgf__fpsbox small{
  display:block;
  color:#666;
  font-size:10.5px;
  font-weight:700;
  margin-bottom:3px;
}

.rtgf__fpsbox strong{
  display:block;
  font-size:13px;
  color:#111;
}

.rtgf__bar{
  height:6px;
  background:#dfe7e1;
  border-radius:999px;
  overflow:hidden;
  margin-top:7px;
}

.rtgf__bar span{
  display:block;
  height:100%;
  background:linear-gradient(90deg,#0f8a26,#32d957);
  border-radius:inherit;
}

.rtgf__actions{
  margin-top:auto;
  padding-top:9px;
}

.rtgf__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  background:#0f8a26;
  color:#fff !important;
  text-decoration:none;
  border-radius:10px;
  padding:9px 11px;
  font-weight:900;
  transition:.18s;
  font-size:12px;
}

.rtgf__btn:hover{
  background:#0b711f;
  transform:translateY(-2px);
}

.rtgf__note{
  display:none;
}

@keyframes rtgfIn{
  from{opacity:0;transform:translateY(8px);}
  to{opacity:1;transform:translateY(0);}
}

@media(max-width:980px){
  .rtgf__hero{
    display:flex;
  }

  .rtgf__hero-card{
    display:flex;
  }

  .rtgf__games{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .rtgf__premium-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .rtgf__premium-card{
    grid-template-columns:125px 1fr;
  }
}

@media(max-width:640px){
  .rtgf{
    padding:24px 10px;
  }

  .rtgf__wrap{
    padding:14px;
    border-radius:18px;
  }

  .rtgf__hero{
    padding:12px;
    gap:8px;
  }

  .rtgf__hero-card{
    min-width:78px;
    padding:6px 8px;
  }

  .rtgf__hero-card strong{
    font-size:10px;
  }

  .rtgf__eyebrow{
    font-size:10px;
    padding:5px 9px;
  }

  .rtgf__hero h2{
    font-size:22px;
  }

  .rtgf__hero p{
    font-size:13px;
  }

  .rtgf__games{
    display:flex;
    overflow-x:auto;
    gap:10px;
    padding-bottom:8px;
  }

  .rtgf__game{
    min-width:145px;
  }

  .rtgf__premium-list{
    grid-template-columns:1fr;
  }

  .rtgf__premium-card{
    grid-template-columns:105px 1fr;
    gap:10px;
  }

  .rtgf__pc-visual{
    min-height:145px;
  }

  .rtgf__pc-main h3{
    font-size:15px;
  }

  .rtgf__sub{
    font-size:11px;
  }

  .rtgf__spec{
    font-size:10px;
    padding:6px 7px;
  }
}