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

body {
    width: 100vw;
    height: 100vh;
    background-image: url('BG Rays.png');
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in, backgroundMove 15s ease-in-out infinite alternate;
    font-family: 'Poppins', sans-serif;
}

.overlay {
    width: 100%;
    height: 100%;
    background-image: url('Dark Overlay.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 1s ease-in, overlayPulse 6s ease-in-out infinite alternate;
}

.logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 1s ease-in;
}

.logo img {
    width: 1919px;
    height: 1221px;
    display: block;
}

.coming-soon {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: white;
    text-align: center;
    animation: fadeIn 1s ease-in;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.trade-text {
    position: absolute;
    top: calc(20% + 50px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.trade-line {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 48px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.button {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    animation: fadeIn 1s ease-in;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.button img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: scale(1.3);
    position: relative;
}

.button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70px, -92px);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: white;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-decoration: none;
}

.dashboard {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 1s ease-in;
}

.dashboard img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: scale(1.7);
    transform-origin: center bottom;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes backgroundMove {
    0%, 100% {
        background-position: center center;
        background-size: 120%;
    }
    50% {
        background-position: 51% 50%;
        background-size: 121%;
    }
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.98;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        background-size: cover;
        overflow-x: hidden;
    }

    .logo img {
        width: 100%;
        max-width: 100vw;
        height: auto;
    }

    .coming-soon {
        font-size: 18px;
        top: 15%;
    }

    .trade-text {
        top: calc(15% + 40px);
    }

    .trade-line {
        font-size: 32px;
    }

    .button {
        top: 50%;
        width: 80%;
        max-width: 300px;
    }

    .button img {
        transform: scale(1);
        width: 100%;
    }

    .button-text {
        font-size: 18px;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }

    .dashboard img {
        transform: scale(1);
        width: 100%;
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 100%;
        max-width: 100vw;
        height: auto;
    }

    .coming-soon {
        font-size: 16px;
        top: 10%;
    }

    .trade-text {
        top: calc(10% + 30px);
    }

    .trade-line {
        font-size: 24px;
    }

    .button {
        width: 85%;
        max-width: 280px;
        top: 48%;
    }

    .button-text {
        font-size: 16px;
    }

    .dashboard img {
        transform: scale(0.9);
        width: 100%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .logo img {
        width: 100%;
        max-width: 100vw;
        height: auto;
    }

    .button {
        width: 60%;
        max-width: 400px;
    }

    .button img {
        transform: scale(1.1);
    }

    .button-text {
        font-size: 20px;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }
}

