body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0a0e17;
    color: #f0f0f0;
    line-height: 1.6;
}

h1,
h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #0ff;
}

h2 {
    font-size: 2rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 23, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #0ff;
    /* Cyan statt Gelb */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #0ff;
}

/* Burger Button */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0ff;
}

/* Hero */
.hero {
    background: url("images/hero-bg.png") no-repeat center center/cover;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0ff;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #0ff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #00cccc;
}

/* Sections */
section {
    padding: 4rem 2rem;
}

.alt-bg {
    background: #141a29;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.content-image {
    display: block;
    margin: 2rem auto;
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.content-image2 {
    display: block;
    margin: 2rem auto;
    max-width: 250px;
    /* Tokenomics-Bild kompakt */
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

/* News Banner */
.news {
    background: #1a1f2e;
    padding: 1rem;
    text-align: center;
}

.news p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffb400;
    /* Orange Highlight */
}

/* Two-column sections */
.two-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.two-col .text {
    flex: 1;
    min-width: 280px;
}

.two-col .image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.two-col .image img {
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

/* Lists */
.tokenomics-list,
.roadmap-list,
.values-list {
    text-align: left;
    margin: 0 auto;
    max-width: 700px;
    padding: 0;
}

.tokenomics-list li,
.roadmap-list li,
.values-list li {
    margin: 0.8rem 0;
}

.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.values-list li {
    background: #0a0e17;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid #ffb400;
}

.values-list i {
    margin-right: 0.5rem;
}

/* Community */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #0ff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #00cccc;
}

.social-links i {
    margin-right: 0.5rem;
}

/* Disclaimer */
.disclaimer-text {
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Footer */
footer {
    background: #0a0e17;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #141a29;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #141a29;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links.show {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}