@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: "Inter", sans-serif;
    color: #000;
    width: 100%;
    height: 100vh;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 860px;  
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
}
.app {
    padding-top: 30px;
    width: 100%;
    height: 100vh;
    background: url('/themes/spinnerstake/images/spinbg.jpg') no-repeat center center;
    background-size: cover;
    h1 {
        color: #FED10A;
        text-align: center;
        text-transform: uppercase;
        font-size: 2.5vw;
        font-size: 36px;
        margin-bottom: 25px;
        @media (max-width: 500px) {
          font-size: 6.5vw;
        }
    }
    .timer {
      text-align: center;
      color: #3DDEED;
      font-size: 26px;
      font-variant-numeric: tabular-nums;
    }
    .wheel-ring {
      margin: auto;
      margin-top: 30px;
      text-align: center;
      position: relative;
      .pointer{
        width: 130px;
        margin: auto;
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        img{
          width: 100%;
        }
      }
      .wheel {
        width: 420px;
        height: 420px;
        text-align: center;
        @media (max-width: 500px) {
          width: 300px;
          height: 300px;
        }
      }
    }
    button {
        width: 366px;
        height: 126px;
        text-transform: uppercase;
        border: 0;
        color: #fff;
        font-size: 32px;
        font-weight: 900;
        margin: 20px auto 0px;
        display: table;
        cursor: pointer;
        background: url('/themes/spinnerstake/images/tapbutton.png') no-repeat center center;
        transition: all .3s ease;
        @media (max-width: 500px) {
          font-size: 24px;
          width: 250px;
          height: 86px;
          background-size: cover;
        }
        &:hover{
          color: #FED10A;
          transition: all .3s ease;
        }
    }
}
.popup {
    position: fixed;
    display: none;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    .inner{
      width: 100%;
      height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      position: absolute;
      border-radius: 36px;
      width: 440px;
      height: 440px;
      overflow: hidden;
      border-radius: 36px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      background: linear-gradient(to bottom, #ffffff 26%,#ffffff 26%,#ffcef2 100%);
      gap: 15px;
      @media (max-width: 500px) {
        width: 350px;
        height: 400px;
      }
    }
    .popup-content {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: url('/themes/spinnerstake/images/flowers.png') no-repeat top center;
        img {
            width: 81px;
            position: relative;
            z-index: 3;
            margin-top: 50px;
        }
        h2 {
            font-size: 32px;
            color: #FF8000;
            margin: 15px 0px;
        }
        p {
            font-size: 16px;
            color: #474747;
        }
        a {
            max-width: 240px;
            height: 60px;
            background: linear-gradient(to bottom, #ff7f00 0%,#c86400 100%);
            width: 100%;
            border-radius: 100px;
            display: flex;
            color: #fff;
            text-decoration: none;
            text-align: center;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            margin-top: 30px;
            font-weight: 900;
            border: 3px solid #FED10A;
        }
    }
}
.popup.show {
    display: block;
}

