body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #c8dcc8, #e6f0e6);
    color: #135029;
    margin: 0;
    min-height: 100vh;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 48px 16px 48px;
    background: transparent;
}

.logo img {
    height: 45px;
}

.nav a {
    font-family: "Audiowide", sans-serif;
    color: #135029;
    margin-left: 32px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.2s;
}

.nav a.active,
.nav a:hover {
    color: #fede00;
}

.connect-wallet-section {
    padding: 80px 20px;
    text-align: center;
}

.connect-wallet-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #135029;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(19, 80, 41, 0.1);
}

.connect-wallet-title {
    font-family: "Audiowide", sans-serif;
    font-size: 2.4rem;
    color: #c8dcc8;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.connect-wallet-subtitle {
    font-size: 1.2rem;
    color: #c8dcc8;
    margin-bottom: 40px;
}

.wallet-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.wallet-card {
    background: linear-gradient(135deg, #c8dcc8, #e6f0e6);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(19, 80, 41, 0.1);
    padding: 20px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.s, box-shadow 0.5s;
}

.wallet-card img {
    width: 80px;
    margin-bottom: 15px;
}

.wallet-card span {
    font-size: 1.1rem;
    color: #135029;
    font-weight: bold;
}

.legal-note {
    font-size: 0.9rem;
    color: #2a4d2a;
    margin-top: 30px;
}

.legal-note a {
    color: #135029;
    text-decoration: underline;
}

.footer {
    background-color: #2a4d2a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo {
    width: 50px;
    height: auto;
    margin-right: 20px;
    display: inline-block;
}

.footer__nav {
    display: flex;
    gap: 20px;
}

.footer__link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link.active,
.footer__link:hover {
    color: #fede00;
}

.footer__socials {
    display: flex;
    gap: 20px;
}

.footer__social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.3rem;
}

.footer__social-link:hover {
    color: #fede00;
}

.footer__copy {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .header {
        align-items: flex-start;
        padding: 24px 16px 12px 16px;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .nav a {
        font-size: 1.3rem;
    }

    .footer__container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .connect-wallet-title {
        font-size: 2rem;
    }

    .connect-wallet-subtitle {
        font-size: 1rem;
    }

    .wallet-options {
        gap: 20px;
    }

    .wallet-card {
        width: 150px;
        padding: 15px;
    }

    .wallet-card img {
        width: 60px;
        margin-bottom: 10px;
    }

    .wallet-card span {
        font-size: 1rem;
    }

    .legal-note {
        font-size: 0.8rem;
    }

    .wallet-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Add specific styles for each wallet-card */
.wallet-card.metamask {
    background-color: #e6f0e6;
}

.wallet-card.coinbase {
    background-color: #f0f7f0;
}

.wallet-card.walletconnect {
    background-color: #d4e2d4;
}

.wallet-card.ledger {
    background-color: #c8d6c8;
}
