@font-face {
    font-family: 'Raleway';
    src: url('./font/Raleway-Regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('./font/Raleway-Medium.ttf') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('./font/Raleway-SemiBold.ttf') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('./font/Raleway-ExtraBold.ttf') format('woff2');
    font-weight: 800;
    font-style: normal;
}

:root{
  --background: #0d0833;
  --header: #4c2553dd;
  --btn:  #ee09a9;
  --promo: #291955a4;
  --table: #56457ce4; 
  --white: #ffdaf6;
  --black: #16171b;
  --title: #FFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  
  a {
    text-decoration: none;
    color: inherit;
    transition: all .4s ease-in-out;
  }
  
  img, video {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button {
    all: unset;
    cursor: pointer;
    box-sizing: border-box;
  }
  
  input, textarea, button, select {
    font: inherit;
    border: none;
    outline: none;
  }
  
  body {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--background);
    color: var(--white);
    box-sizing: border-box;
    background-image: url(./img/layer.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
 
  ol, ul {
    list-style-position: inside;
    padding-left: 8px;
}

ul li {
  list-style: none;
}

ul li::before{
  content: "❇ ";
  color: var(--btn);
}

  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--title);
    text-shadow:    1px 1px 2px var(--white),
    0 0 0.2em var(--btn);
  }

  h1{
    font-size: 5rem;
    font-weight: 800;
  }


  header{
    padding: 10px 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header);
    backdrop-filter: blur(2px);
    max-width: 100vw;
    margin: 0 auto;
    position: sticky;
    top: 0;
    border-bottom: 2px solid var(--promo);

  }



  .header-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .white-btn{
    padding: 10px 20px;
    font-size: 1.2rem;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 18px;
    margin-right: 50px;
  }

  .green-btn{
    padding: 12px 20px;
    font-size: 1.2rem;
    background-color: var(--btn);
    color: var(--title);
    border-radius: 18px;
    text-align: center;
  }

  .white-btn:hover, .green-btn:hover{
    background-color: var(--white);
    color: var(--black);
  }

  .wraper{
    max-width: 80%;
    margin: 0 auto;
  }

  .promo{
    background-color: var(--promo);
    display: flex;
    flex-wrap: wrap;
    border-radius: 18px;
    padding: 20px;
  }

  .txt{
    font-size: 1rem;
    margin: 14px 0;
  }

  .table-wrapper {
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: var(--border-radius);
  width: 100%;
}

.table-wrapper table {
  width: 100%;
  min-width: 320px;
    font-size: 1rem;
    margin: 40px auto;
    border-collapse: separate;
    border-spacing: 0;
  }

  table thead th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  table thead th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
        
  table thead th {
    background-color: var(--table);
    padding: 12px 16px;
    text-align: left;
}

tr td{
    text-align: start;
    padding: 8px 10px;
}
  tr:nth-child(even) {
    background-color: var(--table);
    padding: 4px 10px;

}

table tbody tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  
  table tbody tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .flex{
    display: flex;
    align-items: start;
    justify-content: space-between;
  }

 .flex-content{
    width: 50%;
  }
   
  h2{
    font-size: 3.2rem;
    font-weight: 800;
    margin: 10px;
  }

  h3{
    font-size: 3rem;
    font-weight: 600;
    margin: 10px;
  }

  ul li{
    margin: 10px 0;
  }


  .bonus-table {
    border-collapse: separate;
    border-spacing: 0 4px;
    width: 100%;
    font-family: sans-serif;
    color: var(--white);
    margin: 10px 0;
  }
  
  .bonus-table thead th {
    background-color: var(--table); 
    padding: 12px 16px;
    text-align: left;
}

.bonus-table thead th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.bonus-table thead th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
  
.bonus-table tbody td {
    padding: 12px 16px;
}
    
.bonus-table tbody tr {
    overflow: hidden;
    border-radius: 12px;
}


.bonus-table thead th:first-child,
.bonus-table tbody td:first-child {
    width: 30%;
}

.bonus-table thead th:last-child,
.bonus-table tbody td:last-child {
    width: 70%;
}
    


      /* qa section */
      .faq-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
        padding: 10px 10px;
    }

    
    .qa-scontent-title{
        margin: 10px auto;
        border: 1px solid var(--btn);
        border-radius: 20px;
        width: 80%;
        padding: 10px 20px;
    }
    
    .qa-title{
      width: 100%;
      position: relative;
      margin: 0;
      padding: 8px 4px 18px 40px;
      display: block;
      cursor: pointer;
    }

    .qa-scontent-title h3{
        font-size: 1.5rem;
    }
    
    .qa-answaer {
      font-size: 18px;
      padding: 0px 8px;
      margin: 0 10px;

    }
    

footer{
    padding: 20px 200px;
    font-size: 1.2rem;
}

footer a:hover{
    color: var(--btn);
}

.active{
    color: var(--btn);
}


 @media (max-width: 1024px) {

    header{
        padding: 10px;
    }

    header img{
        width: 80px;
        height: auto;
    }

    .white-btn{
        padding: 6px 10px;
        font-size: 0.9rem;
        border: 1px solid var(--white);
        border-radius: 10px;
        margin-right: 10px;
        text-align: center;
      }
    
      .green-btn{
        padding: 6px 10px;
        font-size: 0.9rem;
        background-color: var(--btn);
        border-radius: 10px;
        text-align: center;
      }
    
      .white-btn:hover, .green-btn:hover{
        background-color: var(--white);
        color: var(--black);
      }
    

    .wraper{
        max-width: 96%;
        margin: 4px auto;
        padding: 4px 8px;
    }

    .promo{
        width: 100%;
        padding: 4px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    h1{
        font-size: 1.4rem;
    }


    h2{
        font-size: 1.6rem;
        margin: 4px auto;
    }

    h3{
        font-size: 1.2rem;
        margin: 4px auto;
    }

    .flex{
        flex-direction: column;
        width: 100%;
    }

    .flex-content{
        width: 100%;
    }

    .bonus-table{
        font-size: 0.8rem;
    }
    .bonus-table thead th {
        padding: 6px 10px;
    }

    .bonus-table tbody td {
        padding: 6px 10px;
    }


          /* qa section */
          .faq-section{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            width: 100%;
            padding: 10px 10px;
        }

        
        .qa-scontent-title{
            margin: 10px auto;
            border: 1px solid var(--btn);
            border-radius: 16px;
            width: 100%;
        }
          
        .qa-scontent-title h3{
            font-size: 1rem;
        }
        
        .qa-answaer {
          font-size: 0.8rem;
          padding: 0px 6px;
        }
        
  
        footer{
            font-size: 0.9rem;
            flex-direction: column;
            padding: 10px;
        }

        footer a{
            margin: 6px auto;
        }
        
}
