.nav-brand {
    color: var(--copper);
    text-decoration: none !important;
    border-bottom: none !important;
    transition: opacity 0.3s;
}

    .nav-brand:hover {
        opacity: 0.8;
    }

.hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
}

    .hero .label {
        margin-bottom: 0;
    }

    .hero h1 {
        margin-top: 0;
    }

.btn-contact,
.btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    text-decoration: none !important;
    border-bottom: none !important;
    border-radius: 4px;
    font-weight: bold;
    margin: 10px 5px;
    transition: all 0.3s;
    line-height: 1.2;
}

.btn-donate {
    background: var(--copper);
    color: #000;
}

    .btn-donate:hover {
        background: #d4a574;
    }

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: transparent;
    color: var(--copper);
    border: 2px solid var(--copper) !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: bold;
    margin: 10px 5px;
    transition: all 0.3s;
    line-height: 1;
}

    .btn-contact:hover {
        background: rgba(184, 115, 51, 0.1);
    }

.support-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--iron);
    padding: 30px;
    border-radius: 4px;
    margin: 20px 0;
}

    .support-card.highlight {
        border-color: var(--copper);
        background: rgba(184, 115, 51, 0.05);
    }

    .support-card.crypto {
        border-color: var(--phosphor);
        background: rgba(0, 255, 65, 0.02);
    }

.crypto-address {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 15px 0;
    border: 1px solid var(--iron);
}

.progress-container {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border: 1px solid var(--phosphor);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .progress-label span {
        font-size: 0.9rem;
        color: var(--steel);
    }

.progress-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--phosphor);
}

.progress-bar {
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--copper), var(--phosphor));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-target {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--steel);
}

.architect-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--copper);
    padding: 25px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

    .architect-card.taken {
        border-color: var(--phosphor);
        background: rgba(0, 255, 65, 0.05);
    }

    .architect-card.available {
        border-color: var(--copper);
        background: rgba(184, 115, 51, 0.1);
        cursor: pointer;
    }

        .architect-card.available:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(184, 115, 51, 0.3);
        }

.architect-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--copper);
    margin-bottom: 10px;
}

.architect-card.taken .architect-number {
    color: var(--phosphor);
}

.architect-status {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.architect-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--steel);
}

.architect-card.taken .architect-name {
    color: var(--phosphor);
}

.btn-donate {
    display: inline-block;
    padding: 15px 30px;
    background: var(--copper);
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 10px 5px;
}

    .btn-donate:hover {
        background: #d4a574;
    }

.btn-contact {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: var(--copper);
    border: 2px solid var(--copper);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin: 10px 5px;
}

    .btn-contact:hover {
        background: rgba(184, 115, 51, 0.1);
    }

.quote-box {
    background: rgba(184, 115, 51, 0.1);
    border-left: 4px solid var(--copper);
    padding: 25px;
    margin: 30px 0;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--steel);
    margin-bottom: 10px;
}
