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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #516381;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #efeff7;
    height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #081c3a;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-button {
    font-family: 'Inter', sans-serif;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid #e6e6f3;
    color: #516381;
}

.nav-button.primary {
    background: linear-gradient(120deg, #3572ff 0%, #081c3a 100%);
    color: white;
    border: none;
}

.nav-button:hover {
    transform: translateY(-1px);
    border-color: #516381;
}

.nav-button.primary:hover {
    background: linear-gradient(120deg, #081c3a 0%, #3572ff 100%);
    transform: translateY(-1px);
}

/* Banner */
.banner {
    background: linear-gradient(120deg, #5242dc 47%, #7e22ce 100%);
    color: white;
    padding: 12px 0;
    margin-top: 70px;
    text-align: center;
}

.banner-content {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
}

.banner-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* MatrixFlows App Container */
#community {
    flex: 1;
    width: 100%;
    min-height: calc(100vh - 200px);
}

/* Footer */
.footer {
    background: #f7f8fc;
    border-top: 1px solid #efeff7;
    padding: 30px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Exo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #081c3a;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #516381;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .nav-button {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .banner-content {
        gap: 6px;
        padding: 0 15px;
        font-size: 13px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}