* {
    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;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.content {
    text-align: center;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: fadeIn 1s ease-in-out;
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.company-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: slideUp 0.8s ease-out;
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.coming-soon {
    margin: 3rem 0;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact {
    margin: 2rem 0;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.contact p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.contact a:hover {
    border-color: #ffffff;
}

.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.8s ease-out 0.8s both;
}

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

/* Background decoration */
.background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bracket {
    position: absolute;
    font-size: 20rem;
    font-weight: 700;
    opacity: 0.05;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.left-bracket {
    top: -5rem;
    left: -5rem;
    animation: floatLeft 6s ease-in-out infinite;
}

.right-bracket {
    bottom: -5rem;
    right: -5rem;
    animation: floatRight 6s ease-in-out infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .bracket {
        font-size: 10rem;
    }

    .content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.5rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .bracket {
        display: none;
    }
}
