/* MERGE Website - Minimal Design */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    font-size: 19px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container for all content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Header with symbol */
.header {
    text-align: center;
    margin-bottom: 80px;
}

.symbol {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation */
.nav {
    text-align: center;
    margin: 60px 0;
}

.nav a {
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    margin: 0 30px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.nav a:hover {
    opacity: 0.5;
}

/* Content sections */
.content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
}

.content h1 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 50px 0 20px 0;
    letter-spacing: -0.3px;
}

.content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 0 15px 0;
}

.content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content strong {
    font-weight: 600;
}

.content em {
    font-style: italic;
}

/* Back navigation */
.back-nav {
    text-align: center;
    margin: 80px 0 40px 0;
}

.back-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.back-nav a:hover {
    opacity: 0.5;
}

/* Manifesto specific styling */
.manifesto-section {
    margin: 60px 0;
}

.manifesto-section p {
    margin-bottom: 15px;
}

.manifesto-closing {
    text-align: center;
    margin-top: 80px;
    font-size: 20px;
    font-weight: 500;
}

.manifesto-closing p {
    margin: 10px 0;
}

.manifesto-tagline {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    opacity: 0.7;
}

/* Symbol page specific */
.symbol-intro {
    text-align: center;
    margin-bottom: 60px;
}

.symbol-section {
    margin: 50px 0;
}

.symbol-list {
    list-style: none;
    margin: 20px 0;
}

.symbol-list li {
    margin: 10px 0;
    line-height: 1.8;
}

.symbol-list strong {
    font-weight: 600;
}

/* Token page specific */
.token-section {
    margin: 40px 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .header {
        margin-bottom: 50px;
    }
    
    .symbol {
        max-width: 200px;
    }
    
    .nav {
        margin: 40px 0;
    }
    
    .nav a {
        display: block;
        margin: 20px 0;
        font-size: 18px;
    }
    
    .content h1 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .content h2 {
        font-size: 22px;
    }
    
    .content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    
    .nav a {
        margin: 15px 0;
    }
}
