@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Rubik:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    font-weight: normal;
    outline: none;
    border-collapse: collapse;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Oswald", sans-serif;
    width: 100%;
    font-size: 18px;
    min-height: 100vh;
    color: #FFF;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.off {
    overflow: hidden;
}

.piri {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: rgb(12, 12, 12);

}

.piri-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: url(accets/img/bg.png) rgb(12, 12, 12) center / cover no-repeat;
    height: 100vh;
    max-width: 400px;
}

.piri-sum {
    color: #BDEE00;
    text-align: center;
    font-size: 90px;
    font-weight: 700;
    letter-spacing: -2.7px;
    line-height: 90%;
    text-transform: uppercase;
    margin-top: 10px;
}

.piri-box {
    position: relative;
    text-align: center;
}

.piri-info {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    padding: 0;
}

@media (max-height: 600px) {
    .piri-info {
        font-size: 30px;
    }
}

.piri-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.piri-info-wrap {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
    padding: 20px 10px 10px 10px;
    margin: 20px 10px 0 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.5);
    position: relative;
}

.piri-subtitle {
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.piri-content {
    color: #000;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    padding: 6px 12px;
    text-transform: uppercase;
    border-radius: 100px;
    background: #BDEE00;
    text-align: center;
    display: none;
}

.piri-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 10px 0;
}

.piri-info-text {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
}

.piri-info-text span {
    text-transform: uppercase;
}

.piri-button {
    cursor: pointer;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    background: #bdee00;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    padding: 13px 0 15px;
    width: 320px;
    text-align: center;
    color: #000;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -2px;
    -webkit-animation: pulse 3s infinite;
            animation: pulse 3s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

.calc__continer {
    display: flex;
    flex-direction: column;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .close-btn:hover {
        background: rgba(255, 0, 0, 0.8);
        transform: scale(1.1);
    }