@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+J:ital,wght@0,100..400;1,100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lalezar&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Lalezar&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:900&display=swap');

*{
    font-family: "Lexend", sans-serif;
  } 
  body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
  
::-webkit-scrollbar-track { background-color: transparent; }

::-webkit-scrollbar-thumb {
  background-color: #ffd000;
  border-radius: 200px;
}

.circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #ffd929;
    filter: blur(100px);
    z-index: -900;
}

.circle.top-left {
    top: -150px;
    left: -290px;
}

.circle.bottom-right {
     bottom: 10px;
    right: -50px;
    transform: translateX(50%);
}



.container {
    background-color: #ffffff00;
    padding: 20px 40px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
}

h1, h2 {
    background: linear-gradient(to right, #ffd929 25%, #000000eb 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;

}

p {
    color: #666;
    margin-bottom: 20px;
}

img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

label {
    margin-top: 10px;
    text-align: left;
    font-weight: normal;
    color: #555;
    font-size: 12px;
}

input {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

input:focus {
    border-color: #ffd929;
    outline: none;
    box-shadow: 0 0px 15px #ffd0002d;
}

.txt-answer {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    overflow-y: hidden; /* برای جلوگیری از نشان دادن اسکرول عمودی */
    resize: none; /* جلوگیری از تغییر اندازه دستی */
}

/* استایل برای زبان‌هایی که از راست به چپ نوشته می‌شوند */
.txt-answer[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* استایل برای زبان‌هایی که از چپ به راست نوشته می‌شوند */
.txt-answer[dir="ltr"] {
    direction: ltr;
    text-align: left;
}


.start-button {
    padding: 12px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(40deg,  #ffef3e, #ffd929);
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 150px; 
}

.start-button:hover {
    background: linear-gradient(40deg,  #ffd929, #d1be6b);
    box-shadow:  1px 1px 10px #0000003a,
-1px -1px 10px #00000000;
transform: scale(1.04);
color: #ffffff;
}

.start-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}


.option-button {
    padding: 12px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(40deg,  #ffef3e, #ffd929);
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 60%;
    text-align: center;
    transition: all 0.3s ease;
}

.option-button:hover {
    background: linear-gradient(40deg,  #ffd929, #d1be6b);
    box-shadow:  1px 1px 10px #00000035,
-1px -1px 10px #00000000;
transform: scale(1.04);
color: #ffffff;
}

.option-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Specific styles for Yes button */
.yes-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(40deg,  #ffef3e, #ffd929);
     color: #202020;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
}

.yes-button:hover {
       background: linear-gradient(40deg,  #ffd929, #d1be6b);
    box-shadow:  1px 1px 10px #00000035,
-1px -1px 10px #00000000;
transform: scale(1.04);
color: #ffffff;
}

.yes-button:disabled {
    background: linear-gradient(40deg,  #e1e1e1da, #e1e1e1da);
    cursor: not-allowed;
}


.no-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(40deg,  #ffef3e, #ffd929);
     color: #202020;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
}

.no-button:hover {
    background: linear-gradient(40deg,  #ffd929, #d1be6b);
    box-shadow:  1px 1px 10px #00000035,
-1px -1px 10px #00000000;
transform: scale(1.04);
color: #ffffff;
}

.no-button:disabled {
    background: linear-gradient(40deg,  #e1e1e1da, #e1e1e1da);
    cursor: not-allowed;
}


.next-button {
    align-self: flex-end;
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #a6a6a600;
    color: #ffc400;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px;
    position: fixed; 
    top: 20px; 
    right: -5px; 
    font-size: 14px;
text-shadow: 0px 0px 20px #00000040;
}
.next-button:hover{
    transform: scale(1.04);
}


.next-button:disabled {
    background-color: #cccccc00;
    cursor: not-allowed;
    color: #bcbcbc;
    text-shadow:none;
}
.next-button:disabled i{
    background-color: #cccccc00;
    cursor: not-allowed;
    color: #ffffff00;
    text-shadow:none;
}

.submitbtn{
    padding: 12px 20px;
    margin: 10px 0px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(40deg,  #ffef3e, #ffd929);
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submitbtn:hover {
    background: linear-gradient(40deg,  #ffd929, #d1be6b);
    box-shadow:  1px 1px 10px #00000035,
-1px -1px 10px #00000000;
transform: scale(1.04);
color: #ffffff;
}


#social-section {
    text-align: center;    
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 450px;
    height: 50px;
    margin: 15px auto;
    padding: 15px 20px;
    border-radius: 9px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #000;
    font-size: 18px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
margin-left: -50px;
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.social-button img {
    width: 60px;
    height: 60px;
    margin-left: -10px;
    margin-top: 20px;
}

.social-button span {
    flex-grow: 1;
    text-align: left;
    margin-left: 10px;
    font-size: 18px;
}

.social-button small {
    display: block;
    font-size: 13px;
    color: #555;
    padding: 0px  10px  0px 0px;
}

.join-button {
    background-color: #ffeb3b;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}

.join-button:hover {
    background-color: #fdd835;
}












.menu-cont-r-by-jk {
    position: fixed;
    bottom: 30px;
    right: -245px; 
    width: 300px;
    height: 30px;
    background-color: #ffd929;
    transition: right 0.5s ease-in-out;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    z-index: 900;
    display: none;
   
  }
  .menu-cont-r-by-jk.show {
    right: -50px;
  }
  .menu-cont-r-by-jk.shows {
    display: block;
    opacity: 1;
  }
  .menu-button-r-by-jk {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 50px;
    background-color: #ffd929;
    border: none;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 20px;
  }
  .menu-content-r-by-jk {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .chat-btn-by-jk  {
    background-color: white;
    padding: 5px;
    border: none;
        margin-left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    margin-top: -5px;
    color: #ffd929;
    font-size: 25px;
      transition: all 0.3s ease;
      z-index: 200;
  }
  .chat-btn-by-jk i {
  margin-top: -8px;
  }
  .chat-btn-by-jk:hover {
    box-shadow:  1px 1px 10px #0000004c,
    -1px -1px 10px #00000000;
    transform: scale(1.01);
    color: rgb(255, 255, 255);
    background: linear-gradient(40deg,   #fffd8091, #ffe77a);
    }
  .lang-btn-men-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -5px;
   margin-right: 45px;
  }
  .lang-btn-menu {
    background-color: white;
    padding: 5px;
    border: none;
    width: 60px;
    height: 35px;
    border-radius: 8px;
    text-align: center;
    margin: 2px;
    font-family: "Alexandria", sans-serif;
    font-size: 12px;
    transition: all 0.3s ease;
  }
  
  .lang-btn-menu:hover {
    box-shadow:  1px 1px 5px #00000031,
    -1px -1px 5px #00000000;
    transform: scale(1.01);
    color: rgb(255, 255, 255);
    background: linear-gradient(40deg,   #fffb0f91, #ffd929);
    }









@media (max-width: 768px){

    .social-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        border-radius: 7px;
        margin-left: 0px;
    }
    .social-button span {
        flex-grow: 1;
        text-align: left;
        margin-left: 10px;
        font-size: 14px;
    }
    
    .social-button small {
        display: block;
        font-size: 10px;
        color: #555;
        padding: 0px  10px  0px 0px;
    }
    .join-button {
        background-color: #ffeb3b;
        border: none;
        padding: 8px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease-in-out;
    }
    .circle {
        width: 300px;
        height: 300px;
    }
    .circle.top-left {
        top: -100px;
        left: -200px;
    }
    

}