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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    text-align: center;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

@keyframes shake {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    10% {
        transform: translate(-0.5px, -0.5px) rotate(-0.3deg);
    }
    20% {
        transform: translate(0.5px, 0px) rotate(0.3deg);
    }
    30% {
        transform: translate(0px, 0.5px) rotate(0deg);
    }
    40% {
        transform: translate(-0.5px, 0px) rotate(-0.3deg);
    }
    50% {
        transform: translate(0.5px, -0.5px) rotate(0.3deg);
    }
    60% {
        transform: translate(0px, 0.5px) rotate(0deg);
    }
    70% {
        transform: translate(0.5px, 0px) rotate(0.3deg);
    }
    80% {
        transform: translate(-0.5px, -0.5px) rotate(-0.3deg);
    }
    90% {
        transform: translate(0px, 0.5px) rotate(0deg);
    }
}

.rocket-icon {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    animation: shake 0.15s ease-in-out infinite;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: center;
}

.rotating-word {
    display: inline-block;
    transition: opacity 0.5s ease-in-out;
}

.coming-soon {
    font-size: 1.25rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    opacity: 0.9;
}

.tagline {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact {
    margin-bottom: 1.5rem;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.contact a:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .rocket-icon {
        width: 240px;
        height: 240px;
    }

    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .rocket-icon {
        width: 200px;
        height: 200px;
    }
}
