@import url('https://fonts.googleapis.com/css2?family=Dangrek&display=swap');

*{
    margin: 0;
    font-family: "Dangrek", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header nav{
    background-color: black;
    display: flex;
    justify-content: space-between;
}

header nav .nav-items{
    display: flex;
}

header nav .menu{
    background-color: #F9AC04;
    width: 50px;
    height: 100%;
}

.menu img{
    width: 95%;
    height: 95%;
}

.banner {
    background-color: #333;
    color: #fff;
    width: 100%;
}

.banner img {
    width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-image: url("abstract-neon-light-lines-background_198067-226678.avif");
}

main div{
    width: 100%;
}

hr{
    background-color: aqua;
    margin: 0;
    height: 2px;
}

.countdown-container{
    width: 100%;
}

.countdown {
    width: 100%;
    display: flex;
}

.countdown .icon{
    background-color: #F9AC04;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.countdown .icon span{
    padding-left: 5px;
}

.countdown #countdown{
    height: 30px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: end;
    background-color: #F9AC04;
}

.countdown #countdown div{
    width: 70px;
}

.countdown #countdown .timer-icon{
    display: flex;
    align-items: center;
    width: 25px;
}

.countdown #countdown .timer-icon img{
    height: 20px;
}

.claim-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid white;
    padding: 5px 10px;
    margin: 20px auto;
    width: fit-content;
    border-radius: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.claim-section{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.card {
    background: linear-gradient(to bottom, #2c2c2c, #000);
    width: 40%;
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-left: 20px;
}

.image {
    width: 100%;
    height: 100%;
    background-color: yellow;
}

 .one{
    background: url('1.jpg') no-repeat center/cover;
}

 .two{
    background: url('2.jpg') no-repeat center/cover;
}

.button {
    width: 100%;
    background-color: yellow;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

.button:hover {
    background-color: #e6c200;
}

.claim-box{
    position: fixed;
    top: 100px;
    left: 10px;
    right: 10px;
    background-color: #333;
}

.claim-box .head{
    height: 40px;
    background-color: grey;
    display: flex;
    align-items: center;
}

.claim-box .head span{
    width: 90%;
    text-align: center;
    color: white;
}

.claim-box .head .cancel-icon{
    cursor: pointer;
}

.claim-box .body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.claim-box .body p{
    margin-top: 10px;
    margin-bottom: 10px;
    color: gray;
}

.claim-box .body img{
    margin-top: 20px;
    margin-bottom: 40px;
    width: 40%;
}

.body img::after {
    content: '';
    position: absolute;
    transform: rotate(-30deg);
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    animation: glowing-shadows 3s infinite;
}

    @keyframes glowing-shadows {
        0% {
            transform: rotate(-42deg) translate(-100%, -100%);
        }
        100% {
            transform: rotate(-42deg) translate(100%, 100%);
        }
        /* 100% {
            transform: rotate(0deg) translate(-100%, -100%);
        } */
    }

.claim-box .body .clt-btn{
    width: 40%;
    background-color: yellow;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.log-page{
    position: fixed;
    top: 150px;
    width: 100%;
    margin: 0 auto;
    background-image: url("bgmi-.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 20px;
}

.social-logo{
    width: 20%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.twitter-btn{
  width: 100px;
  height: 27px;
  border-radius: 3px;
  background-color: white;
  padding-left: 5px;
  display: flex;
  margin-right: 10px;
  cursor: pointer;
}

.twitter-btn span{
    width: 80%;
    text-align: center;
    padding-bottom: 10px;
}

.facebook-btn{
    width: 100px;
    height: 27px;
    border-radius: 3px;
    background-color: #1877F2;
    display: flex;
    color: white;
    cursor: pointer;
  }

.social-logo img{
    width: 100%;
}

.facelogin-popup {
    background: #fff;
    width: 95%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 10px;
    z-index: 5;
}
.facepopup-header {
    background: #1877F2;
    color: white;
    padding: 15px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 100;
    padding: 0 15px 0 0;
}
.facepopup-header img {
    width: 60px;
}
.facepopup-header .faceclose-btn {
    font-size: 24px;
    cursor: pointer;
    color: white;
    font-weight: bold;
}
.facepopup-content {
    padding: 20px;
}
.facepopup-content img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.facepopup-content p {
    font-size: 14px;
    color: #606770;
    margin-bottom: 10px;
}
.facepopup-content input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.facepassword-container {
    position: relative;
}
.facepassword-container .faceshow-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #1877F2;
    font-size: 14px;
    cursor: pointer;
}
.facelogin-btn {
    width: 100%;
    padding: 12px;
    background: #1877F2;
    color: #fff;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}
.facelogin-btn:hover {
    background: #0e5a9c;
}
.facepopup-footer {
    padding: 15px;
    font-size: 12px;
    color: #777;
}
.facepopup-footer a {
    color: #1877F2;
    text-decoration: none;
}

.twicontainer {
    background: white;
    width: 95%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 4;
}
.twiheader {
    background-color: #f8f9fa;
    color: black;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.twiheader span{
    text-align: center;
    display: flex;
    align-items: center;
}

.twiheader span img{
    width: 30px;
    height: 30px;
}
.twiclose-btn {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}
.twilogin-container {
    padding: 20px;
    text-align: center;
}
.twilogin-container h2 {
    font-size: 18px;
    margin-bottom: 10px;
}
.twilogin-container img {
    width: 50px;
    border-radius: 5px;
}
.app-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}
.subtitle {
    color: gray;
    font-size: 12px;
}
.twilogin-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}
.twilogin-btn {
    width: 100%;
    padding: 10px;
    background-color: gray;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    font-size: 14px;
}
.twifooter-text {
    font-size: 12px;
    color: gray;
    margin: 15px;
    text-align: left;
}
.twifooter-text a {
    color: #1DA1F2;
    text-decoration: none;
}

footer{
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: black;
}

footer p{
    color: grey;
    font-size: 0.8rem;
    margin-top: 10px;
}

footer nav a{
    font-size: 0.8rem;
    text-decoration: none;
    color: grey;
}


@media(max-width:375px){
    .countdown .icon span{
        font-size: 0.8rem;
    }  

    .countdown #countdown div {
        width: 55px;
        font-size: 0.8rem;
      }

    .countdown #countdown .timer-icon img{
        height: 17px;
      }

    .countdown #countdown .timer-icon {
        display: flex;
        align-items: center;
        width: 20px;
      }
}

.remove{
    display: none;
}