*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.container{
    width: 100%;
    height: 100vh;
    background-image: url(back.png);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card{
    width: 90%;
    max-width: 440px;
    color: #ffffff;
    text-align: center;
    padding: 50px 35px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}
.card img {
   width: 140px;
   border-radius: 50%; 
}
.card h2{
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
        color: #000000ab
}

.card p{
    font-size: 18px;
    margin: 10px auto;
    max-width: 330px;
        color: #000000a9
}

.card .links img {
    width: 40px;
    border-radius: 50%;
    margin: 10px 5px;
    transition: background 0.5s
}

.card .links img:hover{
    background: #0140ff;
}
.btn{
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    background: #ffffff;
    color: #40a65e;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 30px 0 10px;
}

.btn:hover{
    background: #009e7f;
  transform: scale(1.05);
  color: white;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


.changelog-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2c774400;
  color: rgba(255, 255, 255, 0.334);
  padding: 8px 16px;
  border-radius: 0px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.changelog-link:hover {
  background-color: #3fa65b00;
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}




@media screen and (max-width: 430px) {
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    overflow-y: auto;
  }

  .button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
  }

  .btn-small {
    flex: 1 1 45%;
    max-width: 160px;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 20px;
    background: #00b893;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .card {
    width: 100%;
    max-width: 440px;
    padding: 20px 10px;
    margin-top: 20px;
  }
}


