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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.hero-text {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
}

.tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 60px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid #1a1a1a;
}

.info-number {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-section {
    max-width: 600px;
    margin-bottom: 60px;
}

.details-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.coming-soon {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin: 20px 0 30px 0;
}

.sword-icon {
    width: 24px;
    height: 24px;
    display: block;
    filter: invert(1);
}

.contact-button:hover {
    background: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-number {
        font-size: 2.5rem;
    }
}
