.font-gradient-green {
    background: linear-gradient(
        to right,
        #C3F96E 20%,
        #6EED40 30%,
        #B6F273 80%,
        #6EED40 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    z-index: 4;
    position:relative;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

 /* ===== LAYOUT CONTAINERS ===== */
.content-container {
    color: white;
    margin: 0 auto;
    max-width: 700px;
    margin-top: 5%;
    margin-bottom: 5%;
}
.registration-container {
    flex: 1;
    flex-direction: column;
    position:relative;
    display:flex;
    z-index: 3;
    padding: 15px 20px;
}
.registration-gradient-box {
    position: relative;
    display: flex;
    flex:1;
    min-height:290px;
    margin-bottom: 15px;
    padding: 10px; 
    background-color: white;
    border-radius: 8px;
}
.registration-gradient-box::before {
    content: '';
    position:absolute;
    inset: 0;
    border-radius: 8px;
    background: #6EED40;
}
.registration-gradient-box::after {
    content: '';
    position:absolute;
    inset: 0;
    border-radius: 8px;
    background: #6EED40;
    filter: blur(5px);
}
.registration-gradient-box:nth-child(1)::after,
.registration-gradient-box:nth-child(1)::before {
    background: linear-gradient(-60deg, #6EED40 0%, #C3F96E 100%);
}
.title-container {
    position: absolute;
    z-index: 4;
}
.title-text-container {
    width: 100vw;
    padding-top: 24px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap; 
}
.title-word-2 {
    animation: text-glitch 9s linear infinite alternate;
}
.intro-container {
    margin-top: 16px;
    width: 100%;
    text-align: left;
}
.description-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: start;
    padding: 0px 8px;
}
.description {
    display:flex;
    flex-direction: column;
    align-items: center;
}
.description-text {
    color: white;
    display:flex;
    position: relative;
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom:0px;
    line-height:26px;
    z-index:4; 
    padding-bottom: 20px;
    border-radius: 4px;
}
.shark-svg {
    overflow:visible;
    max-width:250px;

    margin-top: 124px;
    margin-bottom: 16px;
    z-index: 5;
}
.shark-bg-svg {
    overflow:visible;
    position: absolute;
    max-width:250px;
    margin-top: 124px;
    z-index: 4;
}

.coming-soon-banner {
    font-size:52px;
    margin-top: 20px;
    margin-left: -10px;
    text-align: left;
    padding-left: 10vw;
    padding-top: 3px;
    padding-right: 8px;
    background:  linear-gradient(45deg, #ED7132, #EB4F27);
    color: white;
    outline: 4px solid white;
    border-left: 0px;
    display:none;
}
.registration-form {
    position: absolute;
    display:block;
    inset: 4px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2;
}

/* .registration-form {
    padding: 10px;
    padding-bottom: 15px;
    margin-bottom:20px;
    position: relative;
    border-radius: 8px;
    background-color:RGBA(36, 36, 36, 1.00);
    display: flex;
    outline: 1px solid #0d0d0d;
    flex-direction: column;
} */
/* .registration-form::before {
    content: '';
  position: absolute;
  top: -2.5px; 
    right: -2.5px;
    bottom: -2.5px;
    left: -2.5px;
  border-radius: 10px; 
  background: linear-gradient(0deg, #6EED40 0%, #C3F96E 100%);
  z-index: -1;
  animation: pulse-warp 3.5s infinite alternate-reverse ease-in-out;
} */

@keyframes pulse-warp {
    0% {
        transform: scale(1.002);
        filter: blur(0px) brightness(1.2);
        opacity: 0.98;
    }
    100% {
        transform: scale(1.002); /* Subtle scaling for dynamic feel */
        filter: blur(0px) brightness(1.4);
        opacity: 1;
    }
  }

.email-input {
    display: flex; 
    flex:1;
    border-radius: 4px; 
    padding: 11px 10px; 
    font-size: 24px;
    border: 2px solid gray; 
    margin-bottom: 10px;
}

.submit-button {
    display: flex; 
    border-radius:4px; 
    padding: 11px 0px;
    justify-content: center;
    background: linear-gradient(45deg, #4462F6, #647DF7);;
    color:white; 
    border:none; 
    font-size: 26px;
}

@media screen and (min-width: 372px) {
    .registration-gradient-box {
        position: relative;
        display: flex;
        flex:1;
        min-height:270px;
        padding: 10px; 
        background-color: white;
        border-radius: 8px;
    }
}
@media screen and (min-width: 531px) {
    .registration-gradient-box {
        position: relative;
        display: flex;
        flex:1;
        min-height:250px;
        padding: 10px; 
        background-color: white;
        border-radius: 8px;
    }
}
@media screen and (min-width: 935px) {
    .registration-gradient-box {
        position: relative;
        display: flex;
        flex:1;
        min-height:230px;
        padding: 10px; 
        background-color: white;
        border-radius: 8px;
    }
}

@media screen and (min-width: 1420px) {
    .content-container {
        color: white;
    }
    .registration-container {
        width: 40%;
        padding-bottom:0px;
        flex-direction: row;
    }
    .registration-gradient-box {
        position: relative;
        display: flex;
        align-self: center;
        flex:1;
        min-height:230px;
        padding: 10px; 
        background-color: white;
        border-radius: 8px;
    }
    .registration-form {
        position: absolute;
        display:block;
        inset: 4px;
        align-self:center;
        padding: 8px;
        border-radius: 6px;
        background-color: transparent;
        transform: translateY(-30%);
        z-index: 2;
        margin-left: 15%;
        width: 420px;
        display: block;
    }
    .title-container {
        top: 30px; /* Adjust vertical position as needed */
        left: 60%;
        margin-left: 33px;
        transform: translateX(-40.5%);
        display: flex;
    }
    .title-text-container {
        top: 20px; 
        width: 440px;
        padding: 0px;
        text-align: center;
        overflow: hidden;
        background-color: black;
        z-index: 1;
        white-space: nowrap; 
    }
    .description-container {
        width: 60%;
        flex: none;
        align-items: flex-start;
    }
    .intro-text {
        display: none;
    }
    .extended-description{
        display: none;
    }
    .description-text {
        color: #5A5C5A;
        position: relative;
        margin-top:175px;
        margin-left: 12%;
        margin-bottom:0px;
        line-height:32px;
        z-index:4; 
        background-color: RGBA(252, 255, 239, 0.2);
        padding: 20px 0px;
        border-radius: 4px;
        backdrop-filter: blur(5px);
    }
    .shark-svg {
        display:none
    }
    .shark-bg-svg {
        display:none
    }
    .coming-soon-banner {
        font-size:52px;
        margin-top: 20px;
        text-align: left;
        padding-left: 100px;
        margin-left: -12px;
        padding-top: 3px;
        background:  linear-gradient(45deg, #ED7132, #EB4F27);
        width: 350px;
        color: white;
        border: 4px solid white;
        outline: 4px solid #404140;
        border-left: 0px;
        display:block;
    }
    .email-input {
        display: block; 
        border-radius: 2px; 
        padding: 15px 10px; 
        font-size: 24px; 
        width: 396px; 
        border: 2px solid lightgray; 
        margin-bottom: 10px;
    }
    .submit-button {
        display: block; 
        border-radius:2px; 
        height: 62px; 
        background: linear-gradient(45deg, #4462F6, #647DF7); 
        color:white; 
        border:none; 
        width: 420px; 
        font-size: 32px;
    }
}


/* GLOBALS */

/* Normalization */
html, body {
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
}

.container {
    width: 100vw;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
}

.footer {
    display:flex;
    flex: 1;
    text-align: center;
    background-color: #0d0d0d;
    padding: 16px 16px;
    border-top: 1px solid RGBA(37, 38, 35, 1.00);
}
.info-container {
    color: #5A5C5A;
    max-width:500px;
    display:flex;
    gap:10px;
    flex-direction: column;
    margin: 0 auto;
}
.disclaimer {
    text-align: justify;
    text-justify: inter-word;
    margin-top:0px;
    margin-bottom:0px;
    word-break: keep-all;
    font-size: 0.75em;
    max-width: 500px;
}
.trademark {
    text-align: left;
    text-wrap-style: balance;
    margin-bottom:0px;
    margin-top:0px;
}
.footer-links {
    margin-top: 0px;
    margin-bottom:0px;
}

@media screen and (min-width: 1420px) {
    html, body {
        max-height: 110vh;
        background-color: white;
    }
    
    .container {
        flex-direction: row;
        background-color: white;
        height: 110vh;
    }
    .green-gradient-background {
        overflow: hidden;
        clip-path: polygon(90px 0, 100% 0, 100% 100%, 0% 100%);
        background: linear-gradient(-60deg, #6EED40 0%, #C3F96E 100%);
    }
    /* .footer {
        border-top: 0px;
        background-color: #c9c9c9;
    }
    .info-container {
        color: #242424 !important;
    }
    .trademark {
        color: #242424 !important;
    }
    .disclaimer {
        color: #242424 !important;
    }
    .footer-links a {
        color: #242424 !important;
    } */
}

/* Fonts */
.font-lg {
    font-size: 64px;
}
.font-md {
    font-size: 44px;
}
.font-sm-md{
    font-size: 0.9em;
}
.font-sm {
    font-size: 18px;
    line-height: 32px;
}
.font-x-sm {
    font-size: .75em;
    line-height: 18px;
    text-wrap-style: balance;
}
.subheader {
    font-weight:500;
    font-size: 1.1em;
    color: #a2a1a1;
}
.intro-text {
    font-size: 1.1em;
    margin: 0;
    margin-left: 10px;
    color: gray;
}
.win-text {
    color:#ED7132;
}
.discription-text-desktop-extension {
    display: none;
}

@media screen and (min-width:700px) {
    .font-lg {
        font-size: 74px;
    }
    .font-sm {
        font-size: 1.25em;
        line-height:36px;
    }
    .intro-text {
        font-size: 1.25em;
    }
    .font-x-sm {
        font-size: .9em;
        line-height: 24px;
        text-wrap-style: balance;
    }
}
@media screen and (min-width: 1420px) {
    .font-lg {
        font-size: 102px;
    }
    .font-md {
        font-size: 64px;
    }
    .font-sm {
        font-size: 18px;
    }
    .registration-text {
        color: #242424 !important;
    }
    .win-text {
        color: #242424;
    }
    .discription-text-desktop-extension {
        display: block;
    }
}

.font-white {
    color: white;
}

.font-gray {
    color: #c9c9c9;
}
.jersey-25-regular {
    font-family: "Jersey 25", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

.roboto-mono-regular {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Flex */
.flex {
    display: flex;
}
  
.row {
    flex-direction: row;
}
  
.col {
    flex-direction: column;
}
  
.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}
  
.justify-between {
    justify-content: space-between;
}
  
.justify-around {
    justify-content: space-around;
}
  
.justify-end {
    justify-content: flex-end;
}
  
.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}
  
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.w-full  { width: 100%; }
.w-1-2   { 
    width: 50%; 
    flex: 0 0 50%; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
    overflow: hidden; 
}
.w-1-3   { width: 33.3333%; }
.w-2-3   { width: 66.6667%; }
.w-1-4   { width: 25%; }
.w-3-4   { width: 75%; }
.w-1-5   { width: 20%; }
.w-2-5   { width: 40%; }
.w-3-5   { width: 60%; }
.w-4-5   { width: 80%; }
.w-1-6   { width: 16.6667%; }
.w-5-6   { width: 83.3333%; }

