/* GLOBAL */
body{
  margin:0;
  font-family:Arial;
  background-image: url('/img/mainBG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color:#e2e8f0;
}
section{
  padding:40px 20px;
  max-width:1000px;
  margin:auto;
}
footer{
  text-align:center;
  padding:15px;
  background:#020617;
  margin-top:350px;
  display: none;
}

/* NAV */
nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#020617;
  padding:0 30px;
  height:60px; /* increased so content fits */
}
nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:20px;
  margin:0;
  padding:0;
}
nav a{
  text-decoration:none;
  color:#e2e8f0;
}
nav a:hover{
  color:#22c55e;
}

/* CARDS (general) */
.card{
  background:#020617;
  padding:20px;
  border-radius:8px;
  margin-bottom:20px;
}

/* SHOP */
#shop-items{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:20px;
}
.shop-product{
  position:relative;
  overflow:hidden;
  text-align:center;
  cursor:pointer;
  transition:transform 0.2s;
  border:1px solid #1e293b;
  background: rgba(2, 6, 23, 0.5);
  border-radius:8px;
}
.shop-product:hover{
  transform:scale(1.05);
}
.shop-product img{
  width:100%;
  height:200px;
  object-fit:contain;
  margin:10px 0;
}
.shop-product .info{
    position:absolute;
    top:0;left:0;
    width:100%;height:100%;
    background:rgba(0,0,0,0.7);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    opacity:0;
    transition:opacity 0.2s;
    text-align:center
}
.shop-product .info a{
    margin-top:15px;
}
.shop-product .info .btn{
    display:inline-block;
    margin-bottom:15px;
    padding:10px 20px;
    background:#22c55e;
    color:#000;
    text-decoration:none;
    border-radius:5px
}
.shop-product:hover .info{
  opacity:1;
}

/* TEXT */
.shop-product h3{
  margin:10px 0 5px;
  color:#22c55e;
}
.shop-product p{
  margin:5px 0 20px;
}
.shop-product:hover h3,
.shop-product:hover p{
  opacity:0;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:10px 20px;
  background:#22c55e;
  color:#000;
  text-decoration:none;
  border-radius:5px;
}

.deposit-card {
  width: 500px;
  padding: 25px;
  font-size: 18px;
}

.deposit-card input {
  width: 80%;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 12px;
}

.deposit-card button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}