.build-wrap {
    min-height: calc(100vh - 120px);
    padding: 60px 20px;
    background: linear-gradient(180deg, #062a2a 0%, #052324 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-card {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #eaf5ff;
}

.build-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    flex-wrap: wrap;
}

.build-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.build-sub {
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

.actions {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s ease;
}

.btn-primary {
    background: #22c55e;
    color: #fff;
}

.btn-primary:hover {
    background: #16a34a;
}