:root {
    --primary: #5548a8;
    --primary-light: #786ec5;
    --background: #121214;
    --surface: #1c1c1e;
    --text-main: #edf0f5;
    --text-dim: #9ea0a6;
    --white: #ffffff;
    --accent: #0088ff;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 20, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(85, 72, 168, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-white {
    background-color: var(--white);
    color: var(--background) !important;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

/* Coming Soon Layout */
.coming-soon {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-logo {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.brand h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.message h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #786ec5, #0088ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.message p {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 450px;
}

.app-store-placeholder img {
    height: 60px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.8;
}

.app-store-placeholder img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.contact a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.7;
    transition: 0.3s;
}

.contact a:hover {
    opacity: 1;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    font-size: 0.9rem;
    color: var(--text-dim);
}