/* Variablen für einfache Anpassung */
:root {
    --primary: #00bcd4;
    --primary-dark: #006064;
    --dark: #121212;
    --card-bg: #1e1e1e;
    --text: #e0e0e0;
    --white: #ffffff;
}

/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Fließtext bleibt sauber lesbar */
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Überschriften komplett auf Zen Dots umgestellt */
h1, h2, h3, h4, .section-title, nav ul li a, .step-num {
    font-family: 'Zen Dots', cursive, sans-serif;
    font-weight: normal; /* Zen Dots bringt seine eigene feste Stärke mit */
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

/* Header */
header {
    background: rgba(0,0,0,0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.8rem; /* Etwas kleiner, da Zen Dots groß läuft */
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: calc(6rem + 40px) 0 6rem 0; 
    background: radial-gradient(circle at bottom left, var(--primary-dark), var(--dark) 80%);
    position: relative;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 188, 212, 0.1), transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

h1 {
    font-size: 2.6rem; /* Leicht angepasst, damit die breite Schrift harmonisch bricht */
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.hero-btns {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 1rem;
    transition: all 0.3s ease;
    font-family: 'Zen Dots', sans-serif;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    background: #26c6da;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 188, 212, 0.1);
    color: var(--white);
}

.btn-small-link {
    border: 1px solid var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.2);
}

/* Content Sections */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.image-card img {
    width: 100%;
    border-radius: 10px;
}

/* Tokenomics */
.dark-bg {
    background: #0a0a0a;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.token-item {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 10px;
}

.token-item img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.info-box {
    margin-top: 4rem;
    background: var(--card-bg);
    padding: 3rem;
    border-left: 5px solid var(--primary);
    border-radius: 0 15px 15px 0;
}

.info-box h3 {
    font-size: 1.3rem;
    color: var(--primary);
}

.info-box ul {
    list-style: none;
    margin-top: 1rem;
}

.info-box ul li {
    margin-bottom: 0.5rem;
}

.halving-box {
    text-align: center;
}

.halving-box img {
    width: 180px;
    margin-bottom: 1rem;
}

/* Roadmap */
.roadmap-track {
    display: flex;
    gap: 2rem;
}

.roadmap-step {
    flex: 1;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    position: relative;
    border-bottom: 3px solid var(--primary-dark);
}

.roadmap-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step-num {
    font-size: 2rem;
    color: rgba(0, 188, 212, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Footer */
footer {
    border-top: 1px solid #333;
    padding: 4rem 0;
    text-align: center;
}

.footer-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.socials a {
    color: var(--primary);
    margin: 0 1rem;
    text-decoration: none;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 850px) {
    .hero-content, .grid-2, .token-grid, .roadmap-track {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    h1 { font-size: 1.8rem; }
    nav ul { display: none; }
}