:root {
    --primary: #0201F5;  /* Your brand blue */
    --primary-light: #3A39F7; /* Lighter brand blue */
    --accent: #0201F5;   /* Golden accent */
    --text-light: #F5F5FF; /* Off-white with blue tint */
    --text-accent: #00E5FF; /* Softer gold for text */
    --gradient: linear-gradient(135deg, var(--primary), #0504C1);
}

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

body, html {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-light);
    background-color: #050505;
    line-height: 1.6;
}

.container {
    width: 100%;
    height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') center/cover no-repeat;
    z-index: 0;
    opacity: 0.2;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: multiply;
}

.header {
    padding: 20px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--text-light);
}

.hero h1 span {
    color: var(--accent);
    display: inline-block;
}

.tagline {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.tagline span {
    color: var(--text-accent);
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 2px;
    background: var(--text-accent);
    margin: 30px auto;
    opacity: 0.7;
}

.description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(245, 245, 255, 0.85);
}

.coming-soon {
    text-align: center;
    margin: 40px auto;
}

.coming-soon p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-accent);
    letter-spacing: 3px;
    display: inline-block;
    padding: 5px 0;
    text-shadow: 0 0 10px rgba(255, 224, 102, 0.3);
}

.footer {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(245, 245, 255, 0.6);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon p {
        font-size: 1.4rem;
    }
    
    .description {
        font-size: 1rem;
    }
}