/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.35;
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
}

body {
    padding: 0;
    margin: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

/* Decorative Elements */
.decors {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decor {
    max-width: none;
    height: auto;
    position: absolute;
}

.decor.tr {
    transform: translate(-50%, -50%);
    filter: blur(1.5em);
}

/* Animations */
.decor.ellipse1 {
    animation: 8s ease-out 0s infinite alternate ellipse2;
}

.decor.vector1 {
    animation: 10s ease-out 0s infinite alternate vector1;
}

.decor.ellipse5 {
    animation: 7s ease-out 0s infinite alternate ellipse2;
}

.ellipse2 {
    animation: 6s ease-out 0s infinite alternate ellipse2;
}

.decor.ellipse3 {
    animation: 16s ease-out 0s infinite alternate ellipse3;
}

.decor.ellipse4 {
    animation: 16s ease-out 0s infinite alternate ellipse4;
}

@keyframes ellipse2 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(-46%, -45%) scale(0.76);
    }
    50% {
        transform: translate(-47%, -54%) scale(0.88);
    }
    75% {
        transform: translate(-56%, -55%) scale(0.74);
    }
}

@keyframes vector1 {
    0%, 100% {
        transform: rotate(-34deg) scale(1);
    }
    25% {
        transform: rotate(-40deg) scale(0.86);
    }
    50% {
        transform: rotate(-38deg) scale(0.96);
    }
    75% {
        transform: rotate(-34deg) scale(0.83);
    }
}

@keyframes ellipse3 {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    25% {
        transform: translate(-55%, -55%);
    }
    50% {
        transform: translate(-48%, -51%);
    }
    75% {
        transform: translate(-45%, -48%);
    }
}

@keyframes ellipse4 {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    25% {
        transform: translate(-45%, -48%);
    }
    50% {
        transform: translate(-48%, -51%);
    }
    75% {
        transform: translate(-55%, -55%);
    }
}

/* Main Content */
.flexCenter {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.content {
    max-width: 90%;
    padding: 1rem;
}

/* Typography */
h1 {
    line-height: 1.35;
    letter-spacing: -0.03em;
    text-align: center;
    font-weight: 400;
    text-wrap: balance;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.traded {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    gap: 0.6em;
    margin-bottom: 2rem;
}

.traded p {
    margin: 0;
    font-size: 0.9rem;
}

.nasdaq-logo {
    width: calc(50% - 0.3em);
    max-width: 120px;
    height: auto;
}

.coming {
    margin: 0;
    letter-spacing: 0.1em;
    color: #0098EA;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Mobile Styles (up to 650px) */
@media (max-width: 650px) {
    html {
        font-size: 14px;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .logo {
        width: 60%;
        margin-bottom: 3.5rem;
    }
    
    h1 {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
    
    .traded {
        gap: 0.6em;
        flex-direction: row;
        margin-bottom: 3.5rem;
    }
    
    .nasdaq-logo {
        width: calc(50% - 0.3em);
    }
    
    .coming {
        font-size: 0.8rem;
    }
    
    /* Decorative positioning for mobile */
    .decor.ellipse2 {
        width: 338%;
        left: 50%;
        top: 52%;
    }
    
    .decor.ellipse3 {
        width: 180%;
        left: 50%;
        top: 110%;
    }
    
    .decor.ellipse4 {
        width: 180%;
        left: 50%;
        top: 28%;
    }
    
    .decor.vector1 {
        width: 160%;
        transform: rotate(-34deg) translateX(-50%);
        right: -75%;
        top: 22%;
        transform-origin: 50% 50%;
    }
    
    .ellipse1,
    .ellipse5 {
        width: 84%;
        top: 64%;
    }
    
    .ellipse1 {
        left: 0;
    }
    
    .ellipse5 {
        left: 100%;
    }
}

/* Tablet Styles (651px to 992px) */
@media (min-width: 651px) and (max-width: 992px) {
    html {
        font-size: 18px;
    }
    
    .content {
        padding: 2rem;
    }
    
    .logo {
        width: 40%;
        margin-bottom: 4rem;
    }
    
    h1 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    .traded {
        gap: 1em;
        margin-bottom: 5.6rem;
    }
    
    .nasdaq-logo {
        width: 9.55em;
    }
    
    .coming {
        font-size: 1rem;
    }
    
    /* Decorative positioning for tablet */
    .decor.ellipse2 {
        width: 220%;
        left: 50%;
        top: 56%;
    }
    
    .decor.ellipse3 {
        width: 96%;
        left: 50%;
        top: 94%;
    }
    
    .decor.ellipse4 {
        width: 120%;
        left: 50%;
        top: 34%;
    }
    
    .decor.vector1 {
        width: 130%;
        transform: rotate(-34deg);
        right: -60%;
        top: 24%;
        transform-origin: 50% 50%;
    }
    
    .ellipse1,
    .ellipse5 {
        width: 60%;
        top: 70%;
    }
    
    .ellipse1 {
        left: 0;
    }
    
    .ellipse5 {
        left: 100%;
    }
}

/* Desktop Styles (993px and above) */
@media (min-width: 993px) {
    html {
        font-size: 20px;
    }
    
    .content {
        padding: 2rem;
    }
    
    .logo {
        width: 18em;
        margin-bottom: 5rem;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .traded {
        gap: 1.9em;
        margin-bottom: 7rem;
    }
    
    .nasdaq-logo {
        width: 9.55em;
    }
    
    .coming {
        font-size: 1.1rem;
    }
    
    /* Decorative positioning for desktop */
    .decor.ellipse2 {
        width: 169%;
        left: 50%;
        top: 76%;
    }
    
    .decor.ellipse3 {
        width: 90%;
        left: 50%;
        top: 120%;
    }
    
    .decor.ellipse4 {
        width: 82.8%;
        left: 50%;
        top: 20%;
    }
    
    .decor.vector1 {
        width: 81.25%;
        transform: rotate(-34deg);
        right: -40%;
        top: 12%;
        transform-origin: 50% 50%;
    }
    
    .ellipse1,
    .ellipse5 {
        width: 85.94%;
        top: 80%;
    }
    
    .ellipse1 {
        left: 0;
    }
    
    .ellipse5 {
        left: 100%;
    }
}

/* Large Desktop Styles (1200px and above) */
@media (min-width: 1200px) {
    .content {
        max-width: 1200px;
    }
    
    .logo {
        width: 20em;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    .coming {
        font-size: 1.2rem;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .decor.ellipse1,
    .decor.vector1,
    .decor.ellipse5,
    .ellipse2,
    .decor.ellipse3,
    .decor.ellipse4 {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .decors {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .coming {
        color: #0098EA;
    }
}
