 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
     /* font-weight: bold; */
     background: #f2f2f2;
     color: #000000;
     overflow-x: hidden;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .container {
     width: 100%;
     max-width: 480px;
     height: 90vh;
     max-height: 800px;
     position: relative;
     overflow: hidden;
     background: #ffffff;
     box-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, rgb(255, 255, 255) 0px 3px 1px 0px inset;
 }

 .progress-bar-container {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: rgba(26, 26, 26, 0.08);
     z-index: 100;
 }

 .progress-bar-fill {
     height: 100%;
     background: #1a1a1a;
     width: 0%;
     transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }

 .task-wrapper {
     position: relative;
     width: 100%;
     height: 100%;
 }

 .task-card {
     position: absolute;
     width: 100%;
     height: 100%;
     padding: 40px 30px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     opacity: 0;
     transform: translateX(100%);
     transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }

 .task-card.active {
     opacity: 1;
     transform: translateX(0);
     z-index: 10;
 }

 .task-card.prev {
     opacity: 0;
     transform: translateX(-100%);
 }

 .task-header {
     text-align: center;
     margin-bottom: 30px;
 }

 .task-number {
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 2px;
     margin-bottom: 10px;
     opacity: 0.6;
 }

 .task-title {
     font-size: 32px;
     font-weight: 800;
     margin-bottom: 20px;
     line-height: 1.2;
     font-family: var(--font-4);
     font-family: Arial, Helvetica;

 }

 .task-description {
     font-size: 16px;
     line-height: 1.5;
     opacity: 0.8;
     margin-bottom: 30px;
 }

 .task-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 20px;
 }

 .button-group {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .task-button {
     padding: 18px 30px;
     font-size: 16px;
     font-weight: 700;
     border: .7px solid #e5e5e5;
     background: #f2f2f2;
     color: #1a1a1a;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     text-decoration: none;
     display: inline-block;
     text-align: center;
     position: relative;
     overflow: hidden;
     box-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, rgb(255, 255, 255) 0px 3px 1px 0px inset;
     border-radius: 5px;
 }

 .task-button:hover {
     background: linear-gradient(to bottom, #424242, #363636, #2a2a2a, #1e1e1e, #131313);
     color: #ffffff;
     transform: translateY(-2px);
     box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px, rgba(0, 0, 0, 0.08) 0px 8px 16px;
     box-shadow: inset 2px 3px 3px 0px rgba(108, 108, 108, 0.858), 3px 3px 4px 0px rgb(152, 152, 152);
 }

 .task-button:active {
     transform: translateY(0);
 }

 .task-button:disabled {
     opacity: 0.4;
     cursor: not-allowed;
     background: #ffffff;
     color: #1a1a1a;
 }

 .task-button:disabled:hover {
     background: #ffffff;
     color: #1a1a1a;
     transform: none;
     box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px, rgba(0, 0, 0, 0.04) 0px 4px 8px;
 }

 .input-group {
     margin-top: 20px;
 }

 .task-input {
     width: 100%;
     padding: 18px 20px;
     font-size: 16px;
     border: 2px solid #1a1a1a;
     background: #ffffff;
     color: #1a1a1a;
     font-family: inherit;
     transition: all 0.3s ease;
     box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px;
 }

 .task-input:focus {
     outline: none;
     box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px, rgba(0, 0, 0, 0.06) 0px 2px 6px;
     border-color: #1a1a1a;
 }

 .task-input::placeholder {
     color: rgba(26, 26, 26, 0.4);
 }

 .submit-button {
     width: 100%;
     margin-top: 20px;
 }

 .navigation {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 30px;
 }

 .nav-button {
     padding: 15px 40px;
     font-size: 16px;
     font-weight: 700;
     border: 2px solid #1a1a1a;
     background: linear-gradient(to bottom, #424242, #363636, #2a2a2a, #1e1e1e, #131313);
     color: #ffffff;
     border-radius: 5px;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px, rgba(0, 0, 0, 0.06) 0px 2px 4px;
 }

 .nav-button:hover {
     background: #ffffff;
     color: #1a1a1a;
     transform: translateY(-2px);
     box-shadow: rgba(0, 0, 0, 0.16) 0px 6px 12px, rgba(0, 0, 0, 0.08) 0px 3px 6px;
 }

 .nav-button:disabled {
     opacity: 0.3;
     cursor: not-allowed;
     transform: none;
     box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px;
 }

 .nav-button:disabled:hover {
     background: #1a1a1a;
     color: #ffffff;
     box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px;
 }

 .progress-dots {
     display: flex;
     gap: 8px;
 }

 .dot {
     width: 10px;
     height: 10px;
     background: rgba(26, 26, 26, 0.2);
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .dot.active {
     background: #1a1a1a;
     width: 30px;
     border-radius: 5px;
 }

 .completion-screen {
     text-align: center;
     padding: 60px 30px;
 }

 .completion-icon {
     font-size: 80px;
     margin-bottom: 30px;
     animation: scaleIn 0.5s ease;
 }

 .completion-title {
     font-size: 36px;
     font-weight: 800;
     margin-bottom: 20px;
 }

 .completion-text {
     font-size: 18px;
     opacity: 0.7;
     line-height: 1.6;
 }

 @keyframes scaleIn {
     from {
         transform: scale(0);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 .small-text {
     font-size: 14px;
     opacity: 0.6;
     margin-top: 10px;
 }

 @media (max-width: 480px) {
     .container {
         max-height: 100vh;
     }

     .task-card {
         padding: 30px 20px;
     }

     .task-title {
         font-size: 28px;
     }
 }




 .twitter-btn {
     background: #2f2e2e;
     color: white;
     width: fit-content;
     margin: 0 auto;
 }


 /*  */


 .nft-1 {
     position: absolute;
     top: 50px;
     left: -10px;
     filter: blur(10px);
     width: 350px;
     height: 350px;
     rotate: 15deg;
     opacity: .9;
 }

 .nft-2 {
     position: absolute;
     bottom: 200px;
     right: 10px;
     filter: blur(10px);
     width: 350px;
     height: 350px;
     rotate: -15deg;
     opacity: .9;
 }

 .nft-3 {
     position: absolute;
     bottom: 100px;
     left: 300px;
     filter: blur(10px);
     width: 300px;
     height: 300px;
     rotate: -15deg;
     opacity: .9;
 }

 @media (max-width:800px) {

     .nft-1,
     .nft-2,
     .nft-3 {
         /* display: none; */
         width: 180px;
         height: 180px;
     }
     .nft-3 {
        left: 40px;
        bottom: 50px;
     }
 }

 @media (max-width:700px) {
     .progress-dots {
         display: none;
     }

     body {
         padding: 0px 20px;
     }

     .nav-button {
         padding: 12px 30px;
     }

 }

 @media (max-width:500px) {
     .task-description {
         font-size: 13px;
         line-height: 1.3;
     }

     .nav-button {
         padding: 8px 16px;
         font-size: 14px;
     }

     .task-button {
         padding: 14px 30px;
     }


 }


 /*  */

 .task-wrapper {
     display: none;
 }

 .progress-bar-container {
     display: none;
 }


 .container {
     display: flex;
     align-items: center;
     max-height: 40vh !important;
     background: var(--secondary-color);
     background: #f2f2f2;
     border-radius: 10px;
     box-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, rgb(255, 255, 255) 0px 3px 1px 0px inset;

     max-width: min(1100px, 93%);
     margin: 0 auto;

 }

 .announcement {
     text-align: center;
     font-family: var(--font-4);
     font-family: var(--font-2);
     margin-top: 30px;
     padding: 0px 10px;
     font-size: clamp(30px, 9vw,90px);
     /* font-weight: normal; */


     background: linear-gradient(to bottom, #0b0b0b, #363636, #646464, #969696, #cbcbcb);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
 }

 @media (max-width:760px) {
     .announcement {
         /* font-size: 40px; */
     }
 }

 @media (max-width:500px) {
     .container {
         max-height: 25vh !important;

     }

     .announcement {
         font-size: 33px;
         margin: auto;
     }
 }