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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.background-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: #f0f2f5;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.main-heading {
    font-family: 'Merriweather', serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.highlight {
    color: #ff4444;
}

.coming-soon {
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    font-style: italic;
    letter-spacing: 2px;
}

footer {
    padding: 32px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .background-text {
        font-size: 25vw;
    }
    
    .container {
        padding: 0 20px;
    }
    
    main {
        padding: 60px 0;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .background-text {
        font-size: 30vw;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}