.inter-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html, body {
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #11181b;
    overflow-y: auto;
    scrollbar-color: rgb(14, 12, 12) transparent;
    background-color: #121212;
}

.head-frame {
    height: 70px;
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-color: #191d23e7;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(128, 128, 128, 0.11);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.432);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 300px);
    box-sizing: border-box;
}

.frame-1 {
    width: 100%;
    min-height: 870px;
    height: auto;
    background-color: #11181b;
    margin-top: 70px;
    padding: 0 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

/* Left Glow */
.frame-1::before {
  content: "";
  position: fixed;
  top: -150px;
  left: -100px;
  width: clamp(400px, 50vw, 800px);
  height: clamp(400px, 50vw, 800px);
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 170, 0.75),
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

/* Right Glow */
.frame-1::after {
  content: "";
  position: fixed;
  bottom: -100px;
  right: -150px;
  width: clamp(400px, 50vw, 800px);
  height: clamp(400px, 50vw, 800px);
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 170, 0.75),
    transparent 70%
  );
    pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(1);
  }
  70% {
    opacity: 0.75;
    transform: scale(1.1);
  }
}

.head-title {
    font-size: clamp(18px, 3vw, 25px);
    font-weight: 700;
    color: white;
    margin: 0;
}

.buttons-frame {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
}

.header-button {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: white;
    white-space: nowrap;
    padding: 10px 15px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: 250ms;
}

.header-button:hover {
    cursor: pointer;
    color: black;
    background-color: #00ff9942;
}

.green-button {
    color: black;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 35px -10px #00ff99;
    background-color: #00ff99;
}

.green-button:hover {
    color: black;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 35px -10px #00ff99;
    background-color: #00ff99;
}

.hover-frame {
    display: flex;
    height: fit-content;
    width: 100%;
    margin-top: clamp(40px, 10vw, 80px);
}

.hover-text {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: white;
    background-color: #191d23e7;
    backdrop-filter: blur(10px);
    padding: 10px 26px;
    border-radius: 19px;
    border: 1px solid rgba(128, 128, 128, 0.11);
    box-shadow: 0px 3px 15px -2px rgba(0, 0, 0, 0.432);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.maintext-large {
    font-size: clamp(40px, 10vw, 96px);
    font-weight: 700;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    text-align: center;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(to right, #00ff99, #00ffbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.maintext-regular {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 400;
    color: white;
    margin-top: 6px;
    margin-bottom: 0;
    display: block;
    text-align: center;
    line-height: 1.2;
}

.middle-text-frame {
    width: 100%;
}

.maintext-small {
    max-width: 700px;
    width: 90%;
    text-align: center;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 400;
    color: #86909a;
    margin-top: clamp(20px, 4vw, 30px);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.middle-buttons-frame {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: clamp(30px, 5vw, 40px);
    padding: 0 20px;
    box-sizing: border-box;
}

.left-button {
    display: inline-block;
    text-align: center;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: black;
    border: none;
    min-width: 160px;
    width: auto;
    padding: 10px 20px;
    transition: 250ms;
}

.left-button:hover {
    padding: 10px 20px;
    transform: scale(1.02);
    cursor: pointer;
}

.right-button {
    z-index: 1000;
    display: inline-block;
    text-align: center;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: white;
    border: 1px solid #00ff9952;
    background-color: rgb(14, 13, 13);
    border-radius: 10px;
    min-width: 160px;
    width: auto;
    padding: 10px 20px;
}

.right-button:hover {
    padding: 10px 20px;
    transform: scale(1.02);
    cursor: pointer;
}

.bottom-frame {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: clamp(40px, 8vw, 80px);
    padding: 0 20px;
    box-sizing: border-box;
}

.stat-frame {
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    height: auto;
    min-height: 166px;
    background-color: #191d23e7;
    backdrop-filter: blur(10px);
    padding: 20px 26px;
    z-index: 999;
    border-radius: 19px;
    border: 1px solid rgba(128, 128, 128, 0.123);
    box-shadow: 0px 3px 15px 1px rgba(0, 0, 0, 0.432);
    transition: 200ms;
}

.stat-frame:hover {
    transform: scale(1.07);
    box-shadow: 0px 3px 40px -20px #00ff99;
}

.stat-icon {
    width: 25px;
    height: 25px;
    padding: 15px 15px;
    border-radius: 10px;
    margin-top: 15px;
    background-color: #00ff992f;
    color: #00ff99;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.stat-title {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 500;
    color: white;
    margin-bottom: 0;
    text-align: center;
}

.stat-description {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    color: #86909a;
    margin-top: 15px;
    text-align: center;
}

.left-stat {
    margin-left: 0;
}

.right-stat {
    margin-right: 0;
}

.frame-2 {
    width: 100%;
    min-height: 870px;
    height: auto;
    background-color: #0b0f11;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    box-sizing: border-box;
}

.frame-2-large {
    margin-top: clamp(50px, 10vw, 90px);
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1.1;
}

.frame-2-small {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 400;
    color: #86909a;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

.about-frame {
    width: 100%;
    max-width: 1000px;
    height: auto;
    background-color: #191d23e7;
    backdrop-filter: blur(10px);
    padding: 30px 26px;
    margin-top: clamp(30px, 6vw, 50px);
    z-index: 999;
    border-radius: 19px;
    border: 1px solid rgba(128, 128, 128, 0.123);
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 3px 15px 1px rgba(0, 0, 0, 0.432);
    box-sizing: border-box;
}

.about-text-1 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 500;
    color: #dbdde0;
    margin-top: clamp(20px, 5vw, 50px);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.about-text-2 {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    color: #86909a;
    margin-top: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.about-frame-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

a {
    text-decoration: none;
}


.info-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    color: white;
    width: 100%;
    max-width: 400px;
    min-width: 200px;
    height: auto;
    padding: 10px;
    flex: 1 1 300px;
}

.info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 3px;
    border-radius: 100%;
    background-color: #00ff992c;
    color: #00ff99;
    flex-shrink: 0;
}

.left-text {
    margin-left: 0;
}

.right-text {
    margin-right: 0;
}

.frame-3 {
    width: 100%;
    min-height: 470px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #11181b;
    padding: 0 20px 40px;
    box-sizing: border-box;
}

.frame-3-large {
    font-size: clamp(32px, 6vw, 50px);
    line-height: 1.2;
}

.frame-3-top-text {
    display: inline-block;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 500;
    width: fit-content;
    height: fit-content;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 18px;
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(30px, 6vw, 50px);
    background-color: #00ff992c;
    border: 1px solid #00ff995b;
    color: #00ff99;
}

.frame-3-vidframe {
    width: 100%;
    max-width: 1070px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    background-color: #191d23e7;
    z-index: 999;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(128, 128, 128, 0.11);
    box-shadow: 0px 3px 15px -2px rgba(0, 0, 0, 0.432);
    box-sizing: border-box;
}

.frame-3-video {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(128, 128, 128, 0.11);
    box-shadow: 0px 3px 15px -2px rgba(0, 0, 0, 0.432);
    border-radius: 16px;
    object-fit: cover;
}

.frame-4 {
    width: 100%;
    min-height: 950px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #0b0f11;
    padding: 0 20px 40px;
    box-sizing: border-box;
}

.frame-4-large {
    margin-top: clamp(40px, 8vw, 60px);
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1.1;
}

.features-frame {
    height: auto;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: clamp(30px, 6vw, 50px);
}

.frame-feature {
    width: 100%;
    max-width: 340px;
    min-width: 280px;
    height: auto;
    min-height: 266px;
    background-color: #191d23e7;
    backdrop-filter: blur(10px);
    padding: 20px 26px;
    z-index: 999;
    border-radius: 19px;
    border: 1px solid rgba(128, 128, 128, 0.123);
    box-shadow: 0px 3px 15px 1px rgba(0, 0, 0, 0.432);
    transition: 300ms;
    flex: 1 1 300px;
}

.frame-feature:hover {
    transform: scale(1.02);
    box-shadow: 0px 3px 40px -10px #00ff9969;
    background-color: #197e5631;
}

.feature-icon {
    width: 25px;
    height: 25px;
    padding: 15px 15px;
    border-radius: 10px;
    margin-top: 15px;
    background-color: #20252ce7;
    color: #00ff99;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.feature-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    margin-left: 10px;
}

.feature-description {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 400;
    color: #86909a;
    margin-top: 25px;
    margin-left: 10px;
    line-height: 1.5;
}

.signin-frame {
    align-content: center;
}

.auth-frame {
    width: 100%;
    max-width: 360px;
    min-width: 250px;

    margin-left: auto;
    margin-right: auto;

    height: auto;
    min-height: 266px;
    
    background-color: #191d23e7;
    backdrop-filter: blur(10px);
    padding: 20px 26px;
    z-index: 999;
    border-radius: 19px;
    border: 1px solid rgba(128, 128, 128, 0.123);
    box-shadow: 0px 3px 15px 1px rgba(0, 0, 0, 0.432);
    transition: 200ms;
}

.auth-header {
    font-size: clamp(30px, 5vw, 36px);
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    margin-top: 5px;
    margin-left: 10px;


    text-align: center;
}

.auth-icon {
    width: 22px;
    height: 22px;
    padding: 10px 10px;
    border-radius: 10px;
    margin-right: 10px;

    background-color: #00ff99d0;
    color: rgb(19, 18, 18);
    display: flex;
    flex-direction: column;

}

.auth-form {
    margin-top: 40px;
}

.auth-description {
    font-size: clamp(12px, 2.5vw, 16px);
    font-weight: 500;
    color: #86909a;
    margin-bottom: 0;
    margin-top: 5px;
    margin-left: 10px;

    text-align: center;
}

.auth-text {
    font-size: clamp(10px, 2.5vw, 14px);
    font-weight: 400;
    color: white;
    margin-bottom: 0;
    margin-top: 5px;
    margin-left: 10px;

    text-align: center;
}

.auth-input {
    display: block;
    margin-left: 15px;

    margin-top: 10px;
    margin-bottom: 15px;

    padding-left: 15px;


    width: 100%;
    max-width: 330px;
    min-width: 250px;

    margin-left: auto;
    margin-right: auto;
    height: auto;
    min-height: 34px;

    color: white;
    background-color: #15181ca2;


    z-index: 999;
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.123);

}

.auth-input:focus-visible,
.auth-input:active {
    outline: 2px solid #00ff99;
}


.auth-input::placeholder {
    color: #86909a;
}

.form-group {
    display: block;
}

.form-footer {
    display: block;
    width: 100%;

}


.checkbox {
    font-size: clamp(12px, 2.5vw, 16px);
    font-weight: 500;
    color: #86909a;
    margin-bottom: 0;
    margin-top: 5px;
    margin-left: 10px;

    text-align: center;
}

.form-checkbox:hover {
    cursor: pointer;
}

.btn-primary {
    display: block;
    border: none;
    width: 80%;
    font-size: clamp(12px, 2.5vw, 18px);
    font-weight: 600;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    transition: 550ms;

    color: black;
}

.btn-primary:hover {
    cursor: pointer;
    transform: scale(1.01);
}

.alt-action {
    margin-top: 25px;
    text-align: center;
    font-size: clamp(12px, 2.5vw, 16px);
    font-weight: 500;
    color: #86909a;
}

.alt-anchor {
    font-weight: 600;
    transition: 550ms;
}

.alt-anchor:hover {
    cursor: pointer;
    font-size: clamp(15px, 2.5vw, 17px);;
}

.input-error {
    font-size: clamp(12px, 2.5vw, 16px);
    font-weight: 500;
    color: #ff0000;
    margin-top: 5px;
    padding-bottom: 10px;
    margin-left: 10px;

}

/* Mobile adjustments */
@media (max-width: 768px) {
    .buttons-frame {
        gap: 5px;
    }
    

    .header-button {
        padding: 8px 12px;
    }
    
    .middle-buttons-frame {
        flex-direction: column;
        align-items: center;
    }
    
    .left-button,
    .right-button {
        width: 100%;
        max-width: 300px;
    }
    
    .bottom-frame {
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
    }

    .frame-1 {
        padding-bottom: 10px;
    }

    .frame-3 {
        height: fit-content;
    }
    

    
    .stat-frame {
        width: 90%;
        max-width: 400px;
    }
    
    .info-text {
        width: 100%;
        max-width: 100%;
    }
    
    .features-frame {
        gap: 20px;
    }
    
    .frame-feature {
        max-width: 80%;
        min-height: 170px;
    }
}

@media (max-width: 480px) {
    .head-frame {
        padding: 0 15px;
    }

    
    .frame-1,
    .frame-2,
    .frame-3,
    .frame-4 {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 10px;
    }



    .frame-3 {
        height: fit-content;
    }
    
    .hover-text {
        padding: 8px 16px;
    }
    
    .stat-frame:hover {
        transform: scale(1.03);
    }
    
    .frame-feature:hover {
        transform: scale(1.01);
    }

    .auth-header {
        font-size: clamp(20px, 5vw, 26px);
    }


    .auth-frame {
        width: 100%;
        max-width: 200px;
        min-width: 50px;

        
    }

    .auth-input {
        width: 100%;
        max-width: 180px;
        min-width: 50px;
    }
}
