/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container and layout */
.container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

/* Animated background elements */
.background-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.bg-element-1 {
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(59, 130, 246, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.bg-element-2 {
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(249, 115, 22, 0.1);
    animation: pulse 3s ease-in-out infinite 1s;
}

.bg-element-3 {
    top: 50%;
    left: 50%;
    width: 8rem;
    height: 8rem;
    background: rgba(168, 85, 247, 0.1);
    transform: translate(-50%, -50%);
    filter: blur(2rem);
    animation: bounce 2s ease-in-out infinite;
}

/* Floating geometric shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
}

.shape-1 {
    top: 25%;
    left: 25%;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transform: rotate(45deg);
    animation: spin-slow 6s linear infinite;
}

.shape-2 {
    top: 75%;
    right: 25%;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transform: rotate(12deg);
    animation: bounce 3s ease-in-out infinite;
}

.shape-3 {
    bottom: 25%;
    left: 50%;
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Brand section */
.brand-section {
    margin-bottom: 2rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #93c5fd;
}

.line {
    width: 3rem;
    height: 0.125rem;
}

.line-left {
    background: linear-gradient(to right, transparent, #60a5fa);
}

.line-right {
    background: linear-gradient(to left, transparent, #60a5fa);
}

.tagline-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Construction icon */
.construction-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-container {
    position: relative;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.25);
    animation: bounce 2s ease-in-out infinite;
}

.construction-svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

/* Message section */
.message-section {
    margin-bottom: 6rem;
}

.coming-soon-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    display: block;
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.25rem;
    color: #bfdbfe;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: #93c5fd;
    font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive design */
@media (min-width: 640px) {
    .main-title {
        font-size: 3.75rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 4.5rem;
    }
    
    .coming-soon-title {
        font-size: 3rem;
    }
    
    .content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.875rem;
    }
    
    .description {
        font-size: 1.125rem;
    }
    
    .bg-element-1,
    .bg-element-2 {
        width: 12rem;
        height: 12rem;
    }
}