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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0d1117;
    color: #e6edf3;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
}

.hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1117, #111827);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.2rem;
    color: #9da5b4;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.tagline {
    font-size: 1.1rem;
    color: #58a6ff;
    margin-bottom: 40px;
}

.section {
    padding: 80px 0;
}

.section.dark {
    background-color: #111827;
}

ul {
    list-style: none;
    margin-top: 20px;
}

ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #58a6ff;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
    margin: 5px;
    display: inline-block;
}

.btn.primary {
    background-color: #238636;
    color: white;
}

.btn.primary:hover {
    background-color: #2ea043;
}

.btn.secondary {
    border: 1px solid #58a6ff;
    color: #58a6ff;
}

.btn.secondary:hover {
    background-color: #58a6ff;
    color: #0d1117;
}

.mockup {
    margin-top: 40px;
    width: 100%;
    border-radius: 10px;
    opacity: 0.9;
}

.phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.phase {
    background: #161b22;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.phase:hover {
    transform: translateY(-5px);
    background: #1f2937;
}

.wallets div {
    margin-bottom: 15px;
    word-break: break-all;
    background: #161b22;
    padding: 12px;
    border-radius: 6px;
}

.wallets {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1f2937;
}

.wallet-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 14px 18px;
    border-bottom: 1px solid #1f2937;
    background-color: #161b22;
}

.wallet-row:last-child {
    border-bottom: none;
}

.wallet-row.header {
    background-color: #111827;
    font-weight: bold;
    color: #58a6ff;
}

.wallet-row:hover {
    background-color: #1f2937;
}

.address {
    word-break: break-all;
    font-family: monospace;
    color: #c9d1d9;
}

/* Responsive */
@media (max-width: 768px) {
    .wallet-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .wallet-row.header {
        display: none;
    }
}




footer {
    text-align: center;
    padding: 40px 0;
    background-color: #0b0f14;
}

footer a {
    color: #58a6ff;
    text-decoration: none;
}

.footer-note {
    margin-top: 10px;
    color: #8b949e;
    font-size: 0.9rem;
}

