*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.container{
    width: 100%;
    height: 100vh;
    background-image: url(back.jpg);
    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;
  }
}

.container {
  transition: background-image 0.5s ease;
}


.glass-clock {
  position: absolute;
  bottom: 50px;
  right: 20px;
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.038);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

.clock-segment {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff6b;
  background: rgba(255, 255, 255, 0.083);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 60px;
  text-align: center;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.clock-segment.flip {
  transform: rotateX(180deg);
}


@media screen and (max-width: 600px) {
  .glass-clock {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
  }

  .clock-segment {
    font-size: 24px;
    min-width: 40px;
  }
}

.fullscreen-icon-btn {
  position: fixed;
  bottom: 70px; 
  left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1002;
}

.fullscreen-icon-img {
  width: 50px; 
  height: 50px;
  pointer-events: none;
  opacity: 0.3;
  
}

.fullscreen-icon-btn:hover .fullscreen-icon-img {
  filter: brightness(1.2);
  transform: scale(1.05);
  transition: all 0.5s ease;
  opacity: 100;
}