* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('background.png');
    -webkit-animation: sidedownscroll 30s linear infinite;
    animation: sidedownscroll 30s linear infinite;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

@-webkit-keyframes sidedownscroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -2000px 2000px;
    }
}

@keyframes sidedownscroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -2000px 2000px;
    }
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 700px;
}

.logo {
    margin-bottom: 30px;
}

.logo svg {
    width: 60px;
    height: 60px;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

h1 {
    color: white;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 span {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 38px;
        letter-spacing: 1px;
    }

    .description {
        font-size: 17px;
        padding: 0 10px;
    }

    .coming-soon-badge {
        font-size: 11px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .description {
        font-size: 15px;
    }

    .content {
        padding: 15px;
    }


    .coming-soon-badge {
        font-size: 10px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
}
