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

/* MAVEX Brand Colors */
:root {
    --mavex-red: hsl(0, 73%, 51%);
    --mavex-navy: hsl(213, 45%, 10%);
    --mavex-background: hsl(240, 9%, 97%);
    --foreground: hsl(240, 9%, 97%);
    --muted-foreground: hsl(240, 5%, 65%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, hsl(213, 45%, 10%) 0%, hsl(213, 40%, 8%) 40%, hsl(0deg 73% 51%) 110%);
    color: var(--foreground);
    min-height: 100vh;
    overflow: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

/* Logo Section */
.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: hsla(0, 73%, 51%, 0.2);
    filter: blur(80px);
    border-radius: 50%;
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.logo-container {
    position: relative;
    padding: 2rem;
    border-radius: 50%;
    background: hsla(0, 73%, 51%, 0.1);
    border: 2px solid hsla(0, 73%, 51%, 0.2);
}

.flame-icon {
    width: 5rem;
    height: 5rem;
    color: var(--mavex-red);
}

/* Text Content */
.text-content {
    margin-bottom: 2rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animated Dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--mavex-red);
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.dot-2 {
    animation-delay: 0.2s;
}

.dot-3 {
    animation-delay: 0.4s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .flame-icon {
        width: 4rem;
        height: 4rem;
    }

    .logo-container {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 4.5rem;
    }

    .subtitle {
        font-size: 1.75rem;
    }
}